diff --git a/utbot-python-types/build.gradle.kts b/utbot-python-types/build.gradle.kts index 67bf926986..400bbe01eb 100644 --- a/utbot-python-types/build.gradle.kts +++ b/utbot-python-types/build.gradle.kts @@ -1,9 +1,9 @@ val kotlinLoggingVersion: String? by rootProject dependencies { - implementation("com.squareup.moshi:moshi:1.11.0") - implementation("com.squareup.moshi:moshi-kotlin:1.11.0") - implementation("com.squareup.moshi:moshi-adapters:1.11.0") + implementation("com.squareup.moshi:moshi:1.14.0") + implementation("com.squareup.moshi:moshi-kotlin:1.14.0") + implementation("com.squareup.moshi:moshi-adapters:1.14.0") implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) } @@ -72,6 +72,29 @@ if (pythonInterpreter != null && pypiToken != null) { } } +val uninstallMypyRunner = + if (pythonInterpreter != null) { + tasks.register("uninstallMypyRunner") { + group = "python" + commandLine( + pythonInterpreter, + "-m", + "pip", + "uninstall", + "utbot_mypy_runner" + ) + commandLine( + pythonInterpreter, + "-m", + "pip", + "cache", + "purge" + ) + } + } else { + null + } + val installMypyRunner = if (pythonInterpreter != null) { tasks.register("installUtbotMypyRunner") { @@ -96,6 +119,7 @@ val jsonDir = File(project.projectDir, "src/test/resources") fun getParamsForSample(sampleName: String): List = listOf( + sampleName, File(samplesDir, "$sampleName.py").canonicalPath, sampleName, buildDir.canonicalPath, @@ -110,12 +134,12 @@ val samplesInfo = listOf( ) if (pythonInterpreter != null) { - val subtasks = samplesInfo.mapIndexed { index, params -> - tasks.register("regenerateJsonForTests_$index") { + val subtasks = samplesInfo.map { params -> + tasks.register("regenerateJsonForTests_${params.first()}") { dependsOn(installMypyRunner!!) group = "python_subtasks" classpath = sourceSets.test.get().runtimeClasspath - args = listOf(pythonInterpreter) + params + args = listOf(pythonInterpreter) + params.drop(1) mainClass.set("org.utbot.python.newtyping.samples.GenerateMypyInfoBuildKt") } } diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt index e8c0f92cdb..4c52b31cf5 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyAnnotations.kt @@ -1,8 +1,8 @@ package org.utbot.python.newtyping.mypy -import com.squareup.moshi.adapters.PolymorphicJsonAdapterFactory import org.utbot.python.newtyping.* import org.utbot.python.newtyping.general.* +import org.utbot.python.utils.CustomPolymorphicJsonAdapterFactory class MypyAnnotation( val nodeId: String, @@ -11,14 +11,24 @@ class MypyAnnotation( var initialized = false @Transient lateinit var storage: MypyInfoBuild val node: MypyAnnotationNode - get() = storage.nodeStorage[nodeId]!! + get() { + val result = storage.nodeStorage[nodeId] + require(result != null) { + "Required node is absent in storage: $nodeId" + } + return result + } val asUtBotType: UtType get() { - assert(initialized) + require(initialized) val origin = storage.getUtBotTypeOfNode(node) + if (origin.pythonDescription() is PythonAnyTypeDescription) + return origin if (args != null) { - assert(origin.parameters.size == args.size) - assert(origin.parameters.all { it is TypeParameter }) + require(origin.parameters.size == args.size) { + "Bad arguments on ${origin.pythonTypeRepresentation()}. Expected ${origin.parameters.size} parameters but got ${args.size}" + } + require(origin.parameters.all { it is TypeParameter }) val argTypes = args.map { it.asUtBotType } return DefaultSubstitutionProvider.substitute( origin, @@ -47,7 +57,10 @@ sealed class CompositeAnnotationNode( fun getInitData(self: CompositeTypeCreator.Original): CompositeTypeCreator.InitializationData { storage.nodeToUtBotType[this] = self (typeVars zip self.parameters).forEach { (node, typeParam) -> - val typeVar = node.node as TypeVarNode + val typeVar = node.node as? TypeVarNode + require(typeVar != null) { + "Did not construct type variable" + } storage.nodeToUtBotType[typeVar] = typeParam typeParam.meta = PythonTypeVarDescription(Name(emptyList(), typeVar.varName), typeVar.variance, typeVar.kind) typeParam.constraints = typeVar.constraints @@ -70,7 +83,7 @@ class ConcreteAnnotation( val isAbstract: Boolean ): CompositeAnnotationNode(module, simpleName, members, typeVars, bases) { override fun initializeType(): UtType { - assert(storage.nodeToUtBotType[this] == null) + require(storage.nodeToUtBotType[this] == null) return createPythonConcreteCompositeType( Name(module.split('.'), simpleName), typeVars.size, @@ -117,7 +130,10 @@ class FunctionNode( ) { self -> storage.nodeToUtBotType[this] = self (typeVars zip self.parameters).forEach { (nodeId, typeParam) -> - val typeVar = storage.nodeStorage[nodeId] as TypeVarNode + val typeVar = storage.nodeStorage[nodeId] as? TypeVarNode + require(typeVar != null) { + "Did not construct type variable" + } storage.nodeToUtBotType[typeVar] = typeParam typeParam.meta = PythonTypeVarDescription(Name(emptyList(), typeVar.varName), typeVar.variance, typeVar.kind) typeParam.constraints = typeVar.constraints @@ -140,9 +156,16 @@ class TypeVarNode( ): MypyAnnotationNode() { override val children: List get() = super.children + values + (upperBound?.let { listOf(it) } ?: emptyList()) - override fun initializeType() = - error("Initialization of TypeVar must be done in defining class or function." + - " TypeVar name: $varName, def_id: $def") + override fun initializeType(): UtType { + /*error( + "Initialization of TypeVar must be done in defining class or function." + + " TypeVar name: $varName, def_id: $def" + )*/ + // this a rare and bad case: + // https://github.com/sqlalchemy/sqlalchemy/blob/rel_2_0_20/lib/sqlalchemy/sql/sqltypes.py#L2091C5-L2091C23 + storage.nodeStorage[def]!!.initializeType() + return storage.nodeToUtBotType[this] ?: error("Error while initializing TypeVar name: $varName, def_id: $def") + } val constraints: Set by lazy { val upperBoundConstraint: Set = upperBound?.let { setOf(TypeParameterConstraint(upperBoundRelation, it.asUtBotType)) } ?: emptySet() @@ -236,28 +259,22 @@ enum class AnnotationType { Unknown } -val annotationAdapter: PolymorphicJsonAdapterFactory = - PolymorphicJsonAdapterFactory.of(MypyAnnotationNode::class.java, "type") - .withSubtype(ConcreteAnnotation::class.java, AnnotationType.Concrete.name) - .withSubtype(Protocol::class.java, AnnotationType.Protocol.name) - .withSubtype(TypeVarNode::class.java, AnnotationType.TypeVar.name) - .withSubtype(OverloadedFunction::class.java, AnnotationType.Overloaded.name) - .withSubtype(FunctionNode::class.java, AnnotationType.Function.name) - .withSubtype(PythonAny::class.java, AnnotationType.Any.name) - //.withSubtype(PythonLiteral::class.java, AnnotationType.Literal.name) - .withSubtype(PythonUnion::class.java, AnnotationType.Union.name) - .withSubtype(PythonTuple::class.java, AnnotationType.Tuple.name) - .withSubtype(PythonNoneType::class.java, AnnotationType.NoneType.name) - .withSubtype(TypeAliasNode::class.java, AnnotationType.TypeAlias.name) - .withSubtype(UnknownAnnotationNode::class.java, AnnotationType.Unknown.name) - -object MypyAnnotations { - - data class MypyReportLine( - val line: Int, - val type: String, - val message: String, - val file: String +val annotationAdapter = CustomPolymorphicJsonAdapterFactory( + MypyAnnotationNode::class.java, + contentLabel = "content", + keyLabel = "type", + mapOf( + AnnotationType.Concrete.name to ConcreteAnnotation::class.java, + AnnotationType.Protocol.name to Protocol::class.java, + AnnotationType.TypeVar.name to TypeVarNode::class.java, + AnnotationType.Overloaded.name to OverloadedFunction::class.java, + AnnotationType.Function.name to FunctionNode::class.java, + AnnotationType.Any.name to PythonAny::class.java, + // .withSubtype(PythonLiteral::class.java, AnnotationType.Literal.name) + AnnotationType.Union.name to PythonUnion::class.java, + AnnotationType.Tuple.name to PythonTuple::class.java, + AnnotationType.NoneType.name to PythonNoneType::class.java, + AnnotationType.TypeAlias.name to TypeAliasNode::class.java, + AnnotationType.Unknown.name to UnknownAnnotationNode::class.java ) - -} \ No newline at end of file +) \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt index 5159346f56..db29856b39 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyBuild.kt @@ -33,7 +33,7 @@ class ExpressionTypeFromMypy( class MypyInfoBuild( val nodeStorage: Map, val definitions: Map>, - val types: Map>, + val exprTypes: Map>, val names: Map> ) { @Transient lateinit var buildRoot: MypyBuildDirectory @@ -77,7 +77,7 @@ class MypyInfoBuild( fillArgNames(it.value) } } - types.values.flatten().forEach { + exprTypes.values.flatten().forEach { initAnnotation(it.type) } nodeStorage.values.forEach { node -> diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt index 6451729007..16d810b5fd 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/MypyDefinitions.kt @@ -1,9 +1,9 @@ package org.utbot.python.newtyping.mypy -import com.squareup.moshi.adapters.PolymorphicJsonAdapterFactory import org.utbot.python.newtyping.* import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.UtType +import org.utbot.python.utils.CustomPolymorphicJsonAdapterFactory sealed class MypyDefinition(val type: MypyAnnotation) { fun getUtBotType(): UtType = type.asUtBotType @@ -69,9 +69,14 @@ enum class MypyDefinitionLabel { OverloadedFuncDef } -val definitionAdapter: PolymorphicJsonAdapterFactory = - PolymorphicJsonAdapterFactory.of(MypyDefinition::class.java, "kind") - .withSubtype(Variable::class.java, MypyDefinitionLabel.Variable.name) - .withSubtype(ClassDef::class.java, MypyDefinitionLabel.ClassDef.name) - .withSubtype(FuncDef::class.java, MypyDefinitionLabel.FuncDef.name) - .withSubtype(OverloadedFuncDef::class.java, MypyDefinitionLabel.OverloadedFuncDef.name) \ No newline at end of file +val definitionAdapter = CustomPolymorphicJsonAdapterFactory( + MypyDefinition::class.java, + contentLabel = "content", + keyLabel = "kind", + mapOf( + MypyDefinitionLabel.Variable.name to Variable::class.java, + MypyDefinitionLabel.ClassDef.name to ClassDef::class.java, + MypyDefinitionLabel.FuncDef.name to FuncDef::class.java, + MypyDefinitionLabel.OverloadedFuncDef.name to OverloadedFuncDef::class.java + ) +) \ 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 5be986f02b..4491154bd1 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 @@ -76,9 +76,10 @@ fun buildMypyInfo( val mypyExitStatus = if (mypyBuildDir.fileForMypyExitStatus.exists()) mypyBuildDir.fileForMypyExitStatus.readText() else null if (result.exitValue != 0 || mypyExitStatus != "0") error("Something went wrong in initial mypy run. " + - "\nPython stderr ${result.stderr}" + - "\nMypy stderr: $stderr" + - "\nMypy stdout: $stdout") + "\nPython stdout:\n${result.stdout}" + + "\nPython stderr:\n${result.stderr}" + + "\nMypy stderr:\n$stderr" + + "\nMypy stdout:\n$stdout") } fun readMypyAnnotationStorageAndInitialErrors( diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt new file mode 100644 index 0000000000..7b9138c015 --- /dev/null +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/utils/CustomJsonAdapter.kt @@ -0,0 +1,57 @@ +package org.utbot.python.utils + +import com.squareup.moshi.* +import com.squareup.moshi.JsonAdapter.Factory +import java.lang.reflect.Type + +class CustomPolymorphicJsonAdapterFactory( + private val baseType: Type, + contentLabel: String, + keyLabel: String, + private val elementAdapters: Map +): Factory { + private val contentOption = JsonReader.Options.of(contentLabel) + private val keyLabelOption = JsonReader.Options.of(keyLabel) + private val labels = elementAdapters.keys.toList() + private val labelOptions = JsonReader.Options.of(*labels.toTypedArray()) + + class CustomPolymorphicJsonAdapter( + private val contentOption: JsonReader.Options, + private val keyLabelOption: JsonReader.Options, + private val adapters: List>, + private val labelOptions: JsonReader.Options + ): JsonAdapter() { + override fun fromJson(reader: JsonReader): Any? { + reader.beginObject() + + val index = reader.selectName(keyLabelOption) + if (index == -1) + return null + + val labelIndex = reader.selectString(labelOptions) + if (labelIndex == -1) + return null + + val contentIndex = reader.selectName(contentOption) + if (contentIndex == -1) + return null + + val result = adapters[labelIndex].fromJson(reader) + reader.endObject() + + return result + } + + override fun toJson(writer: JsonWriter, value: Any?) { + error("Writing with this Json adapter is not supported") + } + } + + override fun create(type: Type, annotations: MutableSet, moshi: Moshi): JsonAdapter<*>? { + if (Types.getRawType(type) != baseType || annotations.isNotEmpty()) { + return null + } + val adapters: List> = labels.map { moshi.adapter(elementAdapters[it]!!) } + return CustomPolymorphicJsonAdapter(contentOption, keyLabelOption, adapters, labelOptions) + } +} \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore b/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore new file mode 100644 index 0000000000..8af07748b9 --- /dev/null +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/.gitignore @@ -0,0 +1,3 @@ +mypy_config.ini +out.json +.vscode/ \ 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 0d910d7695..f46aa4f534 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.11" +version = "0.2.15" description = "" authors = ["Ekaterina Tochilina "] readme = "README.md" @@ -8,7 +8,7 @@ packages = [{include = "utbot_mypy_runner"}] [tool.poetry.dependencies] python = "^3.8" -mypy = "1.0.0" +mypy = "1.5.1" [build-system] diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py index e17d19432f..2fbe311f05 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/__main__.py @@ -51,4 +51,4 @@ print("Extracted annotations and wrote to", args.annotations_out) else: print("For some reason BuildResult is None") - exit(11) + exit(11) \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py index d1db55a4e5..21d045f74b 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/expression_traverser.py @@ -1,19 +1,26 @@ import typing as tp +import copy from mypy.nodes import * from mypy.traverser import * import mypy.types +import utbot_mypy_runner.nodes as my_nodes + class MyTraverserVisitor(TraverserVisitor): - def __init__(self, types, processor: tp.Callable[[int, int, int, int, mypy.types.Type], None]): + def __init__(self, types, processor: tp.Callable[[int, int, int, int, mypy.types.Type, Any], None], definitions: tp.Dict[str, Any], annotation_node_dict: tp.Dict[str, Any], meta: my_nodes.Meta): self.types = types self.processor = processor + self.meta: tp.Optional[my_nodes.Meta] = meta + self.depth = 0 + self.definitions = definitions + self.annotation_node_dict = annotation_node_dict def process_expression(self, o: Expression) -> None: - if o in self.types.keys() and not isinstance(self.types[o], mypy.types.AnyType) \ + if self.meta is not None and o in self.types.keys() and not isinstance(self.types[o], mypy.types.AnyType) \ and o.end_line is not None and o.end_column is not None and o.line >= 0: - self.processor(o.line, o.column, o.end_line, o.end_column, self.types[o]) + self.processor(o.line, o.column, o.end_line, o.end_column, self.types[o], self.meta) def visit_name_expr(self, o: NameExpr) -> None: self.process_expression(o) @@ -23,6 +30,49 @@ def visit_member_expr(self, o: MemberExpr) -> None: self.process_expression(o) super().visit_member_expr(o) + def visit_func(self, o: FuncItem) -> None: + old_meta = self.meta + definition: tp.Optional[my_nodes.Definition] = None + + containing_class: tp.Optional[my_nodes.AnnotationNode] = None + if old_meta is not None and old_meta.containing_class is not None: + containing_class = self.annotation_node_dict[old_meta.containing_class] + + if containing_class is not None and isinstance(containing_class, my_nodes.CompositeAnnotationNode): + definition = next((x for x in containing_class.members if isinstance(x, my_nodes.FuncDef) and x.name == o.name), None) + + elif self.depth == 0 and o.name in self.definitions.keys(): + definition = self.definitions[o.name] + + if definition is not None and old_meta is not None: + self.meta = copy.deepcopy(old_meta) + self.meta.fullname_to_node_id[""] = definition.type.node_id + else: + self.meta = None + + self.depth += 1 + #print("META after func:", self.meta) + #print("old meta:", self.meta) + #print("name:", o.name) + super().visit_func(o) + self.depth -= 1 + self.meta = old_meta + + def visit_class_def(self, o: ClassDef) -> None: + old_meta = self.meta + self.meta = copy.copy(old_meta) + + if self.meta is not None and o.name in self.definitions.keys(): + self.meta.containing_class = self.definitions[o.name].type.node_id + else: + self.meta = None + + self.depth += 1 + super().visit_class_def(o) + self.depth -= 1 + self.meta = old_meta + + """ def visit_yield_expr(self, o: YieldExpr) -> None: self.process_expression(o) 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 80ca3ef33f..5bf3b57aaa 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 @@ -33,13 +33,18 @@ def get_output_json(annotations: tp.Dict[str, tp.Dict[str, Definition]], names_dict: tp.Dict[str, tp.List[utbot_mypy_runner.names.Name]], indent: tp.Optional[int]): node_storage_key = 'nodeStorage' - types_key = 'types' + types_key = 'exprTypes' definitions_key = 'definitions' names_key = 'names' result: tp.Dict[str, tp.Any] = {node_storage_key: {}, types_key: {}} for key in annotation_node_dict: - result[node_storage_key][str(key)] = annotation_node_dict[key].encode() + try: + encoded = annotation_node_dict[key].encode() + except: + # Partial AnnotationNode (probably because of NoTypeVarBindingException) + continue + result[node_storage_key][str(key)] = encoded result[definitions_key] = {} for module in annotations.keys(): @@ -81,20 +86,27 @@ def get_result_from_mypy_build(build_result: mypy_main.build.BuildResult, source only_types = mypy_file.path not in source_paths - definition = get_definition_from_symbol_node(symbol_table_node, Meta(module), only_types) + try: + definition = get_definition_from_symbol_node(symbol_table_node, Meta(module), 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 + if definition is not None: annotation_dict[module][name] = definition + def processor(line, col, end_line, end_col, type_, meta): + expression_types[module_for_types].append( + ExpressionType(*get_borders(line, col, end_line, end_col, content), line, get_annotation(type_, meta))) + expression_types: tp.Dict[str, tp.List[ExpressionType]] = defaultdict(list) if module_for_types is not None: mypy_file = build_result.files[module_for_types] with open(mypy_file.path, "r") as file: content = file.readlines() - processor = lambda line, col, end_line, end_col, type_: \ - expression_types[module_for_types].append( # TODO: proper Meta - ExpressionType(*get_borders(line, col, end_line, end_col, content), line, get_annotation(type_, Meta(module_for_types))) - ) - traverser = expression_traverser.MyTraverserVisitor(build_result.types, processor) + meta = Meta(module_for_types) + traverser = expression_traverser.MyTraverserVisitor(build_result.types, processor, annotation_dict[module_for_types], annotation_node_dict, meta) traverser.visit_mypy_file(build_result.files[module_for_types]) return get_output_json(annotation_dict, expression_types, names_dict, indent) diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py index 886f3969f4..2b2aedec68 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/mypy_main.py @@ -5,9 +5,10 @@ from io import StringIO from typing import List, Tuple, TextIO, Callable, Optional, cast + """ Copy with some changes of function 'main' from here: -https://github.com/python/mypy/blob/v1.0.0/mypy/main.py +https://github.com/python/mypy/blob/v1.5.1/mypy/main.py """ def new_main( stdout: TextIO, @@ -16,6 +17,7 @@ def new_main( clean_exit: bool = False ) -> Optional[build.BuildResult]: """Main entry point to the type checker. + Args: args: Custom command-line arguments. If not given, sys.argv[1:] will be used. @@ -60,6 +62,11 @@ def new_main( options, ) + # CHANGE + # if options.install_types and not sources: + # install_types(formatter, options, non_interactive=options.non_interactive) + # return + res, messages, blockers = run_build(sources, options, fscache, t0, stdout, stderr) if options.non_interactive: @@ -137,7 +144,8 @@ def run(args: List[str]) -> Tuple[str, str, int, Optional[build.BuildResult]]: if build_result is None: print("BuildResult is None") else: - print(build_result.files['utbot_mypy_runner.nodes'].names['CompositeAnnotationNode'].node.names["module_key"].node.is_initialized_in_class) + pass + #print(build_result.files['utbot_mypy_runner.nodes'].names['CompositeAnnotationNode'].node.names["module_key"].node.is_initialized_in_class) #print(build_result.files['builtins'].names['str'].node.names["count"].node.arguments[2].initializer) #print(build_result.files['dijkstra'].names['Dijkstra'].node.names['Node'].node.module_name) #print(build_result.files['numpy'].names['ndarray'].module_public) 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 caf238765b..5530d4979f 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 @@ -7,9 +7,11 @@ import mypy.types +added_keys: tp.List[str] = [] annotation_node_dict: tp.Dict[str, "AnnotationNode"] = {} type_vars_of_node: tp.Dict[str, tp.List[str]] = defaultdict(list) any_type_instance = mypy.types.AnyType(mypy.types.TypeOfAny.unannotated) +global_fullname_to_node_id: tp.Dict[str, str] = {} if sys.version_info >= (3, 10): @@ -27,7 +29,8 @@ def __init__(self, node_id, args: tp.Optional[tp.List['Annotation']] = None): self.args = args def encode(self) -> tp.Dict[str, EncodedInfo]: - result: tp.Dict[str, EncodedInfo] = {self.node_id_key: str(self.node_id)} + result: tp.Dict[str, EncodedInfo] = { + self.node_id_key: str(self.node_id)} if self.args is not None: result[self.args_key] = [x.encode() for x in self.args] return result @@ -46,18 +49,33 @@ def wrapper(self) -> tp.Dict[str, EncodedInfo]: return decorator -class AnnotationNode: - type_key = 'type' +class Encodable: + kind_key: str + content_key: str + kind_value: str + + def encode_outer(self, subobject: EncodedInfo) -> tp.Dict[str, EncodedInfo]: + return {self.kind_key: self.kind_value, self.content_key: subobject} + + def encode_inner(self) -> tp.Dict[str, EncodedInfo]: + return dict() + + def encode(self): + inner = self.encode_inner() + return self.encode_outer(inner) + + +class AnnotationNode(Encodable): + kind_key = 'type' + content_key = 'content' def __init__(self, annotation_type, id_, meta: 'Meta'): - self.type = annotation_type + self.kind_value = annotation_type self.id_ = id_ annotation_node_dict[id_] = self + added_keys.append(id_) self.meta = copy.deepcopy(meta) - def encode(self) -> tp.Dict[str, EncodedInfo]: - return {self.type_key: self.type} - def __eq__(self, other): return self.id_ == other.id_ @@ -65,16 +83,15 @@ def __hash__(self): return hash(self.id_) -class Definition: +class Definition(Encodable): kind_key = 'kind' + content_key = 'content' def __init__(self, kind: str, meta: 'Meta'): - self.kind = kind + self.type: Annotation + self.kind_value = kind self.meta = copy.deepcopy(meta) - def encode(self) -> tp.Dict[str, EncodedInfo]: - return {self.kind_key: self.kind} - class Variable(Definition): kind = 'Variable' @@ -92,13 +109,18 @@ def __init__(self, var: mypy.nodes.Var, meta: 'Meta'): self.is_self: bool = var.is_self self.is_initialized_in_class: bool = var.is_initialized_in_class self.type: Annotation - if var.type is None or self.meta.is_arg: + try: + if var.type is None or self.meta.is_arg: + self.type = get_annotation(any_type_instance, self.meta) + else: + self.type = get_annotation(var.type, self.meta) + + except NoTypeVarBindingException: self.type = get_annotation(any_type_instance, self.meta) - else: - self.type = get_annotation(var.type, self.meta) + - @encode_extension(Definition.encode) - def encode(self) -> tp.Dict[str, EncodedInfo]: + @encode_extension(Definition.encode_inner) + def encode_inner(self) -> tp.Dict[str, EncodedInfo]: return { self.name_key: self.name, self.is_property_key: self.is_property, @@ -117,8 +139,8 @@ def __init__(self, type_info: mypy.nodes.TypeInfo, meta: 'Meta'): super().__init__(self.kind, meta) self.type: Annotation = get_annotation(mypy.types.Instance(type_info, []), self.meta) - @encode_extension(Definition.encode) - def encode(self): + @encode_extension(Definition.encode_inner) + def encode_inner(self): return {self.type_key: self.type.encode()} @@ -148,8 +170,8 @@ def __init__(self, func_def: mypy.nodes.FuncDef, meta: 'Meta'): self.args.append(defn) self.meta.is_arg = False - @encode_extension(Definition.encode) - def encode(self): + @encode_extension(Definition.encode_inner) + def encode_inner(self): return { self.args_key: [x.encode() for x in self.args], self.type_key: self.type.encode(), @@ -171,17 +193,17 @@ def __init__(self, func_def: mypy.nodes.OverloadedFuncDef, meta: 'Meta'): self.type = get_annotation(any_type_instance, self.meta) else: self.type = get_annotation(func_def.type, self.meta) - + self.items: tp.List[Definition] = [] for x in func_def.items: cur = get_definition_from_node(x, self.meta) assert cur is not None self.items.append(cur) - + self.name: str = func_def.name - @encode_extension(Definition.encode) - def encode(self): + @encode_extension(Definition.encode_inner) + def encode_inner(self): return { self.type_key: self.type.encode(), self.items_key: [x.encode() for x in self.items], @@ -221,8 +243,8 @@ def __init__(self, type_var: mypy.types.TypeVarType, id_: str, meta: 'Meta'): else: self.variance = self.invariant - @encode_extension(AnnotationNode.encode) - def encode(self): + @encode_extension(AnnotationNode.encode_inner) + def encode_inner(self): return { self.var_name_key: self.name, self.values_key: [x.encode() for x in self.values], @@ -272,14 +294,17 @@ def __init__(self, id_: str, meta: 'Meta', type: tp.Union[mypy.types.CallableTyp first_arg = [Annotation(self.meta.containing_class)] elif len(type.arguments): first_arg = [get_annotation(any_type_instance, meta=self.meta)] - - self.arg_types = first_arg + [get_annotation(any_type_instance, meta=self.meta) for _ in type.arguments[1:]] - self.return_type = get_annotation(any_type_instance, meta=self.meta) + + self.arg_types = first_arg + \ + [get_annotation(any_type_instance, meta=self.meta) + for _ in type.arguments[1:]] + self.return_type = get_annotation( + any_type_instance, meta=self.meta) self.arg_kinds = [self._get_arg_kind(x) for x in type.arg_kinds] self.arg_names = type.arg_names else: assert False, "Not reachable" - + def _get_arg_kind(self, kind): if kind == mypy.nodes.ARG_POS: return self.arg_pos @@ -296,8 +321,8 @@ def _get_arg_kind(self, kind): else: assert False, "Not reachable" - @encode_extension(AnnotationNode.encode) - def encode(self): + @encode_extension(AnnotationNode.encode_inner) + def encode_inner(self): return { self.type_vars_key: self.type_vars, self.arg_types_key: [x.encode() for x in self.arg_types], @@ -314,11 +339,23 @@ class CompositeAnnotationNode(AnnotationNode): type_vars_key = 'typeVars' bases_key = 'bases' + @staticmethod + def recordable(symbol_node: mypy.nodes.TypeInfo) -> bool: + type_vars = symbol_node.defn.type_vars + return all(isinstance(x, mypy.types.TypeVarType) for x in type_vars) + def __init__(self, annotation_type: str, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): + assert self.recordable(symbol_node) super().__init__(annotation_type, id_, meta) self.meta.fullname_to_node_id[symbol_node._fullname] = id_ self.module: str = symbol_node.module_name self.simple_name: str = symbol_node._fullname[len(self.module)+1:] + global_fullname_to_node_id[symbol_node._fullname] = id_ + + self.raw_type_vars: tp.Sequence[mypy.types.Type] = symbol_node.defn.type_vars + self.type_vars: tp.List[Annotation] = [ + get_annotation(x, self.meta) for x in self.raw_type_vars + ] self.meta.containing_class = id_ self.members: tp.List[Definition] = [] @@ -329,17 +366,12 @@ def __init__(self, annotation_type: str, symbol_node: mypy.nodes.TypeInfo, id_, definition = get_definition_from_node(inner_node, self.meta) if definition is not None: self.members.append(definition) - - self.meta.containing_class = None - self.raw_type_vars: tp.Sequence[mypy.types.Type] = symbol_node.defn.type_vars - self.type_vars: tp.List[Annotation] = [ - get_annotation(x, self.meta) for x in self.raw_type_vars - ] - self.bases: tp.List[Annotation] = [get_annotation(x, self.meta) for x in symbol_node.bases] + self.bases: tp.List[Annotation] = [ + get_annotation(x, self.meta) for x in symbol_node.bases] - @encode_extension(AnnotationNode.encode) - def encode(self): + @encode_extension(AnnotationNode.encode_inner) + def encode_inner(self): return { self.module_key: self.module, self.simple_name_key: self.simple_name, @@ -359,8 +391,8 @@ def __init__(self, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): super().__init__(self.annotation_type, symbol_node, id_, meta) self.is_abstract: bool = symbol_node.is_abstract - @encode_extension(CompositeAnnotationNode.encode) - def encode(self): + @encode_extension(CompositeAnnotationNode.encode_inner) + def encode_inner(self): return {self.is_abstract_key: self.is_abstract} @@ -374,8 +406,8 @@ def __init__(self, symbol_node: mypy.nodes.TypeInfo, id_, meta: 'Meta'): super().__init__(self.annotation_type, symbol_node, id_, meta) self.member_names: tp.List[str] = symbol_node.protocol_members - @encode_extension(CompositeAnnotationNode.encode) - def encode(self): + @encode_extension(CompositeAnnotationNode.encode_inner) + def encode_inner(self): return {self.member_names_key: self.member_names} @@ -388,8 +420,8 @@ def __init__(self, annotation_type: str, mypy_type, id_, namespace: 'Meta'): get_annotation(x, self.meta) for x in mypy_type.items ] - @encode_extension(AnnotationNode.encode) - def encode(self): + @encode_extension(AnnotationNode.encode_inner) + def encode_inner(self): return {self.items_key: [x.encode() for x in self.items]} @@ -398,12 +430,12 @@ class TypeAliasNode(AnnotationNode): target_key = 'target' - def __init__(self, alias: mypy.nodes.TypeAlias, id_: str, meta: 'Meta'): + def __init__(self, alias: mypy.nodes.TypeAlias, id_: str, meta: 'Meta'): super().__init__(self.annotation_type, id_, meta) self.target: Annotation = get_annotation(alias.target, meta) - @encode_extension(AnnotationNode.encode) - def encode(self): + @encode_extension(AnnotationNode.encode_inner) + def encode_inner(self): return {self.target_key: self.target.encode()} @@ -415,40 +447,58 @@ def __init__(self, module_name: str, is_arg: bool = False): self.containing_class = None -def get_annotation_node(mypy_type: mypy.types.Type, meta: Meta) -> AnnotationNode: +class NoTypeVarBindingException(Exception): + def __init__(self, namespace: str, keys): + self.namespace = namespace + self.keys = keys + + def __repr__(self): + return f"NoTypeVarBindingException({self.namespace}, {self.keys})" + +def get_annotation_node(mypy_type: mypy.types.Type, meta: Meta) -> AnnotationNode: if isinstance(mypy_type, mypy.types.Instance): id_ = str(id(mypy_type.type)) + elif isinstance(mypy_type, mypy.types.TypeVarType): - if mypy_type.id.namespace not in meta.fullname_to_node_id.keys(): - id_ = '0' - mypy_type = mypy.types.Type() - else: + if mypy_type.id.namespace in meta.fullname_to_node_id.keys(): node = meta.fullname_to_node_id[mypy_type.id.namespace] - id_ = '.' + str(mypy_type.id.raw_id) + '.' + node + + elif mypy_type.id.namespace in global_fullname_to_node_id.keys(): + node = global_fullname_to_node_id[mypy_type.id.namespace] + + else: + # this might happen, for example, if __init__ has its own type variables + raise NoTypeVarBindingException(mypy_type.id.namespace, meta.fullname_to_node_id.keys()) + + id_ = '.' + str(mypy_type.id.raw_id) + '.' + node + elif isinstance(mypy_type, mypy.types.AnyType): id_ = 'A' + elif isinstance(mypy_type, mypy.types.NoneType): id_ = 'N' + else: id_ = str(id(mypy_type)) if id_ in annotation_node_dict.keys(): return annotation_node_dict[id_] - result: AnnotationNode + result: tp.Optional[AnnotationNode] = None - if isinstance(mypy_type, mypy.types.Instance): + if isinstance(mypy_type, mypy.types.Instance) and CompositeAnnotationNode.recordable(mypy_type.type): if mypy_type.type.is_protocol: result = ProtocolAnnotationNode(mypy_type.type, id_, meta) else: result = ConcreteAnnotationNode(mypy_type.type, id_, meta) + elif isinstance(mypy_type, mypy.types.CallableType): result = FunctionNode(id_, meta, mypy_type) elif isinstance(mypy_type, mypy.types.Overloaded): # several signatures for one function result = AnnotationNodeWithItems("Overloaded", mypy_type, id_, meta) - + elif isinstance(mypy_type, mypy.types.TypeVarType): result = TypeVarNode(mypy_type, id_, meta) @@ -468,11 +518,13 @@ def get_annotation_node(mypy_type: mypy.types.Type, meta: Meta) -> AnnotationNod mypy_type.alias is not None and len(mypy_type.args) == 0: result = TypeAliasNode(mypy_type.alias, id_, meta) - else: + # TODO: consider LiteralType + + if result is None: id_ = '0' result = AnnotationNode("Unknown", id_, meta) - annotation_node_dict[id_] = result + assert id_ in annotation_node_dict.keys() return result @@ -489,8 +541,6 @@ def get_annotation(mypy_type: mypy.types.Type, meta: Meta) -> Annotation: else: return Annotation(cur_node.id_, children) - # TODO: consider LiteralType - else: return Annotation(cur_node.id_) @@ -514,9 +564,9 @@ def get_definition_from_symbol_node( table_node: mypy.nodes.SymbolTableNode, meta: Meta, only_types: bool = False -)-> tp.Optional[Definition]: +) -> tp.Optional[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) \ No newline at end of file + return get_definition_from_node(table_node.node, meta, only_types) 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 f8112ebd44..797eef9607 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.11 \ No newline at end of file +0.2.15 \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt index bf314a2e41..25aad494a7 100644 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt +++ b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/MypyBuildKtTest.kt @@ -136,7 +136,7 @@ internal class MypyBuildKtTest { @Test fun testTypeAlias() { - val isinstance = storageBoruvka.types["boruvka"]!!.find { it.startOffset == 3701L }!!.type.asUtBotType + val isinstance = storageBoruvka.exprTypes["boruvka"]!!.find { it.startOffset == 3701L }!!.type.asUtBotType val func = isinstance as FunctionType val classInfo = func.arguments[1] assertTrue(classInfo.pythonDescription() is PythonTypeAliasDescription) diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt new file mode 100644 index 0000000000..e9428efe77 --- /dev/null +++ b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/mypy/ParseMypyBuild.kt @@ -0,0 +1,12 @@ +package org.utbot.python.newtyping.mypy + +import java.io.File + +fun main() { + val started = System.currentTimeMillis() + val filename = "/home/tochilinak/Documents/projects/utbot/UTBotJava/utbot-python-types/src/main/python/utbot_mypy_runner/out.json" + val text = File(filename).readText() + println("Read text in ${System.currentTimeMillis() - started} ms") + readMypyInfoBuildWithoutRoot(text) + println("Finished in ${System.currentTimeMillis() - started} ms") +} \ No newline at end of file diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt index 830b4d4c2d..05347b3650 100644 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt +++ b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/samples/GenerateMypyInfoBuild.kt @@ -12,7 +12,7 @@ fun main(args: Array) { val jsonName = args[4] val path = source.parent val mypyDir = MypyBuildDirectory(buildDir, setOf(path)) - buildMypyInfo(pythonPath, listOf(source.canonicalPath), listOf(module), mypyDir, module) + buildMypyInfo(pythonPath, listOf(source.canonicalPath), listOf(module), mypyDir, moduleForTypes = module, indent = null) val jsonText = mypyDir.fileForAnnotationStorage.readText() val output = File(jsonName) output.writeText(jsonText) diff --git a/utbot-python-types/src/test/resources/annotation_tests.json b/utbot-python-types/src/test/resources/annotation_tests.json index 1c44403ff3..5ec97b2cab 100644 --- a/utbot-python-types/src/test/resources/annotation_tests.json +++ b/utbot-python-types/src/test/resources/annotation_tests.json @@ -1 +1 @@ -{"nodeStorage": {"139706038880624": {"type": "Concrete", "module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013669568"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094122624"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094123072"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094123520"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094123968"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094124416"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094256192"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094256640"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094257536"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094257984"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094258432"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094258880"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094259328"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094259776"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094260224"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094260672"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094261120"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094261568"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094262016"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094262464"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094262912"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094263360"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094263808"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094264256"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094264704"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094265152"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094265600"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094266048"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094266496"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094266944"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094267392"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094267840"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094268288"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094268736"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094269184"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094269632"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094270080"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094270528"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094270976"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094271424"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094271872"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089144384"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089144832"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089145280"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089145728"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089146176"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089146624"}, "name": "zfill"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013669680"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089147968"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089148416"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089148864"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089149312"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089149760"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089150208"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089150656"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089151104"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089151552"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089152000"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089152448"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089152896"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089153344"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089153792"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089154240"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": false}, "139706013669568": {"type": "Overloaded", "items": [{"nodeId": "139706094121728"}, {"nodeId": "139706018778688"}]}, "139706094121728": {"type": "Function", "typeVars": [".-1.139706094121728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706094121728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}, "0": {"type": "Unknown"}, "139706131780928": {"type": "Concrete", "module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031064336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018396672"}, "items": [{"kind": "Variable", "name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963965664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__class__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106406592"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106407040"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106407488"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106407936"}, "name": "__delattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106408384"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106408832"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106409280"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106409728"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106410176"}, "name": "__hash__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106410624"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106411072"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106411520"}, "name": "__sizeof__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106411968"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106412416"}, "name": "__reduce_ex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106774016"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106774464"}, "name": "__init_subclass__"}], "typeVars": [], "bases": [], "isAbstract": false}, "139706031064336": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "N": {"type": "NoneType"}, "139706038882304": {"type": "Concrete", "module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014106896"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084892608"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084893504"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084893952"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084894400"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084894848"}, "name": "items"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014107120"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014107456"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014108240"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084897984"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084898432"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084898880"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084899328"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084899776"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084900224"}, "name": "__reversed__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084982848"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084983296"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084983744"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014108576"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}], "bases": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "isAbstract": false}, "139706014106896": {"type": "Overloaded", "items": [{"nodeId": "139706084889920"}, {"nodeId": "139706084886336"}, {"nodeId": "139706084890816"}, {"nodeId": "139706084890368"}, {"nodeId": "139706084891712"}, {"nodeId": "139706084891264"}, {"nodeId": "139706084892160"}]}, "139706084889920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706038882304": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038882304", "variance": "INVARIANT"}, ".2.139706038882304": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038882304", "variance": "INVARIANT"}, "139706084886336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".2.139706038882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "139706084890816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706030550576": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119373312"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119373760"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.139706030550576"}, {"nodeId": ".2.139706030550576"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__getitem__", "keys"]}, "139706119373312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706030550576"}, {"nodeId": ".2.139706030550576"}]}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706030550576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030550576": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550576", "variance": "INVARIANT"}, ".2.139706030550576": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550576", "variance": "COVARIANT"}, "139706131784960": {"type": "Protocol", "module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009818656"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131784960"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__iter__"]}, "139706009818656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131784960"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131784960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706131784960": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131784960", "variance": "COVARIANT"}, "139706131785296": {"type": "Protocol", "module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009821568"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114773216"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.139706131785296"}], "bases": [{"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131785296"}]}], "protocolMembers": ["__iter__", "__next__"]}, "139706009821568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131785296"}]}], "returnType": {"nodeId": ".1.139706131785296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131785296": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131785296", "variance": "COVARIANT"}, "139706114773216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131785296"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131785296"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "A": {"type": "Any"}, "139706119373760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706030550576"}, {"nodeId": ".2.139706030550576"}]}, {"nodeId": ".1.139706030550576"}], "returnType": {"nodeId": ".2.139706030550576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084890368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".2.139706038882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706084891712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706014107680"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014107680": {"type": "Tuple", "items": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "139706084891264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706014107904"}]}, {"nodeId": ".2.139706038882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706014107904": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706038882304"}]}, "139706084892160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706038881968": {"type": "Concrete", "module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013941008"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089988032"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089988480"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089988928"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089989376"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089989824"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089990272"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089990720"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089991168"}, "name": "remove"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013941120"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089992512"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089992960"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014106336"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014106448"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089995200"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014106672"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706018790784"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084885440"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084885888"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084884992"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084886784"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084887232"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084887680"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084888128"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084888576"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084889024"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084889472"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706038881968"}], "bases": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706038881968"}]}], "isAbstract": false}, "139706013941008": {"type": "Overloaded", "items": [{"nodeId": "139706089987136"}, {"nodeId": "139706089987584"}]}, "139706089987136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706038881968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038881968", "variance": "INVARIANT"}, "139706089987584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089988032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089988480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089988928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089989376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706038881968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706039236448": {"type": "Protocol", "module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009426336"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__index__"]}, "139706009426336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706038878944": {"type": "Concrete", "module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013663408"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102040384"}, "name": "as_integer_ratio"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963955360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963956256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963955136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963954912"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102042624"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102043072"}, "name": "bit_length"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102043520"}, "name": "bit_count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102044864"}, "name": "to_bytes"}, {"kind": "Variable", "name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963954240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102045760"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102046208"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102046656"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102047104"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102047552"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102048000"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102048448"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102048896"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102049344"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102049792"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102050240"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102050688"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102051136"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102051584"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013664528"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093846592"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093847040"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093847488"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093847936"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093848384"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093848832"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093849280"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093849728"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093850176"}, "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093850624"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093851072"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093851520"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093851968"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093852416"}, "name": "__invert__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093852864"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093853312"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093853760"}, "name": "__floor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093854208"}, "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093854656"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093855104"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093855552"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093856000"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093856448"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093856896"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093857344"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093857792"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093858240"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093858688"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093859136"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093859584"}, "name": "__index__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706013663408": {"type": "Overloaded", "items": [{"nodeId": "139706018777792"}, {"nodeId": "139706102039936"}]}, "139706018777792": {"type": "Function", "typeVars": [".-1.139706018777792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013665200"}], "returnType": {"nodeId": ".-1.139706018777792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "139706013665200": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706013665088"}, {"nodeId": "139706039222672"}, {"nodeId": "139706039236448"}, {"nodeId": "139706030549904"}]}, "139706013665088": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706030739232": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706030739120"}]}, "139706039229728": {"type": "Concrete", "module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013670800"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089156032"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089156480"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089156928"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089157376"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089157824"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089158272"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089159168"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089159616"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089291840"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089292288"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089292736"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089293184"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089293632"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089294080"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089294528"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089294976"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089295424"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089295872"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089296320"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089296768"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089297216"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089297664"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089298112"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089298560"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089299008"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089299456"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089299904"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089300352"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089300800"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089301248"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089301696"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089302144"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089302592"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089303040"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089303488"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089303936"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089304384"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089304832"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089305280"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089305728"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705964231392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705964230944"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089307072"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089307520"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013674272"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089440192"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089440640"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089441088"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089441536"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089441984"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089442432"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089442880"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089443328"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089443776"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089444224"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089444672"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089445120"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "139706039227712"}], "isAbstract": false}, "139706013670800": {"type": "Overloaded", "items": [{"nodeId": "139706018779136"}, {"nodeId": "139706089155136"}, {"nodeId": "139706089155584"}]}, "139706018779136": {"type": "Function", "typeVars": [".-1.139706018779136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013675504"}], "returnType": {"nodeId": ".-1.139706018779136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706013675504": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706039236448"}]}, {"nodeId": "139706039236448"}, {"nodeId": "139706039223680"}, {"nodeId": "139706013675392"}]}, "139706039223680": {"type": "Protocol", "module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009742784"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__bytes__"]}, "139706009742784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039223680"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013675392": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, ".-1.139706018779136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018779136", "variance": "INVARIANT"}, "139706089155136": {"type": "Function", "typeVars": [".-1.139706089155136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706089155136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}, ".-1.139706089155136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089155136", "variance": "INVARIANT"}, "139706089155584": {"type": "Function", "typeVars": [".-1.139706089155584"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139706089155584"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139706089155584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089155584", "variance": "INVARIANT"}, "139706089156032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089156480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706089156928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013675728"}, {"nodeId": "139706013675840"}, {"nodeId": "139706013675952"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013675728": {"type": "Union", "items": [{"nodeId": "139706013675616"}, {"nodeId": "139706039236448"}]}, "139706013675616": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013675840": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013675952": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089157376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "139706089157824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013676288"}, {"nodeId": "139706013676400"}, {"nodeId": "139706013676512"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013676288": {"type": "Union", "items": [{"nodeId": "139706013676064"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706013676176"}]}]}, "139706013676064": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706038881632": {"type": "Concrete", "module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706018775776"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089814080"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089814528"}, "name": "__contains__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013939552"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089979968"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089980416"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089980864"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089981312"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089981760"}, "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013940224"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089983104"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089983552"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089984000"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089984448"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089984896"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706038881632"}], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706038881632"}]}], "isAbstract": false}, "139706018775776": {"type": "Function", "typeVars": [".-1.139706018775776"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": ".-1.139706018775776"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".1.139706038881632": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038881632", "variance": "COVARIANT"}, ".-1.139706018775776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018775776", "variance": "INVARIANT"}, "139706089814080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089814528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131781264": {"type": "Concrete", "module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706018791008"}, "name": "__new__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013938096"}, "items": [{"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__and__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013938208"}, "items": [{"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__or__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013938992"}, "items": [{"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__xor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013939104"}, "items": [{"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013939216"}, "items": [{"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013939328"}, "items": [{"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089810496"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "139706038878944"}], "isAbstract": false}, "139706018791008": {"type": "Function", "typeVars": [".-1.139706018791008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706018791008"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".-1.139706018791008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018791008", "variance": "INVARIANT"}, "139706013938096": {"type": "Overloaded", "items": [{"nodeId": "139706089805120"}, {"nodeId": "139706089805568"}]}, "139706089805120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089805568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013938208": {"type": "Overloaded", "items": [{"nodeId": "139706089806016"}, {"nodeId": "139706089806464"}]}, "139706089806016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089806464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013938992": {"type": "Overloaded", "items": [{"nodeId": "139706089806912"}, {"nodeId": "139706089807360"}]}, "139706089806912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089807360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013939104": {"type": "Overloaded", "items": [{"nodeId": "139706089807808"}, {"nodeId": "139706089808256"}]}, "139706089807808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089808256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013939216": {"type": "Overloaded", "items": [{"nodeId": "139706089808704"}, {"nodeId": "139706089809152"}]}, "139706089808704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089809152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013939328": {"type": "Overloaded", "items": [{"nodeId": "139706089809600"}, {"nodeId": "139706089810048"}]}, "139706089809600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089810048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089810496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706013939776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013939776": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}]}, "139706013939552": {"type": "Overloaded", "items": [{"nodeId": "139706089814976"}, {"nodeId": "139706089815424"}]}, "139706089814976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706038881632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089815424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706038881296": {"type": "Concrete", "module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959348064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959348960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959349184"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013939440"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089813184"}, "name": "indices"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705959348064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959348960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959349184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013939440": {"type": "Overloaded", "items": [{"nodeId": "139706089812288"}, {"nodeId": "139706089812736"}]}, "139706089812288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089812736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706089813184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881296"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706013940896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013940896": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706089979968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706038881632"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089980416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089980864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089981312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089981760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013940224": {"type": "Overloaded", "items": [{"nodeId": "139706089982208"}, {"nodeId": "139706089982656"}]}, "139706089982208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089982656": {"type": "Function", "typeVars": [".-1.139706089982656"], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": ".-1.139706089982656"}]}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706013941232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706089982656": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089982656", "variance": "INVARIANT"}, "139706013941232": {"type": "Union", "items": [{"nodeId": ".1.139706038881632"}, {"nodeId": ".-1.139706089982656"}]}, "139706089983104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089983552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089984000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089984448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881632", "args": [{"nodeId": ".1.139706038881632"}]}, {"nodeId": "A"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706089984896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706043669120": {"type": "Concrete", "module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005756544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005756992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005757216"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097835296"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097835744"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097837088"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005756544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706038878272": {"type": "Concrete", "module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963960512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963960064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963959840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963959616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963959392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963959168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963958944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963958720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963958496"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018397120"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018706848"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106785664"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106786112"}, "name": "__subclasses__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106786560"}, "name": "mro"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106787008"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106787456"}, "name": "__subclasscheck__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963958272"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106788352"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106788800"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705963960512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963960064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963959840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706043663072", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043663072": {"type": "Concrete", "module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101864864"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101865312"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101865760"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101866208"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101866656"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101867104"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101867552"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101868000"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101868448"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101868896"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101869344"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101869792"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101870240"}, "name": "__ror__"}], "typeVars": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}], "bases": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "isAbstract": false}, "139706101864864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.139706043663072": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043663072", "variance": "INVARIANT"}, ".2.139706043663072": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043663072", "variance": "COVARIANT"}, "139706101865312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, {"nodeId": ".1.139706043663072"}], "returnType": {"nodeId": ".2.139706043663072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706101865760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706101866208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706101866656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706101867104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706101867552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039226032": {"type": "Concrete", "module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115092576"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115093024"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115093472"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115093920"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115094368"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115094816"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115095264"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115095712"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115096160"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115227936"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115228384"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115228832"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.139706039226032"}], "bases": [{"nodeId": "139706039225360"}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039226032"}]}], "isAbstract": false}, "139706115092576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706039226032"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.139706039226032": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039226032", "variance": "COVARIANT"}, "139706131790000": {"type": "Concrete", "module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010104128"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026412064"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115232416"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115232864"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115233312"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115233760"}, "name": "__contains__"}], "typeVars": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}], "bases": [{"nodeId": "139706131788320", "args": [{"nodeId": ".1.139706131790000"}]}], "isAbstract": true}, "139706010104128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}, {"nodeId": ".1.139706131790000"}], "returnType": {"nodeId": ".2.139706131790000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706131790000": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131790000", "variance": "INVARIANT"}, ".2.139706131790000": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131790000", "variance": "COVARIANT"}, "139706026412064": {"type": "Overloaded", "items": [{"nodeId": "139706115231520"}, {"nodeId": "139706115231968"}]}, "139706115231520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}, {"nodeId": ".1.139706131790000"}], "returnType": {"nodeId": "139706026417216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026417216": {"type": "Union", "items": [{"nodeId": ".2.139706131790000"}, {"nodeId": "N"}]}, "139706115231968": {"type": "Function", "typeVars": [".-1.139706115231968"], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}, {"nodeId": ".1.139706131790000"}, {"nodeId": "139706026417328"}], "returnType": {"nodeId": "139706026417440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "139706026417328": {"type": "Union", "items": [{"nodeId": ".2.139706131790000"}, {"nodeId": ".-1.139706115231968"}]}, ".-1.139706115231968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115231968", "variance": "INVARIANT"}, "139706026417440": {"type": "Union", "items": [{"nodeId": ".2.139706131790000"}, {"nodeId": ".-1.139706115231968"}]}, "139706115232416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}], "returnType": {"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039225696": {"type": "Concrete", "module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115087200"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115087648"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115088096"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115088544"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115088992"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115089440"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115089888"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115090336"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115090784"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115091232"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115091680"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115092128"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}], "bases": [{"nodeId": "139706039225360"}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706043699200"}]}], "isAbstract": false}, "139706115087200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.139706039225696": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225696", "variance": "COVARIANT"}, ".2.139706039225696": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225696", "variance": "COVARIANT"}, "139706115087648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026413968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039230400": {"type": "Concrete", "module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014109024"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084985984"}, "name": "add"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084986432"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084986880"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084987328"}, "name": "difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084987776"}, "name": "discard"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084988224"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084988672"}, "name": "intersection_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084989120"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084989568"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084990016"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084990464"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084990912"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084991360"}, "name": "symmetric_difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084991808"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084992256"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084992704"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084993152"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084993600"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084994048"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084984640"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084994944"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084994496"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084995840"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084995392"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084996736"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084996288"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084997632"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084998080"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706084998528"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085146688"}, "name": "__gt__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085147136"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706039230400"}], "bases": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706039230400"}]}], "isAbstract": false}, "139706014109024": {"type": "Overloaded", "items": [{"nodeId": "139706084985088"}, {"nodeId": "139706084985536"}]}, "139706084985088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039230400": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039230400", "variance": "INVARIANT"}, "139706084985536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084985984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": ".1.139706039230400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084986432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706084986880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706084987328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706084987776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": ".1.139706039230400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084988224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706084988672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706084989120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084989568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084990016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084990464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": ".1.139706039230400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084990912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084991360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084991808": {"type": "Function", "typeVars": [".-1.139706084991808"], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706084991808"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706014111152"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.139706084991808": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084991808", "variance": "INVARIANT"}, "139706014111152": {"type": "Union", "items": [{"nodeId": ".1.139706039230400"}, {"nodeId": ".-1.139706084991808"}]}, "139706084992256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706084992704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084993152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084993600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084994048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131789328": {"type": "Concrete", "module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010013696"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114962848"}, "name": "_hash"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114963296"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114963744"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114964192"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114964640"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114965088"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115080480"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115080928"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115081376"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115081824"}, "name": "isdisjoint"}], "typeVars": [{"nodeId": ".1.139706131789328"}], "bases": [{"nodeId": "139706131788320", "args": [{"nodeId": ".1.139706131789328"}]}], "isAbstract": true}, "139706010013696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706131789328": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131789328", "variance": "COVARIANT"}, "139706114962848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706114963296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114963744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114964192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114964640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114965088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115080480": {"type": "Function", "typeVars": [".-1.139706115080480"], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706115080480"}]}], "returnType": {"nodeId": "139706131789328", "args": [{"nodeId": "139706026412848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115080480": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115080480", "variance": "INVARIANT"}, "139706026412848": {"type": "Union", "items": [{"nodeId": ".1.139706131789328"}, {"nodeId": ".-1.139706115080480"}]}, "139706115080928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115081376": {"type": "Function", "typeVars": [".-1.139706115081376"], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706115081376"}]}], "returnType": {"nodeId": "139706131789328", "args": [{"nodeId": "139706026413072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115081376": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115081376", "variance": "INVARIANT"}, "139706026413072": {"type": "Union", "items": [{"nodeId": ".1.139706131789328"}, {"nodeId": ".-1.139706115081376"}]}, "139706115081824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789328"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "139706131788320": {"type": "Protocol", "module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009942080"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131788320"}], "bases": [{"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131788320"}]}, {"nodeId": "139706131787984", "args": [{"nodeId": ".1.139706131788320"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}, "139706009942080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788320", "args": [{"nodeId": ".1.139706131788320"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706131788320": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131788320", "variance": "COVARIANT"}, "139706131787984": {"type": "Protocol", "module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009939392"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131787984"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__contains__"]}, "139706009939392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787984", "args": [{"nodeId": ".1.139706131787984"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706131787984": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131787984", "variance": "COVARIANT"}, "139706084984640": {"type": "Function", "typeVars": [".-1.139706084984640"], "argTypes": [{"nodeId": ".-1.139706084984640"}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": ".-1.139706084984640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084984640": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084984640", "variance": "INVARIANT"}, "139706084994944": {"type": "Function", "typeVars": [".-1.139706084994944"], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706084994944"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706014111264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084994944": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084994944", "variance": "INVARIANT"}, "139706014111264": {"type": "Union", "items": [{"nodeId": ".1.139706039230400"}, {"nodeId": ".-1.139706084994944"}]}, "139706084994496": {"type": "Function", "typeVars": [".-1.139706084994496"], "argTypes": [{"nodeId": ".-1.139706084994496"}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": ".-1.139706084994496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084994496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084994496", "variance": "INVARIANT"}, "139706084995840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706014111376"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706014111376": {"type": "Union", "items": [{"nodeId": ".1.139706039230400"}, {"nodeId": "N"}]}, "139706084995392": {"type": "Function", "typeVars": [".-1.139706084995392"], "argTypes": [{"nodeId": ".-1.139706084995392"}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": ".-1.139706084995392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084995392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084995392", "variance": "INVARIANT"}, "139706084996736": {"type": "Function", "typeVars": [".-1.139706084996736"], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706084996736"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706014111488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084996736": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084996736", "variance": "INVARIANT"}, "139706014111488": {"type": "Union", "items": [{"nodeId": ".1.139706039230400"}, {"nodeId": ".-1.139706084996736"}]}, "139706084996288": {"type": "Function", "typeVars": [".-1.139706084996288"], "argTypes": [{"nodeId": ".-1.139706084996288"}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039230400"}]}], "returnType": {"nodeId": ".-1.139706084996288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084996288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084996288", "variance": "INVARIANT"}, "139706084997632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084998080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084998528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085146688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039230400"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085147136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706131789664": {"type": "Concrete", "module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010015264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010022880"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115083168"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115083616"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115084064"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115084512"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115084960"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115085408"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115085856"}, "name": "__isub__"}], "typeVars": [{"nodeId": ".1.139706131789664"}], "bases": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789664"}]}], "isAbstract": true}, "139706010015264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706131789664"}]}, {"nodeId": ".1.139706131789664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, ".1.139706131789664": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131789664", "variance": "INVARIANT"}, "139706010022880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706131789664"}]}, {"nodeId": ".1.139706131789664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "139706115083168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706131789664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706115083616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706131789664"}]}], "returnType": {"nodeId": ".1.139706131789664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706115084064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789664", "args": [{"nodeId": ".1.139706131789664"}]}, {"nodeId": ".1.139706131789664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "139706115084512": {"type": "Function", "typeVars": [".-1.139706115084512"], "argTypes": [{"nodeId": ".-1.139706115084512"}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789664"}]}], "returnType": {"nodeId": ".-1.139706115084512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115084512": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115084512", "variance": "INVARIANT"}, "139706115084960": {"type": "Function", "typeVars": [".-1.139706115084960"], "argTypes": [{"nodeId": ".-1.139706115084960"}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139706115084960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115084960": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115084960", "variance": "INVARIANT"}, "139706115085408": {"type": "Function", "typeVars": [".-1.139706115085408"], "argTypes": [{"nodeId": ".-1.139706115085408"}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706131789664"}]}], "returnType": {"nodeId": ".-1.139706115085408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115085408": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115085408", "variance": "INVARIANT"}, "139706115085856": {"type": "Function", "typeVars": [".-1.139706115085856"], "argTypes": [{"nodeId": ".-1.139706115085856"}, {"nodeId": "139706131789328", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139706115085856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115085856": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115085856", "variance": "INVARIANT"}, "139706026413968": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115088096": {"type": "Function", "typeVars": [".-1.139706115088096"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115088096"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".-1.139706115088096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115088096": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115088096", "variance": "INVARIANT"}, "139706115088544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115088992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706026414192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706026414192": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115089440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706026414416"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706026414416": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115089888": {"type": "Function", "typeVars": [".-1.139706115089888"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115089888"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026414752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115089888": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115089888", "variance": "INVARIANT"}, "139706026414752": {"type": "Union", "items": [{"nodeId": "139706026414640"}, {"nodeId": ".-1.139706115089888"}]}, "139706026414640": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115090336": {"type": "Function", "typeVars": [".-1.139706115090336"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115090336"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026415088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115090336": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115090336", "variance": "INVARIANT"}, "139706026415088": {"type": "Union", "items": [{"nodeId": "139706026414976"}, {"nodeId": ".-1.139706115090336"}]}, "139706026414976": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115090784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026415424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706026415424": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115091232": {"type": "Function", "typeVars": [".-1.139706115091232"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115091232"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".-1.139706115091232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115091232": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115091232", "variance": "INVARIANT"}, "139706115091680": {"type": "Function", "typeVars": [".-1.139706115091680"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115091680"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026415760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115091680": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115091680", "variance": "INVARIANT"}, "139706026415760": {"type": "Union", "items": [{"nodeId": "139706026415648"}, {"nodeId": ".-1.139706115091680"}]}, "139706026415648": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115092128": {"type": "Function", "typeVars": [".-1.139706115092128"], "argTypes": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115092128"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026416096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115092128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115092128", "variance": "INVARIANT"}, "139706026416096": {"type": "Union", "items": [{"nodeId": "139706026415984"}, {"nodeId": ".-1.139706115092128"}]}, "139706026415984": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706039225360": {"type": "Concrete", "module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115086304"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115086752"}, "name": "__len__"}], "typeVars": [], "bases": [{"nodeId": "139706039224352"}], "isAbstract": false}, "139706115086304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225360"}, {"nodeId": "139706131790000", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "139706115086752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039225360"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706039224352": {"type": "Protocol", "module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009816640"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__len__"]}, "139706009816640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039224352"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706043699200": {"type": "Tuple", "items": [{"nodeId": ".1.139706039225696"}, {"nodeId": ".2.139706039225696"}]}, "139706115232864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}], "returnType": {"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706131790000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706115233312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}], "returnType": {"nodeId": "139706039226368", "args": [{"nodeId": ".2.139706131790000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039226368": {"type": "Concrete", "module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115229280"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115229728"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115230176"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115230624"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706039226368"}], "bases": [{"nodeId": "139706039225360"}, {"nodeId": "139706131788320", "args": [{"nodeId": ".1.139706039226368"}]}], "isAbstract": false}, "139706115229280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226368", "args": [{"nodeId": ".1.139706039226368"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": "A"}, {"nodeId": ".1.139706039226368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.139706039226368": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039226368", "variance": "COVARIANT"}, "139706115229728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226368", "args": [{"nodeId": ".1.139706039226368"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115230176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226368", "args": [{"nodeId": ".1.139706039226368"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706115230624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226368", "args": [{"nodeId": ".1.139706039226368"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706115233760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790000"}, {"nodeId": ".2.139706131790000"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115093024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039226032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115093472": {"type": "Function", "typeVars": [".-1.139706115093472"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115093472"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".-1.139706115093472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115093472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115093472", "variance": "INVARIANT"}, "139706115093920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115094368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706115094816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706115095264": {"type": "Function", "typeVars": [".-1.139706115095264"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115095264"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026416432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115095264": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115095264", "variance": "INVARIANT"}, "139706026416432": {"type": "Union", "items": [{"nodeId": ".1.139706039226032"}, {"nodeId": ".-1.139706115095264"}]}, "139706115095712": {"type": "Function", "typeVars": [".-1.139706115095712"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115095712"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026416544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115095712": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115095712", "variance": "INVARIANT"}, "139706026416544": {"type": "Union", "items": [{"nodeId": ".1.139706039226032"}, {"nodeId": ".-1.139706115095712"}]}, "139706115096160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".1.139706039226032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115227936": {"type": "Function", "typeVars": [".-1.139706115227936"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115227936"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": ".-1.139706115227936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115227936": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115227936", "variance": "INVARIANT"}, "139706115228384": {"type": "Function", "typeVars": [".-1.139706115228384"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115228384"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026416768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115228384": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115228384", "variance": "INVARIANT"}, "139706026416768": {"type": "Union", "items": [{"nodeId": ".1.139706039226032"}, {"nodeId": ".-1.139706115228384"}]}, "139706115228832": {"type": "Function", "typeVars": [".-1.139706115228832"], "argTypes": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039226032"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706115228832"}]}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706026416880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706115228832": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115228832", "variance": "INVARIANT"}, "139706026416880": {"type": "Union", "items": [{"nodeId": ".1.139706039226032"}, {"nodeId": ".-1.139706115228832"}]}, "139706101868000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706039226368", "args": [{"nodeId": ".2.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706101868448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706101868896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706101869344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706043663072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706101869792": {"type": "Function", "typeVars": [".-1.139706101869792", ".-2.139706101869792"], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706101869792"}, {"nodeId": ".-2.139706101869792"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706026425056"}, {"nodeId": "139706026425168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706101869792": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706101869792", "variance": "INVARIANT"}, ".-2.139706101869792": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706101869792", "variance": "INVARIANT"}, "139706026425056": {"type": "Union", "items": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".-1.139706101869792"}]}, "139706026425168": {"type": "Union", "items": [{"nodeId": ".2.139706043663072"}, {"nodeId": ".-2.139706101869792"}]}, "139706101870240": {"type": "Function", "typeVars": [".-1.139706101870240", ".-2.139706101870240"], "argTypes": [{"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".2.139706043663072"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706101870240"}, {"nodeId": ".-2.139706101870240"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706026425280"}, {"nodeId": "139706026425392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706101870240": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706101870240", "variance": "INVARIANT"}, ".-2.139706101870240": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706101870240", "variance": "INVARIANT"}, "139706026425280": {"type": "Union", "items": [{"nodeId": ".1.139706043663072"}, {"nodeId": ".-1.139706101870240"}]}, "139706026425392": {"type": "Union", "items": [{"nodeId": ".2.139706043663072"}, {"nodeId": ".-2.139706101870240"}]}, "139705963959616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963959392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963959168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963958944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963958720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706018709088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018709088": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705963958496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018397120": {"type": "Overloaded", "items": [{"nodeId": "139706106783872"}, {"nodeId": "139706106784320"}]}, "139706106783872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706106784320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"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"]}, "139706018706848": {"type": "Overloaded", "items": [{"nodeId": "139706106784768"}, {"nodeId": "139706106785216"}]}, "139706106784768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706106785216": {"type": "Function", "typeVars": [".-1.139706106785216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706106785216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}, ".-1.139706106785216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106785216", "variance": "INVARIANT"}, "139706106785664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "139706106786112": {"type": "Function", "typeVars": [".-1.139706106786112"], "argTypes": [{"nodeId": ".-1.139706106786112"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".-1.139706106786112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706106786112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106786112", "variance": "INVARIANT"}, "139706106786560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038878272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106787008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706106787456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705963958272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}, "139706106788352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706043669792": {"type": "Concrete", "module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005759680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097838432"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097838880"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005759680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669792"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097838432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669792"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706097838880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669792"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106788800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706005756992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005757216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097835296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}, {"nodeId": "139706038878272"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}, "139706097835744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706097837088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669120"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131788656": {"type": "Concrete", "module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026410608"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114953888"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114954336"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114954784"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114955232"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114955680"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706131788656"}], "bases": [{"nodeId": "139706131788320", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706131788656"}]}], "isAbstract": true}, "139706026410608": {"type": "Overloaded", "items": [{"nodeId": "139706114952992"}, {"nodeId": "139706114953440"}]}, "139706114952992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706131788656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706131788656": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131788656", "variance": "COVARIANT"}, "139706114953440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114953888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "A"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}, "139706114954336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "139706114954784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114955232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131788656"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706114955680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788656"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131788656"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706131785632": {"type": "Protocol", "module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009823808"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131785632"}], "bases": [{"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131785632"}]}], "protocolMembers": ["__iter__", "__reversed__"]}, "139706009823808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706131785632"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131785632"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706131785632": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131785632", "variance": "COVARIANT"}, "139706013676176": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013676400": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013676512": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089158272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "139706089159168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013676736"}, {"nodeId": "139706013676848"}, {"nodeId": "139706013676960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013676736": {"type": "Union", "items": [{"nodeId": "139706013676624"}, {"nodeId": "139706039236448"}]}, "139706013676624": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013676848": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013676960": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089159616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013677072"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "139706013677072": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}]}, "139706089291840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013677296"}, {"nodeId": "139706013677408"}, {"nodeId": "139706013677520"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013677296": {"type": "Union", "items": [{"nodeId": "139706013677184"}, {"nodeId": "139706039236448"}]}, "139706013677184": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013677408": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013677520": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089292288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089292736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089293184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089293632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089294080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089294528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089294976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089295424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089295872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706013677632"}]}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013677632": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089296320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}, {"nodeId": "139706013677744"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706013677744": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706039230064": {"type": "Concrete", "module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013675280"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089447360"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089447808"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089448256"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089448704"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089449152"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089449600"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089450048"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089450496"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089451392"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089451840"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089452288"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089453184"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089453632"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089454080"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089454528"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089454976"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089553984"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089554432"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089554880"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089555328"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089555776"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089556224"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089556672"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089557120"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089557568"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089558016"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089558464"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089558912"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089559360"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089559808"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089560256"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089560704"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089561152"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089561600"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089562048"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089562496"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089562944"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089563392"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089563840"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089564288"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089564736"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089565184"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089565632"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089566080"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089566528"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089566976"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705959177056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705959175936"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089568320"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089568768"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013928016"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013928800"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089718720"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089719168"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706018789216"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089720064"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089720512"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089720960"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089721408"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089721856"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089722304"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089722752"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089723200"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089723648"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089724096"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089724544"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089724992"}, "name": "__alloc__"}], "typeVars": [], "bases": [{"nodeId": "139706131788992", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706039227712"}], "isAbstract": false}, "139706013675280": {"type": "Overloaded", "items": [{"nodeId": "139706089446016"}, {"nodeId": "139706089446464"}, {"nodeId": "139706089446912"}]}, "139706089446016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089446464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013929024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013929024": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706039236448"}]}, {"nodeId": "139706039236448"}, {"nodeId": "139706013928912"}]}, "139706013928912": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089446912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}, "139706089447360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089447808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089448256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706089448704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013929248"}, {"nodeId": "139706013929360"}, {"nodeId": "139706013929472"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013929248": {"type": "Union", "items": [{"nodeId": "139706013929136"}, {"nodeId": "139706039236448"}]}, "139706013929136": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013929360": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013929472": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089449152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089449600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "139706089450048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013929808"}, {"nodeId": "139706013929920"}, {"nodeId": "139706013930032"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013929808": {"type": "Union", "items": [{"nodeId": "139706013929584"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706013929696"}]}]}, "139706013929584": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013929696": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013929920": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013930032": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089450496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "139706089451392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706039236448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089451840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013930256"}, {"nodeId": "139706013930368"}, {"nodeId": "139706013930480"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013930256": {"type": "Union", "items": [{"nodeId": "139706013930144"}, {"nodeId": "139706039236448"}]}, "139706013930144": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013930368": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013930480": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089452288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013930592"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "139706013930592": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}]}, "139706089453184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013930816"}, {"nodeId": "139706013930928"}, {"nodeId": "139706013931040"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013930816": {"type": "Union", "items": [{"nodeId": "139706013930704"}, {"nodeId": "139706039236448"}]}, "139706013930704": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013930928": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013931040": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089453632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706089454080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089454528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089454976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089553984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089554432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089554880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089555328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089555776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089556224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706013931152"}]}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013931152": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089556672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}, {"nodeId": "139706013931264"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706013931264": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706089557120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089557568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013931488"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013931488": {"type": "Union", "items": [{"nodeId": "139706013931376"}, {"nodeId": "N"}]}, "139706013931376": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089558016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013931600"}], "returnType": {"nodeId": "139706013931824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013931600": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013931824": {"type": "Tuple", "items": [{"nodeId": "139706039230064"}, {"nodeId": "139706039230064"}, {"nodeId": "139706039230064"}]}, "139706089558464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706089558912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089559360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013931936"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013931936": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089559808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013932048"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013932048": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089560256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013932160"}, {"nodeId": "139706013932272"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013932160": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013932272": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089560704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013932496"}, {"nodeId": "139706013932608"}, {"nodeId": "139706013932720"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013932496": {"type": "Union", "items": [{"nodeId": "139706013932384"}, {"nodeId": "139706039236448"}]}, "139706013932384": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013932608": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013932720": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089561152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013932944"}, {"nodeId": "139706013933056"}, {"nodeId": "139706013933168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013932944": {"type": "Union", "items": [{"nodeId": "139706013932832"}, {"nodeId": "139706039236448"}]}, "139706013932832": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013933056": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013933168": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089561600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}, {"nodeId": "139706013933280"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706013933280": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706089562048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013933392"}], "returnType": {"nodeId": "139706013933616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013933392": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013933616": {"type": "Tuple", "items": [{"nodeId": "139706039230064"}, {"nodeId": "139706039230064"}, {"nodeId": "139706039230064"}]}, "139706089562496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013933840"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039230064"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013933840": {"type": "Union", "items": [{"nodeId": "139706013933728"}, {"nodeId": "N"}]}, "139706013933728": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089562944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013934064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013934064": {"type": "Union", "items": [{"nodeId": "139706013933952"}, {"nodeId": "N"}]}, "139706013933952": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089563392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013934288"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039230064"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013934288": {"type": "Union", "items": [{"nodeId": "139706013934176"}, {"nodeId": "N"}]}, "139706013934176": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089563840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039230064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "139706089564288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013934624"}, {"nodeId": "139706013934736"}, {"nodeId": "139706013934848"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013934624": {"type": "Union", "items": [{"nodeId": "139706013934400"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706013934512"}]}]}, "139706013934400": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013934512": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013934736": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013934848": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089564736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013935072"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013935072": {"type": "Union", "items": [{"nodeId": "139706013934960"}, {"nodeId": "N"}]}, "139706013934960": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089565184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089565632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089566080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013935296"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "139706013935296": {"type": "Union", "items": [{"nodeId": "139706013935184"}, {"nodeId": "N"}]}, "139706013935184": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089566528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089566976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959177056": {"type": "Function", "typeVars": [".-1.139705959177056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705959177056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705959177056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959177056", "variance": "INVARIANT"}, "139705959175936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706013935408"}, {"nodeId": "139706013935520"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013935408": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013935520": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089568320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089568768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013928016": {"type": "Overloaded", "items": [{"nodeId": "139706089569216"}, {"nodeId": "139706089569664"}]}, "139706089569216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089569664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013928800": {"type": "Overloaded", "items": [{"nodeId": "139706089717824"}, {"nodeId": "139706089718272"}]}, "139706089717824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706089718272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706038881296"}, {"nodeId": "139706013935856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706013935856": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706039236448"}]}, {"nodeId": "139706039229728"}]}, "139706089718720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013935968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013935968": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706089719168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936080"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936080": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706018789216": {"type": "Function", "typeVars": [".-1.139706018789216"], "argTypes": [{"nodeId": ".-1.139706018789216"}, {"nodeId": "139706013936192"}], "returnType": {"nodeId": ".-1.139706018789216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706018789216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018789216", "variance": "INVARIANT"}, "139706013936192": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089720064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089720512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039230064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089720960": {"type": "Function", "typeVars": [".-1.139706089720960"], "argTypes": [{"nodeId": ".-1.139706089720960"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".-1.139706089720960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706089720960": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089720960", "variance": "INVARIANT"}, "139706089721408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089721856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936528"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936528": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706013936416"}]}, "139706013936416": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089722304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089722752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089723200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936640"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936640": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089723648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936752"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936752": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089724096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936864"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936864": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089724544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}, {"nodeId": "139706013936976"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013936976": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089724992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230064"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131788992": {"type": "Concrete", "module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010011680"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026411056"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026411616"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026411952"}, "items": [{"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114959264"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114959712"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114960160"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114960608"}, "name": "reverse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114961056"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114961504"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114961952"}, "name": "__iadd__"}], "typeVars": [{"nodeId": ".1.139706131788992"}], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": ".1.139706131788992"}]}], "isAbstract": true}, "139706010011680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038878944"}, {"nodeId": ".1.139706131788992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}, ".1.139706131788992": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131788992", "variance": "INVARIANT"}, "139706026411056": {"type": "Overloaded", "items": [{"nodeId": "139706114956576"}, {"nodeId": "139706114957024"}]}, "139706114956576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706131788992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114957024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706026411616": {"type": "Overloaded", "items": [{"nodeId": "139706114957472"}, {"nodeId": "139706114957920"}]}, "139706114957472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038878944"}, {"nodeId": ".1.139706131788992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706114957920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038881296"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131788992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706026411952": {"type": "Overloaded", "items": [{"nodeId": "139706114958368"}, {"nodeId": "139706114958816"}]}, "139706114958368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114958816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706114959264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": ".1.139706131788992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "139706114959712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706114960160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131788992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}, "139706114960608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706114961056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706131788992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}, "139706114961504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706131788992"}]}, {"nodeId": ".1.139706131788992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "139706114961952": {"type": "Function", "typeVars": [".-1.139706114961952"], "argTypes": [{"nodeId": ".-1.139706114961952"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706131788992"}]}], "returnType": {"nodeId": ".-1.139706114961952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706114961952": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706114961952", "variance": "INVARIANT"}, "139706039227712": {"type": "Concrete", "module": "typing", "simpleName": "ByteString", "members": [], "typeVars": [], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": true}, "139706089296768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089297216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013677968"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013677968": {"type": "Union", "items": [{"nodeId": "139706013677856"}, {"nodeId": "N"}]}, "139706013677856": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089297664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013678080"}], "returnType": {"nodeId": "139706013678304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013678080": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013678304": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}]}, "139706089298112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013678416"}, {"nodeId": "139706013678528"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013678416": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013678528": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089298560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013678640"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013678640": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089299008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013678752"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013678752": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089299456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013678976"}, {"nodeId": "139706013679088"}, {"nodeId": "139706013679200"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013678976": {"type": "Union", "items": [{"nodeId": "139706013678864"}, {"nodeId": "139706039236448"}]}, "139706013678864": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013679088": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013679200": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089299904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013679424"}, {"nodeId": "139706013925440"}, {"nodeId": "139706013925552"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013679424": {"type": "Union", "items": [{"nodeId": "139706013679312"}, {"nodeId": "139706039236448"}]}, "139706013679312": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013925440": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013925552": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089300352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}, {"nodeId": "139706013925664"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706013925664": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706089300800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013925776"}], "returnType": {"nodeId": "139706013926000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013925776": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013926000": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}]}, "139706089301248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013926224"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013926224": {"type": "Union", "items": [{"nodeId": "139706013926112"}, {"nodeId": "N"}]}, "139706013926112": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089301696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013926448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013926448": {"type": "Union", "items": [{"nodeId": "139706013926336"}, {"nodeId": "N"}]}, "139706013926336": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089302144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013926672"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013926672": {"type": "Union", "items": [{"nodeId": "139706013926560"}, {"nodeId": "N"}]}, "139706013926560": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089302592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "139706089303040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013927008"}, {"nodeId": "139706013927120"}, {"nodeId": "139706013927232"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013927008": {"type": "Union", "items": [{"nodeId": "139706013926784"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706013926896"}]}]}, "139706013926784": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013926896": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013927120": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013927232": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089303488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013927456"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013927456": {"type": "Union", "items": [{"nodeId": "139706013927344"}, {"nodeId": "N"}]}, "139706013927344": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089303936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089304384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089304832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013927680"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "139706013927680": {"type": "Union", "items": [{"nodeId": "139706013927568"}, {"nodeId": "N"}]}, "139706013927568": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089305280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089305728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705964231392": {"type": "Function", "typeVars": [".-1.139705964231392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705964231392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705964231392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705964231392", "variance": "INVARIANT"}, "139705964230944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706013927792"}, {"nodeId": "139706013927904"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013927792": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013927904": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089307072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089307520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013674272": {"type": "Overloaded", "items": [{"nodeId": "139706089439296"}, {"nodeId": "139706089439744"}]}, "139706089439296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089439744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089440192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013928128"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013928128": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089440640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089441088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089441536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089441984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706013928464"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013928464": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706013928352"}]}, "139706013928352": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089442432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089442880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089443328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089443776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089444224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089444672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089445120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706013928688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013928688": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}]}, "139706030739120": {"type": "TypeAlias", "target": {"nodeId": "139706030739008"}}, "139706030739008": {"type": "Union", "items": [{"nodeId": "139706039230064"}, {"nodeId": "139706038880960"}, {"nodeId": "139706030543856", "args": [{"nodeId": "A"}]}, {"nodeId": "139706039484480"}, {"nodeId": "139706039725280"}, {"nodeId": "139706043675840"}]}, "139706038880960": {"type": "Concrete", "module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959185344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959185792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959186016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959333952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959334176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959334400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959334624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959334848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959335072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959335296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959335520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959335744"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089730816"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089731264"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089731712"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089732160"}, "name": "cast"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013935632"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089733504"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089799744"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089800192"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013935744"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089801536"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089802432"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089802880"}, "name": "toreadonly"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089803328"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089803776"}, "name": "hex"}], "typeVars": [], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705959185344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959185792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959186016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706013937088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013937088": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "N"}]}, "139705959333952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706013937200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013937200": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "N"}]}, "139705959334176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706013937312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013937312": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "N"}]}, "139705959334400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959334624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959334848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706013937424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013937424": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139705959335072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959335296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959335520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959335744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089730816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706013937536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "139706013937536": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089731264": {"type": "Function", "typeVars": [".-1.139706089731264"], "argTypes": [{"nodeId": ".-1.139706089731264"}], "returnType": {"nodeId": ".-1.139706089731264"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706089731264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089731264", "variance": "INVARIANT"}, "139706089731712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706013937648"}, {"nodeId": "139706013937760"}, {"nodeId": "139706013937872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706013937648": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706013937760": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706038886336": {"type": "Concrete", "module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043708160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043705248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080701888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080702336"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080702784"}, "name": "with_traceback"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043708160": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706043705248": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706043703456": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706043667776": {"type": "Concrete", "module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097509408"}, "name": "__init__"}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043512000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005698176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005698624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005698848"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706097509408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667776"}, {"nodeId": "139706026728064"}, {"nodeId": "139706043668112"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}, "139706026728064": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706043668112": {"type": "Concrete", "module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005552512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005750048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005750272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005750496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005750720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005750944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005751168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043508752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097514336"}, "name": "clear"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005552512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706026728176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026728176": {"type": "Union", "items": [{"nodeId": "139706043668112"}, {"nodeId": "N"}]}, "139706005750048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005750272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706043662736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043662736": {"type": "Concrete", "module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005381056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005382400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005381952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005382624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005382848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005383072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005383296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005383520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005383744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005383968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005384192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005384416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005384640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005384864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005385088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005385312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005385984"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101859936"}, "name": "co_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101862176"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101863968"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005381056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005382400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005381952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005382624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005382848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005383072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005383296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005383520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005383744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005383968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005384192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005384416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005384640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005384864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005385088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005385312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005385984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706101859936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706026424832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026424832": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706026424608"}]}, "139706026424608": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706101862176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706039229728"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706039229728"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}], "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]}, "139706101863968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662736"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706039229728"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706043662736"}, "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"]}, "139706005750496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005750720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005750944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706026728624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026728624": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "A"}]}, "139706005751168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043508752": {"type": "Union", "items": [{"nodeId": "139706055603616"}, {"nodeId": "N"}]}, "139706055603616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706097514336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043512000": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706005698176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667776"}], "returnType": {"nodeId": "139706043668112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005698624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667776"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005698848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667776"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706080701888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "139706080702336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038886336"}, {"nodeId": "139706014464960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014464960": {"type": "Union", "items": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706080702784": {"type": "Function", "typeVars": [".-1.139706080702784"], "argTypes": [{"nodeId": ".-1.139706080702784"}, {"nodeId": "139706014465072"}], "returnType": {"nodeId": ".-1.139706080702784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706080702784": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080702784", "variance": "INVARIANT"}, "139706014465072": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706013937872": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706089732160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013937984"}], "returnType": {"nodeId": "139706038880960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}, "139706013937984": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}]}, "139706013935632": {"type": "Overloaded", "items": [{"nodeId": "139706089732608"}, {"nodeId": "139706089733056"}]}, "139706089732608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089733056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038880960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089733504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089799744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089800192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013935744": {"type": "Overloaded", "items": [{"nodeId": "139706089800640"}, {"nodeId": "139706089801088"}]}, "139706089800640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706038881296"}, {"nodeId": "139706013938320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706013938320": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706089801088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706089801536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706013938880"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "139706013938880": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "139706089802432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089802880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "139706038880960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089803328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089803776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880960"}, {"nodeId": "139706013938768"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "139706013938768": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}]}, "139706030543856": {"type": "Concrete", "module": "array", "simpleName": "array", "members": [{"kind": "Variable", "name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705971933920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705971935712"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018384016"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076948832"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076949280"}, "name": "buffer_info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076949728"}, "name": "byteswap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076950176"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076950624"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076951072"}, "name": "frombytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076951520"}, "name": "fromfile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076951968"}, "name": "fromlist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076952416"}, "name": "fromunicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076952864"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076953760"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076954208"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077069600"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077070048"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077070496"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077070944"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077071392"}, "name": "tounicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077072736"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018384128"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018394432"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077074976"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077075424"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077075872"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077076320"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077076768"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077077216"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077077664"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077078112"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077078560"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077079008"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077079456"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077079904"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.139706030543856"}], "bases": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706030543856"}]}], "isAbstract": false}, "139705971933920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706018392864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030543856": {"type": "TypeVar", "varName": "_T", "values": [{"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038880624"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030543856", "variance": "INVARIANT"}, "139706038879280": {"type": "Concrete", "module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706018778464"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093860480"}, "name": "as_integer_ratio"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093860928"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093861376"}, "name": "is_integer"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705964129728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705964129952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705964130176"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094010880"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094011328"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094011776"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094012224"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094012672"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094013120"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094013568"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094014016"}, "name": "__divmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013664976"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094015360"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094015808"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094016256"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094016704"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094017152"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094017600"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094018048"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013669904"}, "items": [{"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094019840"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094020288"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094020736"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094021184"}, "name": "__floor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013668896"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094022528"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094022976"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094023424"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094023872"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094024320"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094024768"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094025216"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094025664"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094026112"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094108736"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094109184"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094109632"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706018778464": {"type": "Function", "typeVars": [".-1.139706018778464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013668336"}], "returnType": {"nodeId": ".-1.139706018778464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "139706013668336": {"type": "Union", "items": [{"nodeId": "139706039223008"}, {"nodeId": "139706039236448"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013668224"}]}, "139706039223008": {"type": "Protocol", "module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009740096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__float__"]}, "139706009740096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039223008"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013668224": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, ".-1.139706018778464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018778464", "variance": "INVARIANT"}, "139706093860480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706013668560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013668560": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706093860928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706093861376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705964129728": {"type": "Function", "typeVars": [".-1.139705964129728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705964129728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705964129728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705964129728", "variance": "INVARIANT"}, "139705964129952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705964130176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094010880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094011328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094011776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094012224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094012672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094013120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094013568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094014016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706013668784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013668784": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139706013664976": {"type": "Overloaded", "items": [{"nodeId": "139706094014464"}, {"nodeId": "139706094014912"}]}, "139706094014464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706094014912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706094015360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094015808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094016256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094016704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094017152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094017600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094018048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706013669232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013669232": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139706013669904": {"type": "Overloaded", "items": [{"nodeId": "139706094018496"}, {"nodeId": "139706094018944"}, {"nodeId": "139706094019392"}]}, "139706094018496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706013669456"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013669456": {"type": "TypeAlias", "target": {"nodeId": "139706030748864"}}, "139706030748864": {"type": "Union", "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"}]}, "139706094018944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706013672704"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013672704": {"type": "TypeAlias", "target": {"nodeId": "139706030751216"}}, "139706030751216": {"type": "Union", "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"}]}, "139706038879616": {"type": "Concrete", "module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706013671920"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705964217728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705964218624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094112768"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094113216"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094113664"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094114112"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094114560"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094115008"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094115456"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094115904"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094116352"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094116800"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094117248"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094117696"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094118144"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094118592"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094119040"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094119488"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094119936"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706013671920": {"type": "Overloaded", "items": [{"nodeId": "139706094110080"}, {"nodeId": "139706094110528"}]}, "139706094110080": {"type": "Function", "typeVars": [".-1.139706094110080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013669792"}, {"nodeId": "139706013670128"}], "returnType": {"nodeId": ".-1.139706094110080"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}, "139706013669792": {"type": "Union", "items": [{"nodeId": "139706038879616"}, {"nodeId": "139706039223344"}, {"nodeId": "139706039223008"}, {"nodeId": "139706039236448"}]}, "139706039223344": {"type": "Protocol", "module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009741440"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__complex__"]}, "139706009741440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039223344"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013670128": {"type": "Union", "items": [{"nodeId": "139706038879616"}, {"nodeId": "139706039223008"}, {"nodeId": "139706039236448"}]}, ".-1.139706094110080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706094110080", "variance": "INVARIANT"}, "139706094110528": {"type": "Function", "typeVars": [".-1.139706094110528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013670240"}], "returnType": {"nodeId": ".-1.139706094110528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}, "139706013670240": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039223344"}, {"nodeId": "139706039223008"}, {"nodeId": "139706039236448"}, {"nodeId": "139706038879616"}]}, ".-1.139706094110528": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706094110528", "variance": "INVARIANT"}, "139705964217728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705964218624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094112768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094113216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094113664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094114112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094114560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706094115008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094115456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094115904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094116352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094116800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706094117248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094117696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094118144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094118592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094119040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094119488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094119936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879616"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094019392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706094019840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706013669344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013669344": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}]}, "139706094020288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094020736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094021184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013668896": {"type": "Overloaded", "items": [{"nodeId": "139706094021632"}, {"nodeId": "139706094022080"}]}, "139706094021632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706094022080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706094022528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094022976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094023424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094023872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094024320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094024768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094025216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094025664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094026112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094108736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094109184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706094109632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018392864": {"type": "TypeAlias", "target": {"nodeId": "139706030588864"}}, "139706030588864": {"type": "Union", "items": [{"nodeId": "139706043698752"}, {"nodeId": "139706051952112"}, {"nodeId": "139706051952000"}]}, "139706043698752": {"type": "TypeAlias", "target": {"nodeId": "139706030588752"}}, "139706030588752": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "139706051952112": {"type": "TypeAlias", "target": {"nodeId": "139706051951552"}}, "139706051951552": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706051952000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "139705971935712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018384016": {"type": "Overloaded", "items": [{"nodeId": "139706023011808"}, {"nodeId": "139706076947040"}, {"nodeId": "139706076947488"}, {"nodeId": "139706076947936"}, {"nodeId": "139706076948384"}]}, "139706023011808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706018393088"}, {"nodeId": "139706018393200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706018393088": {"type": "TypeAlias", "target": {"nodeId": "139706030588752"}}, "139706018393200": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038878944"}]}]}, "139706076947040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": "139706038879280"}]}, {"nodeId": "139706018394096"}, {"nodeId": "139706018392976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706018394096": {"type": "TypeAlias", "target": {"nodeId": "139706051951552"}}, "139706018392976": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038879280"}]}]}, "139706076947488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706018394320"}, {"nodeId": "139706018393984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706018394320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "139706018393984": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}]}, "139706076947936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706076948384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706018393424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706018393424": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706076948832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": ".1.139706030543856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076949280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706018393536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018393536": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706076949728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706076950176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": ".1.139706030543856"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076950624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076951072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706018393648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018393648": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706076951520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030551920", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706030551920": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119376448"}, "name": "read"}], "typeVars": [{"nodeId": ".1.139706030551920"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["read"]}, "139706119376448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030551920", "args": [{"nodeId": ".1.139706030551920"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706030551920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.139706030551920": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030551920", "variance": "COVARIANT"}, "139706076951968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076952416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076952864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": ".1.139706030543856"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706076953760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038878944"}, {"nodeId": ".1.139706030543856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706076954208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706030543856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706077069600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": ".1.139706030543856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706077070048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077070496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030552928", "args": [{"nodeId": "139706039229728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706030552928": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119377792"}, "name": "write"}], "typeVars": [{"nodeId": ".1.139706030552928"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["write"]}, "139706119377792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030552928", "args": [{"nodeId": ".1.139706030552928"}]}, {"nodeId": ".1.139706030552928"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.139706030552928": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030552928", "variance": "CONTRAVARIANT"}, "139706077070944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077071392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077072736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706018384128": {"type": "Overloaded", "items": [{"nodeId": "139706077073184"}, {"nodeId": "139706077073632"}]}, "139706077073184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706030543856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077073632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706018394432": {"type": "Overloaded", "items": [{"nodeId": "139706077074080"}, {"nodeId": "139706077074528"}]}, "139706077074080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706039236448"}, {"nodeId": ".1.139706030543856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706077074528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038881296"}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706077074976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706018394208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706018394208": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706077075424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077075872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077076320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077076768": {"type": "Function", "typeVars": [".-1.139706077076768"], "argTypes": [{"nodeId": ".-1.139706077076768"}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": ".-1.139706077076768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706077076768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706077076768", "variance": "INVARIANT"}, "139706077077216": {"type": "Function", "typeVars": [".-1.139706077077216"], "argTypes": [{"nodeId": ".-1.139706077077216"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706077077216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706077077216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706077077216", "variance": "INVARIANT"}, "139706077077664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077078112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077078560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077079008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077079456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077079904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706030543856", "args": [{"nodeId": ".1.139706030543856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706039484480": {"type": "Concrete", "module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077525184"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077525632"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077526080"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077526976"}, "name": "move"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077527424"}, "name": "read_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077184064"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077184512"}, "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077184960"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077185408"}, "name": "size"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077185856"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077186304"}, "name": "write_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077186752"}, "name": "__len__"}, {"kind": "Variable", "name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077187200"}, "name": "madvise"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077187648"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077188096"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077188544"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077188992"}, "name": "write"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022312896"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077190336"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022443968"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077191680"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077192128"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077192576"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077193024"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706039224352"}], "isAbstract": false}, "139706077525184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706077525632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077526080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}, "139706077526976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}, "139706077527424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077184064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077184512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}, "139706077184960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}, "139706077185408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077185856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077186304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}, "139706077186752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706077187200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}, "139706077187648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706022527936"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "139706022527936": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706077188096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706022528048"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "139706022528048": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706077188544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706022528160"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "139706022528160": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706077188992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706022528272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}, "139706022528272": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706022312896": {"type": "Overloaded", "items": [{"nodeId": "139706077189440"}, {"nodeId": "139706077189888"}]}, "139706077189440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077189888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077190336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706022528496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706022528496": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038881296"}]}, "139706022443968": {"type": "Overloaded", "items": [{"nodeId": "139706077190784"}, {"nodeId": "139706077191232"}]}, "139706077190784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706077191232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706038881296"}, {"nodeId": "139706022528720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706022528720": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706077191680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077192128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706077192576": {"type": "Function", "typeVars": [".-1.139706077192576"], "argTypes": [{"nodeId": ".-1.139706077192576"}], "returnType": {"nodeId": ".-1.139706077192576"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706077192576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706077192576", "variance": "INVARIANT"}, "139706077193024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039484480"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "139706039725280": {"type": "Concrete", "module": "ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "name": "_b_base", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043080080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980319808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980319136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980320704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980436768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980437216"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043080080": {"type": "Union", "items": [{"nodeId": "139706131790000", "args": [{"nodeId": "A"}, {"nodeId": "139706038878944"}]}, {"nodeId": "N"}]}, "139705980319808": {"type": "Function", "typeVars": [".-1.139705980319808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706017816064"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705980319808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "139706017816064": {"type": "TypeAlias", "target": {"nodeId": "139706030739008"}}, ".-1.139705980319808": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705980319808", "variance": "INVARIANT"}, "139705980319136": {"type": "Function", "typeVars": [".-1.139705980319136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706017816176"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705980319136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "139706017816176": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, ".-1.139705980319136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705980319136", "variance": "INVARIANT"}, "139705980320704": {"type": "Function", "typeVars": [".-1.139705980320704"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705980320704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}, ".-1.139705980320704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705980320704", "variance": "INVARIANT"}, "139705980436768": {"type": "Function", "typeVars": [".-1.139705980436768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706017816400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, "139706017816400": {"type": "Union", "items": [{"nodeId": ".-1.139705980436768"}, {"nodeId": "139706039727296"}]}, ".-1.139705980436768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705980436768", "variance": "INVARIANT"}, "139706039727296": {"type": "Concrete", "module": "ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705980437216": {"type": "Function", "typeVars": [".-1.139705980437216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706039724272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705980437216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}, "139706039724272": {"type": "Concrete", "module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039725280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077081024"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077081920"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077082368"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706077081024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039724272"}, {"nodeId": "139706017815616"}, {"nodeId": "139706038878944"}, {"nodeId": "139706017815728"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706017815840"}], "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"]}, "139706017815616": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706017815728": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017815840": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706077081920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039724272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039726624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039726624": {"type": "Concrete", "module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039726288"}], "isAbstract": false}, "139706039726288": {"type": "Concrete", "module": "ctypes", "simpleName": "_FuncPointer", "members": [{"kind": "Variable", "name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031209296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131788656", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706051938000"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017813600"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077368768"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706039725952"}, {"nodeId": "139706039725280"}], "isAbstract": false}, "139706031209296": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "139706052081728"}, {"nodeId": "N"}]}, "139706052081728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706051938000": {"type": "TypeAlias", "target": {"nodeId": "139706055597344"}}, "139706055597344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706068517376"}, {"nodeId": "139706039726288"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706039725280"}]}], "returnType": {"nodeId": "139706039725280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706068517376": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017813600": {"type": "Overloaded", "items": [{"nodeId": "139706077366976"}, {"nodeId": "139706077367424"}, {"nodeId": "139706077367872"}, {"nodeId": "139706077368320"}]}, "139706077366976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039726288"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "address"]}, "139706077367424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039726288"}, {"nodeId": "139706023004192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, "139706023004192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706077367872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039726288"}, {"nodeId": "139706017817072"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706017817184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "func_spec", "paramflags"]}, "139706017817072": {"type": "Tuple", "items": [{"nodeId": "139706017816736"}, {"nodeId": "139706039724272"}]}, "139706017816736": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706017817184": {"type": "TypeAlias", "target": {"nodeId": "139706051945616"}}, "139706051945616": {"type": "Union", "items": [{"nodeId": "139706105965792"}, {"nodeId": "139706051945952"}, {"nodeId": "139706051945728"}]}, "139706105965792": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}]}, "139706051945952": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706051945728": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "139706077368320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039726288"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706017817520"}]}, {"nodeId": "139706031277104", "args": [{"nodeId": "139706030407744"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "vtlb_index", "name", "paramflags", "iid"]}, "139706017817520": {"type": "TypeAlias", "target": {"nodeId": "139706051945616"}}, "139706031277104": {"type": "Concrete", "module": "ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706031277104"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017813712"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017817296"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077379072"}, "name": "__setitem__"}], "typeVars": [{"nodeId": ".1.139706031277104"}], "bases": [{"nodeId": "139706039725952"}, {"nodeId": "139706039725280"}], "isAbstract": false}, ".1.139706031277104": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "139706039725280"}, "def": "139706031277104", "variance": "INVARIANT"}, "139706017813712": {"type": "Overloaded", "items": [{"nodeId": "139706077377280"}, {"nodeId": "139706077377728"}]}, "139706077377280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277104", "args": [{"nodeId": ".1.139706031277104"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077377728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277104", "args": [{"nodeId": ".1.139706031277104"}]}, {"nodeId": ".1.139706031277104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}, "139706017817296": {"type": "Overloaded", "items": [{"nodeId": "139706077378176"}, {"nodeId": "139706077378624"}]}, "139706077378176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277104", "args": [{"nodeId": ".1.139706031277104"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077378624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277104", "args": [{"nodeId": ".1.139706031277104"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077379072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277104", "args": [{"nodeId": ".1.139706031277104"}]}, {"nodeId": "139706038878944"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706039725952": {"type": "Concrete", "module": "ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039725616"}], "isAbstract": false}, "139706039725616": {"type": "Concrete", "module": "ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039725280"}], "isAbstract": false}, "139706030407744": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706039727632": {"type": "Concrete", "module": "ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706039727632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077514432"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.139706039727632"}], "bases": [{"nodeId": "139706039725280"}], "isAbstract": false}, ".1.139706039727632": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039727632", "variance": "INVARIANT"}, "139706077514432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039727632", "args": [{"nodeId": ".1.139706039727632"}]}, {"nodeId": ".1.139706039727632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "139706077368768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039726288"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706077082368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039724272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039726624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139705980437216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705980437216", "variance": "INVARIANT"}, "139706043675840": {"type": "Concrete", "module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077194816"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077195264"}, "name": "raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077195712"}, "name": "release"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706077194816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675840"}, {"nodeId": "139706022054928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}, "139706022054928": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706077195264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675840"}], "returnType": {"nodeId": "139706038880960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077195712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039222672": {"type": "Protocol", "module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009738752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__int__"]}, "139706009738752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039222672"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706030549904": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081033600"}, "name": "__trunc__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__trunc__"]}, "139706081033600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030549904"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706018777792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018777792", "variance": "INVARIANT"}, "139706102039936": {"type": "Function", "typeVars": [".-1.139706102039936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013665312"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".-1.139706102039936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}, "139706013665312": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, ".-1.139706102039936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706102039936", "variance": "INVARIANT"}, "139706102040384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706013665648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013665648": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "0"}]}, "139705963955360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963956256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963955136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963954912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102042624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102043072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102043520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102044864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706039236448"}, {"nodeId": "139706013666208"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}, "139706013666208": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139705963954240": {"type": "Function", "typeVars": [".-1.139705963954240"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013666432"}, {"nodeId": "139706013666768"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": ".-1.139705963954240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}, "139706013666432": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706039236448"}]}, {"nodeId": "139706039223680"}, {"nodeId": "139706013666320"}]}, "139706013666320": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706013666768": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, ".-1.139705963954240": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963954240", "variance": "INVARIANT"}, "139706102045760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102046208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102046656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102047104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102047552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102048000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102048448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706013666992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013666992": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706102048896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102049344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102049792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102050240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102050688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102051136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102051584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706013667216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013667216": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706013664528": {"type": "Overloaded", "items": [{"nodeId": "139706102052032"}, {"nodeId": "139706102052480"}, {"nodeId": "139706102052928"}, {"nodeId": "139706102053376"}, {"nodeId": "139706102053824"}, {"nodeId": "139706102054272"}]}, "139706102052032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102052480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706102052928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706013667888"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013667888": {"type": "TypeAlias", "target": {"nodeId": "139706030748864"}}, "139706102053376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706013670688"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013670688": {"type": "TypeAlias", "target": {"nodeId": "139706030751216"}}, "139706102053824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706102054272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706093846592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706013670576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013670576": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706093847040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093847488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093847936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093848384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093848832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093849280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093849728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093850176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093850624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093851072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093851520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093851968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093852416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093852864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706093853312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706093853760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706093854208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706093854656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706013668112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013668112": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}]}, "139706093855104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093855552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093856000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093856448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093856896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093857344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706093857792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093858240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093858688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706093859136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706093859584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089989824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": ".1.139706038881968"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706089990272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706089990720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}, {"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706089991168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013941120": {"type": "Overloaded", "items": [{"nodeId": "139706018775552"}, {"nodeId": "139706089992064"}]}, "139706018775552": {"type": "Function", "typeVars": [".-1.139706018775552"], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".-1.139706018775552"}]}, {"nodeId": "N"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.139706018775552": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139706051943264"}, "def": "139706018775552", "variance": "INVARIANT"}, "139706051943264": {"type": "Union", "items": [{"nodeId": "139706030545200", "args": [{"nodeId": "A"}]}, {"nodeId": "139706030545536", "args": [{"nodeId": "A"}]}]}, "139706030545200": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081027328"}, "name": "__lt__"}], "typeVars": [{"nodeId": ".1.139706030545200"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__lt__"]}, "139706081027328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030545200", "args": [{"nodeId": ".1.139706030545200"}]}, {"nodeId": ".1.139706030545200"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030545200": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030545200", "variance": "CONTRAVARIANT"}, "139706030545536": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081027776"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.139706030545536"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__gt__"]}, "139706081027776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030545536", "args": [{"nodeId": ".1.139706030545536"}]}, {"nodeId": ".1.139706030545536"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030545536": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030545536", "variance": "CONTRAVARIANT"}, "139706089992064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706014154816"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "139706014154816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "139706014106784"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706014106784": {"type": "TypeAlias", "target": {"nodeId": "139706030591664"}}, "139706030591664": {"type": "Union", "items": [{"nodeId": "139706030545200", "args": [{"nodeId": "A"}]}, {"nodeId": "139706030545536", "args": [{"nodeId": "A"}]}]}, "139706089992512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089992960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706014106336": {"type": "Overloaded", "items": [{"nodeId": "139706089993408"}, {"nodeId": "139706089993856"}]}, "139706089993408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706038881968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089993856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706014106448": {"type": "Overloaded", "items": [{"nodeId": "139706089994304"}, {"nodeId": "139706089994752"}]}, "139706089994304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}, {"nodeId": ".1.139706038881968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706089994752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881296"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706089995200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706014107008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706014107008": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706014106672": {"type": "Overloaded", "items": [{"nodeId": "139706089995648"}, {"nodeId": "139706084884544"}]}, "139706089995648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084884544": {"type": "Function", "typeVars": [".-1.139706084884544"], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".-1.139706084884544"}]}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706014107232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084884544": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084884544", "variance": "INVARIANT"}, "139706014107232": {"type": "Union", "items": [{"nodeId": ".-1.139706084884544"}, {"nodeId": ".1.139706038881968"}]}, "139706018790784": {"type": "Function", "typeVars": [".-1.139706018790784"], "argTypes": [{"nodeId": ".-1.139706018790784"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": ".-1.139706018790784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706018790784": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018790784", "variance": "INVARIANT"}, "139706084885440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084885888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084884992": {"type": "Function", "typeVars": [".-1.139706084884992"], "argTypes": [{"nodeId": ".-1.139706084884992"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".-1.139706084884992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084884992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084884992", "variance": "INVARIANT"}, "139706084886784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084887232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706038881968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084887680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084888128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084888576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084889024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706038881968"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084889472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706084892608": {"type": "Function", "typeVars": [".-1.139706084892608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706084892608"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, ".-1.139706084892608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084892608", "variance": "INVARIANT"}, "139706084893504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706084893952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706039228720", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039228720": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967639040"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706039228720"}, {"nodeId": ".2.139706039228720"}], "bases": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706039228720"}]}], "isAbstract": false}, "139705967639040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228720", "args": [{"nodeId": ".1.139706039228720"}, {"nodeId": ".2.139706039228720"}]}], "returnType": {"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706039228720"}, {"nodeId": ".2.139706039228720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039228720": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039228720", "variance": "COVARIANT"}, ".2.139706039228720": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039228720", "variance": "COVARIANT"}, "139706084894400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706039229056", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039229056": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967538272"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706039229056"}, {"nodeId": ".2.139706039229056"}], "bases": [{"nodeId": "139706039226368", "args": [{"nodeId": ".2.139706039229056"}]}], "isAbstract": false}, "139705967538272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229056", "args": [{"nodeId": ".1.139706039229056"}, {"nodeId": ".2.139706039229056"}]}], "returnType": {"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706039229056"}, {"nodeId": ".2.139706039229056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039229056": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039229056", "variance": "COVARIANT"}, ".2.139706039229056": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039229056", "variance": "COVARIANT"}, "139706084894848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706039229392", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039229392": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705972684640"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706039229392"}, {"nodeId": ".2.139706039229392"}], "bases": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706039229392"}, {"nodeId": ".2.139706039229392"}]}], "isAbstract": false}, "139705972684640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039229392", "args": [{"nodeId": ".1.139706039229392"}, {"nodeId": ".2.139706039229392"}]}], "returnType": {"nodeId": "139706043663072", "args": [{"nodeId": ".1.139706039229392"}, {"nodeId": ".2.139706039229392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039229392": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039229392", "variance": "COVARIANT"}, ".2.139706039229392": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039229392", "variance": "COVARIANT"}, "139706014107120": {"type": "Overloaded", "items": [{"nodeId": "139706084895296"}, {"nodeId": "139706084895744"}]}, "139706084895296": {"type": "Function", "typeVars": [".-1.139706084895296"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706084895296"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": ".-1.139706084895296"}, {"nodeId": "139706014108464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}, ".-1.139706084895296": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084895296", "variance": "INVARIANT"}, "139706014108464": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706084895744": {"type": "Function", "typeVars": [".-1.139706084895744", ".-2.139706084895744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706084895744"}]}, {"nodeId": ".-2.139706084895744"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": ".-1.139706084895744"}, {"nodeId": ".-2.139706084895744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.139706084895744": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084895744", "variance": "INVARIANT"}, ".-2.139706084895744": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084895744", "variance": "INVARIANT"}, "139706014107456": {"type": "Overloaded", "items": [{"nodeId": "139706084896192"}, {"nodeId": "139706084896640"}]}, "139706084896192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}], "returnType": {"nodeId": "139706014108688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014108688": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": "N"}]}, "139706084896640": {"type": "Function", "typeVars": [".-1.139706084896640"], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}, {"nodeId": "139706014108800"}], "returnType": {"nodeId": "139706014108912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706014108800": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-1.139706084896640"}]}, ".-1.139706084896640": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084896640", "variance": "INVARIANT"}, "139706014108912": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-1.139706084896640"}]}, "139706014108240": {"type": "Overloaded", "items": [{"nodeId": "139706084897088"}, {"nodeId": "139706084897536"}]}, "139706084897088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}], "returnType": {"nodeId": ".2.139706038882304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706084897536": {"type": "Function", "typeVars": [".-1.139706084897536"], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}, {"nodeId": "139706014109136"}], "returnType": {"nodeId": "139706014109248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706014109136": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-1.139706084897536"}]}, ".-1.139706084897536": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084897536", "variance": "INVARIANT"}, "139706014109248": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-1.139706084897536"}]}, "139706084897984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084898432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}], "returnType": {"nodeId": ".2.139706038882304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084898880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706084899328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": ".1.139706038882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706084899776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084900224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706038882304"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706084982848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706084983296": {"type": "Function", "typeVars": [".-1.139706084983296", ".-2.139706084983296"], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706084983296"}, {"nodeId": ".-2.139706084983296"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706014109472"}, {"nodeId": "139706014109584"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084983296": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084983296", "variance": "INVARIANT"}, ".-2.139706084983296": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084983296", "variance": "INVARIANT"}, "139706014109472": {"type": "Union", "items": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".-1.139706084983296"}]}, "139706014109584": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-2.139706084983296"}]}, "139706084983744": {"type": "Function", "typeVars": [".-1.139706084983744", ".-2.139706084983744"], "argTypes": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706084983744"}, {"nodeId": ".-2.139706084983744"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706014109696"}, {"nodeId": "139706014109808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084983744": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084983744", "variance": "INVARIANT"}, ".-2.139706084983744": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084983744", "variance": "INVARIANT"}, "139706014109696": {"type": "Union", "items": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".-1.139706084983744"}]}, "139706014109808": {"type": "Union", "items": [{"nodeId": ".2.139706038882304"}, {"nodeId": ".-2.139706084983744"}]}, "139706014108576": {"type": "Overloaded", "items": [{"nodeId": "139706084893056"}, {"nodeId": "139706084984192"}]}, "139706084893056": {"type": "Function", "typeVars": [".-1.139706084893056"], "argTypes": [{"nodeId": ".-1.139706084893056"}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}], "returnType": {"nodeId": ".-1.139706084893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084893056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084893056", "variance": "INVARIANT"}, "139706084984192": {"type": "Function", "typeVars": [".-1.139706084984192"], "argTypes": [{"nodeId": ".-1.139706084984192"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706014110144"}]}], "returnType": {"nodeId": ".-1.139706084984192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706084984192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084984192", "variance": "INVARIANT"}, "139706014110144": {"type": "Tuple", "items": [{"nodeId": ".1.139706038882304"}, {"nodeId": ".2.139706038882304"}]}, "139706131790336": {"type": "Concrete", "module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010105696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010106144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115235104"}, "name": "clear"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026412176"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706115236448"}, "name": "popitem"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026417104"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026417552"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}], "typeVars": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}], "bases": [{"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}], "isAbstract": true}, "139706010105696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.139706131790336": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131790336", "variance": "INVARIANT"}, ".2.139706131790336": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131790336", "variance": "INVARIANT"}, "139706010106144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".1.139706131790336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706115235104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026412176": {"type": "Overloaded", "items": [{"nodeId": "139706115235552"}, {"nodeId": "139706115236000"}]}, "139706115235552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".1.139706131790336"}], "returnType": {"nodeId": ".2.139706131790336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706115236000": {"type": "Function", "typeVars": [".-1.139706115236000"], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".1.139706131790336"}, {"nodeId": "139706026417664"}], "returnType": {"nodeId": "139706026417776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "139706026417664": {"type": "Union", "items": [{"nodeId": ".2.139706131790336"}, {"nodeId": ".-1.139706115236000"}]}, ".-1.139706115236000": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115236000", "variance": "INVARIANT"}, "139706026417776": {"type": "Union", "items": [{"nodeId": ".2.139706131790336"}, {"nodeId": ".-1.139706115236000"}]}, "139706115236448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}], "returnType": {"nodeId": "139706026418000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026418000": {"type": "Tuple", "items": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, "139706026417104": {"type": "Overloaded", "items": [{"nodeId": "139706115236896"}, {"nodeId": "139706115237344"}]}, "139706115236896": {"type": "Function", "typeVars": [".-1.139706115236896"], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": "139706026418224"}]}, {"nodeId": ".1.139706131790336"}], "returnType": {"nodeId": "139706026418336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026418224": {"type": "Union", "items": [{"nodeId": ".-1.139706115236896"}, {"nodeId": "N"}]}, ".-1.139706115236896": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706115236896", "variance": "INVARIANT"}, "139706026418336": {"type": "Union", "items": [{"nodeId": ".-1.139706115236896"}, {"nodeId": "N"}]}, "139706115237344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}], "returnType": {"nodeId": ".2.139706131790336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706026417552": {"type": "Overloaded", "items": [{"nodeId": "139706115237792"}, {"nodeId": "139706115238240"}, {"nodeId": "139706115238688"}]}, "139706115237792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".2.139706131790336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706115238240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706026418672"}]}, {"nodeId": ".2.139706131790336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706026418672": {"type": "Tuple", "items": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, "139706115238688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706131790336"}, {"nodeId": ".2.139706131790336"}]}, {"nodeId": ".2.139706131790336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "139706018396672": {"type": "Overloaded", "items": [{"nodeId": "139706106405696"}]}, "139706106405696": {"type": "Function", "typeVars": [".-1.139706106405696"], "argTypes": [{"nodeId": ".-1.139706106405696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706106405696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106405696", "variance": "INVARIANT"}, "139705963965664": {"type": "Function", "typeVars": [".-1.139705963965664"], "argTypes": [{"nodeId": ".-1.139705963965664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705963965664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963965664", "variance": "INVARIANT"}, "139706106406592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106407040": {"type": "Function", "typeVars": [".-1.139706106407040"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139706106407040"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139706106407040": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106407040", "variance": "INVARIANT"}, "139706106407488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706106407936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106408384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106408832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106409280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706106409728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706106410176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106410624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706106411072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106411520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106411968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706018707296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018707296": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}]}, "139706106412416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706018707520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018707520": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}]}, "139706106774016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106774464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139706094121728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706094121728", "variance": "INVARIANT"}, "139706018778688": {"type": "Function", "typeVars": [".-1.139706018778688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706013670912"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706018778688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}, "139706013670912": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, ".-1.139706018778688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706018778688", "variance": "INVARIANT"}, "139706094122624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094123072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094123520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706094123968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013671024"}, {"nodeId": "139706013671136"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}, "139706013671024": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013671136": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094124416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "139706094256192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013671248"}, {"nodeId": "139706013671360"}, {"nodeId": "139706013671472"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013671248": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}]}, "139706013671360": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013671472": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094256640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "139706094257536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013671584"}, {"nodeId": "139706013671696"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013671584": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013671696": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094257984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706094258432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038879952"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}, "139706038879952": {"type": "Protocol", "module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094120832"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__getitem__"]}, "139706094120832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038879952"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706094258880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013671808"}, {"nodeId": "139706013672144"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013671808": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013672144": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094259328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094259776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094260224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094260672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094261120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094261568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094262016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094262464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094262912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094263360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094263808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094264256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094264704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706094265152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706094265600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706094266048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013672256"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013672256": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706094266496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706013672480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013672480": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706094266944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706094267392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706094267840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706094268288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013672816"}, {"nodeId": "139706013672928"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013672816": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013672928": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094268736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013673040"}, {"nodeId": "139706013673152"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013673040": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013673152": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706094269184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706094269632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706013673376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013673376": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706094270080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013673488"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013673488": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706094270528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013673600"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013673600": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706094270976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013673712"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706013673712": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706094271424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "139706094271872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013673824"}, {"nodeId": "139706013673936"}, {"nodeId": "139706013674048"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706013673824": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}]}, "139706013673936": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706013674048": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "N"}]}, "139706089144384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013674160"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706013674160": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706089144832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089145280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089145728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880288"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706038880288": {"type": "Protocol", "module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706094121280"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__getitem__"]}, "139706094121280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880288"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706013670464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013670464": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706089146176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089146624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706013669680": {"type": "Overloaded", "items": [{"nodeId": "139706089147072"}, {"nodeId": "139706089147520"}]}, "139706089147072": {"type": "Function", "typeVars": [".-1.139706089147072"], "argTypes": [{"nodeId": "139706013674496"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": ".-1.139706089147072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706013674496": {"type": "Union", "items": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": ".-1.139706089147072"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".-1.139706089147072"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706013674384"}, {"nodeId": ".-1.139706089147072"}]}]}, ".-1.139706089147072": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706089147072", "variance": "INVARIANT"}, "139706013674384": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706089147520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706013674608"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": "139706013674720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706013674608": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706013674720": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706089147968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089148416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089148864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089149312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089149760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706013674832"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706013674832": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706089150208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089150656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089151104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089151552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706089152000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089152448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089152896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089153344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089153792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706089154240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706013675168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706013675168": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706031285840": {"type": "Concrete", "module": "annotation_tests", "simpleName": "A", "members": [{"kind": "Variable", "name": "self_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706031285840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706122936032"}, "name": "f"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706135736880"}, "name": "g"}, {"kind": "Variable", "name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285840", "args": [{"nodeId": "139706038878944"}]}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": false}], "typeVars": [{"nodeId": ".1.139706031285840"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, ".1.139706031285840": {"type": "TypeVar", "varName": "XXX", "values": [{"nodeId": "139706031285840", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038878944"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706031285840", "variance": "INVARIANT"}, "139706122936032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285840", "args": [{"nodeId": ".1.139706031285840"}]}, {"nodeId": "A"}, {"nodeId": "139706031285840", "args": [{"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}, "139706135736880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959790432": {"type": "Function", "typeVars": [".-1.139705959790432"], "argTypes": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": ".-1.139705959790432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["collection", "x"]}, ".-1.139705959790432": {"type": "TypeVar", "varName": "XXX", "values": [{"nodeId": "139706031285840", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038878944"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959790432", "variance": "INVARIANT"}, "139706135737424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705963427904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["x", "y", "a", "b", "c"]}, "139705959789312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959091552"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705959091552": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139705959440320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959090320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705959090320": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706031286176": {"type": "Concrete", "module": "annotation_tests", "simpleName": "Color", "members": [{"kind": "Variable", "name": "RED", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "GREEN", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "BLUE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039497920"}], "isAbstract": false}, "139706039497920": {"type": "Concrete", "module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984905312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984905984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047545968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984906208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984906432"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119077952"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119078400"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119078848"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119079296"}, "name": "__reduce_ex__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705984905312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497920"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984905984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706047545968": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}, "139705984906208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, "139705984906432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}, "139706119077952": {"type": "Function", "typeVars": [".-1.139706119077952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706119077952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.139706119077952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119077952", "variance": "INVARIANT"}, "139706119078400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497920"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706119078848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497920"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}, "139706119079296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497920"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}, "139705959441888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959090544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705959090544": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139705959440096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131789328", "args": [{"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705959443008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790000", "args": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139706122940736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139706122939840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784288", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139706131784288": {"type": "Protocol", "module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009745696"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131784288"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__abs__"]}, "139706009745696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784288", "args": [{"nodeId": ".1.139706131784288"}]}], "returnType": {"nodeId": ".1.139706131784288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706131784288": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131784288", "variance": "COVARIANT"}, "139706122941184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959088976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139705959088976": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706039237456": {"type": "Concrete", "module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043696288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043695280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102461632"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009431488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009432608"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043696288": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706043695280": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706102461632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237456"}, {"nodeId": "139706038880624"}, {"nodeId": "139706026233856"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706026233520"}], "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"]}, "139706026233856": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139706038880624"}]}, "139706026233520": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706009431488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237456"}], "returnType": {"nodeId": "139706131782608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131782608": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131783280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118757216"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706131783280": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118758112"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009734944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009735392"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118760352"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118760800"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043703680": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706118758112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783280"}, {"nodeId": "139706038880624"}, {"nodeId": "139706026235200"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}, "139706026235200": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706009734944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783280"}], "returnType": {"nodeId": "139706131782608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009735392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783280"}], "returnType": {"nodeId": "139706131782944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131782944": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131783280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118757664"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706118757664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131782944"}, {"nodeId": "139706131783280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "139706118760352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783280"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131782272": {"type": "Concrete", "module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118753184"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118753632"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118754080"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706118753184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131782272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118753632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131782272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118754080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131782272"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118760800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783280"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118757216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131782608"}, {"nodeId": "139706131783280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "139706009432608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237456"}], "returnType": {"nodeId": "139706131782944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131781936": {"type": "Concrete", "module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043702000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118751392"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118751840"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118752288"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043702000": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706118751392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781936"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}, {"nodeId": "139706026235312"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "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"]}, "139706026235312": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706118751840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781936"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118752288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781936"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131783616": {"type": "Concrete", "module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118761248"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118761696"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118762144"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118762592"}, "name": "__ror__"}, {"kind": "Variable", "name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878272"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706118761248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783616"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}, "139706118761696": {"type": "Function", "typeVars": [".-1.139706118761696"], "argTypes": [{"nodeId": "139706131783616"}, {"nodeId": ".-1.139706118761696"}], "returnType": {"nodeId": ".-1.139706118761696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, ".-1.139706118761696": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118761696", "variance": "INVARIANT"}, "139706118762144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783616"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118762592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783616"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131782272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706131783952": {"type": "Concrete", "module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118764384"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706118764384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131783952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039222336": {"type": "Concrete", "module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039088656"}], "isAbstract": false}, "139706039088656": {"type": "Concrete", "module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093643456"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093643904"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093644352"}, "name": "__subclasscheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093644800"}, "name": "_dump_registry"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093645248"}, "name": "register"}], "typeVars": [], "bases": [{"nodeId": "139706038878272"}], "isAbstract": false}, "139706039230736": {"type": "Concrete", "module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014109920"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085148480"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085148928"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085149376"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085149824"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085150272"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085150720"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085151168"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085151616"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085152064"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085152512"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085152960"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085153408"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085153856"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085154304"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085154752"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085155200"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085155648"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085156096"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085156544"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085156992"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706039230736"}], "bases": [{"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039230736"}]}], "isAbstract": false}, "139706014109920": {"type": "Overloaded", "items": [{"nodeId": "139706084997184"}, {"nodeId": "139706085147584"}]}, "139706084997184": {"type": "Function", "typeVars": [".-1.139706084997184"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139706084997184"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139706084997184": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706084997184", "variance": "INVARIANT"}, "139706085147584": {"type": "Function", "typeVars": [".-1.139706085147584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": ".-1.139706085147584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".1.139706039230736": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039230736", "variance": "COVARIANT"}, ".-1.139706085147584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085147584", "variance": "INVARIANT"}, "139706085148480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706085148928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706085149376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "139706085149824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085150272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085150720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085151168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085151616": {"type": "Function", "typeVars": [".-1.139706085151616"], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085151616"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": "139706014111824"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.139706085151616": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085151616", "variance": "INVARIANT"}, "139706014111824": {"type": "Union", "items": [{"nodeId": ".1.139706039230736"}, {"nodeId": ".-1.139706085151616"}]}, "139706085152064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085152512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085152960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085153408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085153856": {"type": "Function", "typeVars": [".-1.139706085153856"], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706085153856"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": "139706014111936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706085153856": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085153856", "variance": "INVARIANT"}, "139706014111936": {"type": "Union", "items": [{"nodeId": ".1.139706039230736"}, {"nodeId": ".-1.139706085153856"}]}, "139706085154304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".1.139706039230736"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085154752": {"type": "Function", "typeVars": [".-1.139706085154752"], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": ".-1.139706085154752"}]}], "returnType": {"nodeId": "139706039230736", "args": [{"nodeId": "139706014112048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706085154752": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085154752", "variance": "INVARIANT"}, "139706014112048": {"type": "Union", "items": [{"nodeId": ".1.139706039230736"}, {"nodeId": ".-1.139706085154752"}]}, "139706085155200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085155648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085156096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085156544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039230736", "args": [{"nodeId": ".1.139706039230736"}]}, {"nodeId": "139706131789328", "args": [{"nodeId": "139706131780928"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085156992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706093643456": {"type": "Function", "typeVars": [".-1.139706093643456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706093643456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}, ".-1.139706093643456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706093643456", "variance": "INVARIANT"}, "139706093643904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039088656"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}, "139706093644352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039088656"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "139706093644800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039088656"}, {"nodeId": "139706018394992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}, "139706018394992": {"type": "Union", "items": [{"nodeId": "139706030552928", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706093645248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039088656"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "139706039224016": {"type": "Protocol", "module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009744352"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__index__"]}, "139706009744352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039224016"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131784624": {"type": "Protocol", "module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706031320064"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}], "typeVars": [{"nodeId": ".1.139706131784624"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__round__"]}, "139706031320064": {"type": "Overloaded", "items": [{"nodeId": "139706114770528"}, {"nodeId": "139706114770976"}]}, "139706114770528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784624", "args": [{"nodeId": ".1.139706131784624"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131784624": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131784624", "variance": "COVARIANT"}, "139706114770976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784624", "args": [{"nodeId": ".1.139706131784624"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706131784624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706039224688": {"type": "Protocol", "module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009817088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__hash__"]}, "139706009817088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039224688"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131785968": {"type": "Concrete", "module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114774112"}, "name": "__next__"}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009826496"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026244384"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114775904"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114776352"}, "name": "__iter__"}, {"kind": "Variable", "name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009826720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009827168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009827840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009828064"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706131785968"}]}], "isAbstract": true}, "139706114774112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": ".1.139706131785968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131785968": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131785968", "variance": "COVARIANT"}, ".2.139706131785968": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131785968", "variance": "CONTRAVARIANT"}, ".3.139706131785968": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131785968", "variance": "COVARIANT"}, "139706009826496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}, {"nodeId": ".2.139706131785968"}], "returnType": {"nodeId": ".1.139706131785968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026244384": {"type": "Overloaded", "items": [{"nodeId": "139706114775008"}, {"nodeId": "139706114775456"}]}, "139706114775008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}, {"nodeId": "0"}, {"nodeId": "139706026245504"}, {"nodeId": "139706026245616"}], "returnType": {"nodeId": ".1.139706131785968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026245504": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026245616": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706114775456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026245728"}], "returnType": {"nodeId": ".1.139706131785968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026245728": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706114775904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706114776352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706009826720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "139706043662736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009827168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "139706043668112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009827840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009828064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706131785968"}, {"nodeId": ".2.139706131785968"}, {"nodeId": ".3.139706131785968"}]}], "returnType": {"nodeId": "139706026410160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026410160": {"type": "Union", "items": [{"nodeId": "139706131785968", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706131786304": {"type": "Protocol", "module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009828736"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131786304"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__await__"]}, "139706009828736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131786304"}]}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.139706131786304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131786304": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131786304", "variance": "COVARIANT"}, "139706131786640": {"type": "Concrete", "module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009929760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009929984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009930208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009930432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009930656"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026245280"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009930880"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}], "bases": [{"nodeId": "139706131786304", "args": [{"nodeId": ".3.139706131786640"}]}], "isAbstract": true}, "139706009929760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}], "returnType": {"nodeId": "139706026410496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131786640": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131786640", "variance": "COVARIANT"}, ".2.139706131786640": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131786640", "variance": "CONTRAVARIANT"}, ".3.139706131786640": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131786640", "variance": "COVARIANT"}, "139706026410496": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706009929984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}], "returnType": {"nodeId": "139706043662736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009930208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}], "returnType": {"nodeId": "139706043668112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009930432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009930656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}, {"nodeId": ".2.139706131786640"}], "returnType": {"nodeId": ".1.139706131786640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026245280": {"type": "Overloaded", "items": [{"nodeId": "139706114781280"}, {"nodeId": "139706114781728"}]}, "139706114781280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}, {"nodeId": "0"}, {"nodeId": "139706026410720"}, {"nodeId": "139706026410832"}], "returnType": {"nodeId": ".1.139706131786640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026410720": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026410832": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706114781728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026410944"}], "returnType": {"nodeId": ".1.139706131786640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026410944": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706009930880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706131786640"}, {"nodeId": ".2.139706131786640"}, {"nodeId": ".3.139706131786640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039225024": {"type": "Concrete", "module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.139706039225024"}, {"nodeId": ".2.139706039225024"}, {"nodeId": ".3.139706039225024"}, {"nodeId": ".4.139706039225024"}], "bases": [{"nodeId": "139706131786304", "args": [{"nodeId": ".3.139706039225024"}]}, {"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706039225024"}, {"nodeId": ".2.139706039225024"}, {"nodeId": ".3.139706039225024"}]}], "isAbstract": true}, ".1.139706039225024": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225024", "variance": "COVARIANT"}, ".2.139706039225024": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225024", "variance": "CONTRAVARIANT"}, ".3.139706039225024": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225024", "variance": "COVARIANT"}, ".4.139706039225024": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039225024", "variance": "INVARIANT"}, "139706131786976": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009932000"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131786976"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__aiter__"]}, "139706009932000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131786976", "args": [{"nodeId": ".1.139706131786976"}]}], "returnType": {"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706131786976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131786976": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131786976", "variance": "COVARIANT"}, "139706131787312": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009935136"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114783520"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.139706131787312"}], "bases": [{"nodeId": "139706131786976", "args": [{"nodeId": ".1.139706131787312"}]}], "protocolMembers": ["__aiter__", "__anext__"]}, "139706009935136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706131787312"}]}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131787312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131787312": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131787312", "variance": "COVARIANT"}, "139706114783520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706131787312"}]}], "returnType": {"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706131787312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706131787648": {"type": "Concrete", "module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114783968"}, "name": "__anext__"}, {"kind": "Variable", "name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009937376"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026245392"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706114949856"}, "name": "aclose"}, {"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009936928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009938272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009938496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009938720"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}], "bases": [{"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706131787648"}]}], "isAbstract": true}, "139706114783968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131787648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131787648": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131787648", "variance": "COVARIANT"}, ".2.139706131787648": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131787648", "variance": "CONTRAVARIANT"}, "139706009937376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}, {"nodeId": ".2.139706131787648"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131787648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026245392": {"type": "Overloaded", "items": [{"nodeId": "139706114784864"}, {"nodeId": "139706114949408"}]}, "139706114784864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}, {"nodeId": "0"}, {"nodeId": "139706026411168"}, {"nodeId": "139706026411280"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131787648"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026411168": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026411280": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706114949408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026411392"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706131787648"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026411392": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706114949856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009936928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009938272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "139706043662736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009938496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "139706043668112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706009938720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706131787648"}, {"nodeId": ".2.139706131787648"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039226704": {"type": "Concrete", "module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010107264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010206944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010207840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010208512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010209184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010209856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010210528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010211200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010211872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010212544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010213216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010213888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010214560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010215232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010215904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010216576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010217248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010217920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010218592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010219264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010220160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010221280"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706039226704"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226704"}]}], "isAbstract": true}, "139706010107264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039226704": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039226704", "variance": "INVARIANT"}, "139706010206944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010207840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010208512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010209184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010209856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010210528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010211200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706039226704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706010211872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010212544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706039226704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706010213216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039226704"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706010213888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706010214560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010215232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010215904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706026418784"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706026418784": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706010216576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010217248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": ".1.139706039226704"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706010217920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706010218592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": ".1.139706039226704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010219264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039226704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706010220160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}], "returnType": {"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706010221280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706039226704"}]}, {"nodeId": "139706026418896"}, {"nodeId": "139706026419008"}, {"nodeId": "139706026419120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706026418896": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706026419008": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706026419120": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706039227040": {"type": "Concrete", "module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010386720"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039226704", "args": [{"nodeId": "139706039229728"}]}], "isAbstract": true}, "139706010386720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227040"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706039227376": {"type": "Concrete", "module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010388288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010388736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010388960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010389184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010389408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010389632"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039226704", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": true}, "139706010388288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010388736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010388960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "139706026419232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026419232": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706010389184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010389408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010389632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039227376"}], "returnType": {"nodeId": "139706039227376"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706039228048": {"type": "Concrete", "module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026418448"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706010392320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110114976"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110279968"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "139706026418448": {"type": "Overloaded", "items": [{"nodeId": "139706110113632"}, {"nodeId": "139706110114080"}]}, "139706110113632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228048"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706026421696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "139706026421696": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "139706110114080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228048"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "139706010392320": {"type": "Function", "typeVars": [".-1.139706010392320"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139706010392320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.139706010392320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706010392320", "variance": "INVARIANT"}, "139706110114976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228048"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110279968": {"type": "Function", "typeVars": [".-1.139706110279968"], "argTypes": [{"nodeId": ".-1.139706110279968"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110279968"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.139706110279968": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110279968", "variance": "INVARIANT"}, "139706039228384": {"type": "Concrete", "module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110280416"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110280864"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110281312"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110281760"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110282208"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110282656"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110283104"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110283552"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110284000"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110284448"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}], "isAbstract": true}, "139706110280416": {"type": "Function", "typeVars": [".-1.139706110280416"], "argTypes": [{"nodeId": ".-1.139706110280416"}], "returnType": {"nodeId": ".-1.139706110280416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110280416": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110280416", "variance": "INVARIANT"}, "139706110280864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228384"}, {"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "139706110281312": {"type": "Function", "typeVars": [".-1.139706110281312"], "argTypes": [{"nodeId": "139706039228384"}, {"nodeId": "0"}, {"nodeId": ".-1.139706110281312"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.139706110281312": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110281312", "variance": "INVARIANT"}, "139706110281760": {"type": "Function", "typeVars": [".-1.139706110281760"], "argTypes": [{"nodeId": ".-1.139706110281760"}, {"nodeId": ".-1.139706110281760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706110281760": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110281760", "variance": "INVARIANT"}, "139706110282208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228384"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110282656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228384"}], "returnType": {"nodeId": "139706039229392", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110283104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228384"}], "returnType": {"nodeId": "139706039228720", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110283552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039228384"}], "returnType": {"nodeId": "139706039229056", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110284000": {"type": "Function", "typeVars": [".-1.139706110284000"], "argTypes": [{"nodeId": ".-1.139706110284000"}, {"nodeId": ".-1.139706110284000"}], "returnType": {"nodeId": ".-1.139706110284000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110284000": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110284000", "variance": "INVARIANT"}, "139706110284448": {"type": "Function", "typeVars": [".-1.139706110284448"], "argTypes": [{"nodeId": ".-1.139706110284448"}, {"nodeId": ".-1.139706110284448"}], "returnType": {"nodeId": ".-1.139706110284448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110284448": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110284448", "variance": "INVARIANT"}, "139706131790672": {"type": "Concrete", "module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043662736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043512560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043512224"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110284896"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110285792"}, "name": "_evaluate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110286688"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043512560": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706043512224": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706110284896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790672"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}, {"nodeId": "139706026422368"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}, "139706026422368": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706110285792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790672"}, {"nodeId": "139706026422592"}, {"nodeId": "139706026422816"}, {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706026423040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}, "139706026422592": {"type": "Union", "items": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706026422816": {"type": "Union", "items": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706026423040": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706110286688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131790672"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039232752": {"type": "Concrete", "module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017991472"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110293408"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110293856"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110294304"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110294752"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110295200"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110295648"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110292960"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110443808"}, "name": "__copy__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017991584"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110445600"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110446048"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017992256"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}], "bases": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}], "isAbstract": false}, ".1.139706039232752": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039232752", "variance": "INVARIANT"}, ".2.139706039232752": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039232752", "variance": "INVARIANT"}, "139706017991472": {"type": "Overloaded", "items": [{"nodeId": "139706110290272"}, {"nodeId": "139706081414496"}, {"nodeId": "139706110291168"}, {"nodeId": "139706110290720"}, {"nodeId": "139706110292064"}, {"nodeId": "139706110291616"}, {"nodeId": "139706110292512"}]}, "139706110290272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706081414496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "N"}, {"nodeId": ".2.139706039232752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110291168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110290720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": ".2.139706039232752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110292064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706017992480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706017992480": {"type": "Tuple", "items": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, "139706110291616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706017992704"}]}, {"nodeId": ".2.139706039232752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706017992704": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039232752"}]}, "139706110292512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110293408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110293856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": ".1.139706039232752"}], "returnType": {"nodeId": ".2.139706039232752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110294304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706110294752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": ".1.139706039232752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110295200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039232752"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110295648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110292960": {"type": "Function", "typeVars": [".-1.139706110292960"], "argTypes": [{"nodeId": ".-1.139706110292960"}], "returnType": {"nodeId": ".-1.139706110292960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110292960": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110292960", "variance": "INVARIANT"}, "139706110443808": {"type": "Function", "typeVars": [".-1.139706110443808"], "argTypes": [{"nodeId": ".-1.139706110443808"}], "returnType": {"nodeId": ".-1.139706110443808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110443808": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110443808", "variance": "INVARIANT"}, "139706017991584": {"type": "Overloaded", "items": [{"nodeId": "139706110444704"}, {"nodeId": "139706110445152"}]}, "139706110444704": {"type": "Function", "typeVars": [".-1.139706110444704"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706110444704"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039232752", "args": [{"nodeId": ".-1.139706110444704"}, {"nodeId": "139706017993040"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.139706110444704": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110444704", "variance": "INVARIANT"}, "139706017993040": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706110445152": {"type": "Function", "typeVars": [".-1.139706110445152", ".-2.139706110445152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706110445152"}]}, {"nodeId": ".-2.139706110445152"}], "returnType": {"nodeId": "139706039232752", "args": [{"nodeId": ".-1.139706110445152"}, {"nodeId": ".-2.139706110445152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.139706110445152": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110445152", "variance": "INVARIANT"}, ".-2.139706110445152": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110445152", "variance": "INVARIANT"}, "139706110445600": {"type": "Function", "typeVars": [".-1.139706110445600", ".-2.139706110445600"], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706017993152"}], "returnType": {"nodeId": "139706039232752", "args": [{"nodeId": "139706017993264"}, {"nodeId": "139706017993376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017993152": {"type": "Union", "items": [{"nodeId": "139706039232752", "args": [{"nodeId": ".-1.139706110445600"}, {"nodeId": ".-2.139706110445600"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": ".-1.139706110445600"}, {"nodeId": ".-2.139706110445600"}]}]}, ".-1.139706110445600": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110445600", "variance": "INVARIANT"}, ".-2.139706110445600": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110445600", "variance": "INVARIANT"}, "139706017993264": {"type": "Union", "items": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".-1.139706110445600"}]}, "139706017993376": {"type": "Union", "items": [{"nodeId": ".2.139706039232752"}, {"nodeId": ".-2.139706110445600"}]}, "139706110446048": {"type": "Function", "typeVars": [".-1.139706110446048", ".-2.139706110446048"], "argTypes": [{"nodeId": "139706039232752", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, {"nodeId": "139706017993488"}], "returnType": {"nodeId": "139706039232752", "args": [{"nodeId": "139706017993600"}, {"nodeId": "139706017993712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017993488": {"type": "Union", "items": [{"nodeId": "139706039232752", "args": [{"nodeId": ".-1.139706110446048"}, {"nodeId": ".-2.139706110446048"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": ".-1.139706110446048"}, {"nodeId": ".-2.139706110446048"}]}]}, ".-1.139706110446048": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110446048", "variance": "INVARIANT"}, ".-2.139706110446048": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110446048", "variance": "INVARIANT"}, "139706017993600": {"type": "Union", "items": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".-1.139706110446048"}]}, "139706017993712": {"type": "Union", "items": [{"nodeId": ".2.139706039232752"}, {"nodeId": ".-2.139706110446048"}]}, "139706017992256": {"type": "Overloaded", "items": [{"nodeId": "139706110444256"}, {"nodeId": "139706110446496"}]}, "139706110444256": {"type": "Function", "typeVars": [".-1.139706110444256"], "argTypes": [{"nodeId": ".-1.139706110444256"}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}], "returnType": {"nodeId": ".-1.139706110444256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110444256": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110444256", "variance": "INVARIANT"}, "139706110446496": {"type": "Function", "typeVars": [".-1.139706110446496"], "argTypes": [{"nodeId": ".-1.139706110446496"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706017994048"}]}], "returnType": {"nodeId": ".-1.139706110446496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110446496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110446496", "variance": "INVARIANT"}, "139706017994048": {"type": "Tuple", "items": [{"nodeId": ".1.139706039232752"}, {"nodeId": ".2.139706039232752"}]}, "139706039233088": {"type": "Concrete", "module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039233088"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017992816"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110448288"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110448736"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110449184"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110449632"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110450080"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110450528"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110450976"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017993824"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017994160"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110453216"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110451872"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110453664"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110454112"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110454560"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110455008"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110455456"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110456352"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110456800"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110457248"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110457696"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110455904"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110458144"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110459040"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110459488"}, "name": "index"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017994720"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110592160"}, "name": "extend"}], "typeVars": [{"nodeId": ".1.139706039233088"}], "bases": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706039233088"}]}], "isAbstract": false}, ".1.139706039233088": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039233088", "variance": "INVARIANT"}, "139706017992816": {"type": "Overloaded", "items": [{"nodeId": "139706110447392"}, {"nodeId": "139706110447840"}]}, "139706110447392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}, "139706110447840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}, "139706110448288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706017994272"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017994272": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}]}, "139706110448736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706017994384"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017994384": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}]}, "139706110449184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706017994496"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017994496": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}]}, "139706110449632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706017994608"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017994608": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}]}, "139706110450080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110450528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110450976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706017993824": {"type": "Overloaded", "items": [{"nodeId": "139706110451424"}, {"nodeId": "139706110446944"}]}, "139706110451424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706039233088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110446944": {"type": "Function", "typeVars": [".-1.139706110446944"], "argTypes": [{"nodeId": ".-1.139706110446944"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": ".-1.139706110446944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110446944": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110446944", "variance": "INVARIANT"}, "139706017994160": {"type": "Overloaded", "items": [{"nodeId": "139706110452320"}, {"nodeId": "139706110452768"}]}, "139706110452320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706039236448"}, {"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706110452768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706038881296"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706110453216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706017994944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017994944": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706110451872": {"type": "Function", "typeVars": [".-1.139706110451872"], "argTypes": [{"nodeId": ".-1.139706110451872"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": ".-1.139706110451872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110451872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110451872", "variance": "INVARIANT"}, "139706110453664": {"type": "Function", "typeVars": [".-1.139706110453664"], "argTypes": [{"nodeId": ".-1.139706110453664"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": ".-1.139706110453664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110453664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110453664", "variance": "INVARIANT"}, "139706110454112": {"type": "Function", "typeVars": [".-1.139706110454112"], "argTypes": [{"nodeId": ".-1.139706110454112"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": ".-1.139706110454112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110454112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110454112", "variance": "INVARIANT"}, "139706110454560": {"type": "Function", "typeVars": [".-1.139706110454560"], "argTypes": [{"nodeId": ".-1.139706110454560"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110454560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110454560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110454560", "variance": "INVARIANT"}, "139706110455008": {"type": "Function", "typeVars": [".-1.139706110455008"], "argTypes": [{"nodeId": ".-1.139706110455008"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110455008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110455008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110455008", "variance": "INVARIANT"}, "139706110455456": {"type": "Function", "typeVars": [".-1.139706110455456"], "argTypes": [{"nodeId": ".-1.139706110455456"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110455456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110455456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110455456", "variance": "INVARIANT"}, "139706110456352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "139706110456800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706038878944"}, {"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}, "139706110457248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706039233088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}, "139706110457696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "139706110455904": {"type": "Function", "typeVars": [".-1.139706110455904"], "argTypes": [{"nodeId": ".-1.139706110455904"}], "returnType": {"nodeId": ".-1.139706110455904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110455904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110455904", "variance": "INVARIANT"}, "139706110458144": {"type": "Function", "typeVars": [".-1.139706110458144"], "argTypes": [{"nodeId": ".-1.139706110458144"}], "returnType": {"nodeId": ".-1.139706110458144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110458144": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110458144", "variance": "INVARIANT"}, "139706110459040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "139706110459488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": ".1.139706039233088"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}, "139706017994720": {"type": "Overloaded", "items": [{"nodeId": "139706110458592"}, {"nodeId": "139706110591712"}]}, "139706110458592": {"type": "Function", "typeVars": [".-1.139706110458592"], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".-1.139706110458592"}]}, {"nodeId": "N"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.139706110458592": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139706051943264"}, "def": "139706110458592", "variance": "INVARIANT"}, "139706110591712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706023008896"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "139706023008896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.139706039233088"}], "returnType": {"nodeId": "139706017995392"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706017995392": {"type": "TypeAlias", "target": {"nodeId": "139706030591664"}}, "139706110592160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233088", "args": [{"nodeId": ".1.139706039233088"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "139706039233424": {"type": "Concrete", "module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110592608"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110593056"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110593504"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110593952"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110594400"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110594848"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110595296"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110595744"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110596192"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110596640"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110597088"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110597536"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110597984"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110598432"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110598880"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110599328"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110599776"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110600224"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110600672"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110601120"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110601568"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110602464"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110602912"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110603360"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110603808"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110604256"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110605152"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110605600"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110606048"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110606496"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110606944"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110722336"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110722784"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110723232"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110723680"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110724128"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110724576"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110725024"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110725472"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110725920"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110726368"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110726816"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110727264"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110727712"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110728160"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110728608"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110729056"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110729504"}, "name": "lstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017994832"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110730848"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110731296"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110731744"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110732192"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110732640"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110733088"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110733536"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110733984"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110734432"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110734880"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110735328"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110735776"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110736224"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110736672"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110737120"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110737568"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110738016"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110820640"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110821088"}, "name": "zfill"}], "typeVars": [], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706039233424"}]}], "isAbstract": false}, "139706110592608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "139706110593056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110593504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110593952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706038879616"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110594400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706017995504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706017995504": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706110594848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017995616"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017995616": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110595296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017995728"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017995728": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110595744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017995840"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017995840": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110596192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017995952"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017995952": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110596640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110597088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110597536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110597984": {"type": "Function", "typeVars": [".-1.139706110597984"], "argTypes": [{"nodeId": ".-1.139706110597984"}, {"nodeId": "139706017996064"}], "returnType": {"nodeId": ".-1.139706110597984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110597984": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110597984", "variance": "INVARIANT"}, "139706017996064": {"type": "Union", "items": [{"nodeId": "139706039236448"}, {"nodeId": "139706038881296"}]}, "139706110598432": {"type": "Function", "typeVars": [".-1.139706110598432"], "argTypes": [{"nodeId": ".-1.139706110598432"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".-1.139706110598432"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706110598432": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110598432", "variance": "INVARIANT"}, "139706110598880": {"type": "Function", "typeVars": [".-1.139706110598880"], "argTypes": [{"nodeId": ".-1.139706110598880"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".-1.139706110598880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706110598880": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110598880", "variance": "INVARIANT"}, "139706110599328": {"type": "Function", "typeVars": [".-1.139706110599328"], "argTypes": [{"nodeId": ".-1.139706110599328"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706110599328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110599328": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110599328", "variance": "INVARIANT"}, "139706110599776": {"type": "Function", "typeVars": [".-1.139706110599776"], "argTypes": [{"nodeId": ".-1.139706110599776"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706110599776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110599776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110599776", "variance": "INVARIANT"}, "139706110600224": {"type": "Function", "typeVars": [".-1.139706110600224"], "argTypes": [{"nodeId": ".-1.139706110600224"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110600224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110600224": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110600224", "variance": "INVARIANT"}, "139706110600672": {"type": "Function", "typeVars": [".-1.139706110600672"], "argTypes": [{"nodeId": ".-1.139706110600672"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110600672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110600672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110600672", "variance": "INVARIANT"}, "139706110601120": {"type": "Function", "typeVars": [".-1.139706110601120"], "argTypes": [{"nodeId": ".-1.139706110601120"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110601120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110601120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110601120", "variance": "INVARIANT"}, "139706110601568": {"type": "Function", "typeVars": [".-1.139706110601568"], "argTypes": [{"nodeId": ".-1.139706110601568"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": ".-1.139706110601568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110601568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110601568", "variance": "INVARIANT"}, "139706110602464": {"type": "Function", "typeVars": [".-1.139706110602464"], "argTypes": [{"nodeId": ".-1.139706110602464"}], "returnType": {"nodeId": ".-1.139706110602464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110602464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110602464", "variance": "INVARIANT"}, "139706110602912": {"type": "Function", "typeVars": [".-1.139706110602912"], "argTypes": [{"nodeId": ".-1.139706110602912"}], "returnType": {"nodeId": ".-1.139706110602912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110602912": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110602912", "variance": "INVARIANT"}, "139706110603360": {"type": "Function", "typeVars": [".-1.139706110603360"], "argTypes": [{"nodeId": ".-1.139706110603360"}, {"nodeId": "139706038878944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110603360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.139706110603360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110603360", "variance": "INVARIANT"}, "139706110603808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017996400"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "139706017996400": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110604256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017996512"}, {"nodeId": "139706017996624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "139706017996512": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706017996624": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706110605152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017996736"}, {"nodeId": "139706017996848"}, {"nodeId": "139706017996960"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "139706017996736": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}]}, "139706017996848": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017996960": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706110605600": {"type": "Function", "typeVars": [".-1.139706110605600"], "argTypes": [{"nodeId": ".-1.139706110605600"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110605600"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, ".-1.139706110605600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110605600", "variance": "INVARIANT"}, "139706110606048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017997072"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "139706017997072": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110606496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "139706110606944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "139706110722336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "139706110722784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110723232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110723680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110724128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110724576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110725024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110725472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110725920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110726368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110726816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110727264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110727712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110728160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "139706110728608": {"type": "Function", "typeVars": [".-1.139706110728608"], "argTypes": [{"nodeId": ".-1.139706110728608"}, {"nodeId": "139706038878944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110728608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.139706110728608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110728608", "variance": "INVARIANT"}, "139706110729056": {"type": "Function", "typeVars": [".-1.139706110729056"], "argTypes": [{"nodeId": ".-1.139706110729056"}], "returnType": {"nodeId": ".-1.139706110729056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110729056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110729056", "variance": "INVARIANT"}, "139706110729504": {"type": "Function", "typeVars": [".-1.139706110729504"], "argTypes": [{"nodeId": ".-1.139706110729504"}, {"nodeId": "139706017997632"}], "returnType": {"nodeId": ".-1.139706110729504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.139706110729504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110729504", "variance": "INVARIANT"}, "139706017997632": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706017994832": {"type": "Overloaded", "items": [{"nodeId": "139706110729952"}, {"nodeId": "139706110730400"}]}, "139706110729952": {"type": "Function", "typeVars": [".-1.139706110729952"], "argTypes": [{"nodeId": "139706017997968"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": ".-1.139706110729952"}]}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "139706017997968": {"type": "Union", "items": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": ".-1.139706110729952"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".-1.139706110729952"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706017997856"}, {"nodeId": ".-1.139706110729952"}]}]}, ".-1.139706110729952": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110729952", "variance": "INVARIANT"}, "139706017997856": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706110730400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": "139706017998080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["x", "y", "z"]}, "139706017998080": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706110730848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706017998304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "139706017998304": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706110731296": {"type": "Function", "typeVars": [".-1.139706110731296"], "argTypes": [{"nodeId": ".-1.139706110731296"}, {"nodeId": "139706017998416"}], "returnType": {"nodeId": ".-1.139706110731296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706110731296": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110731296", "variance": "INVARIANT"}, "139706017998416": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110731744": {"type": "Function", "typeVars": [".-1.139706110731744"], "argTypes": [{"nodeId": ".-1.139706110731744"}, {"nodeId": "139706017998528"}], "returnType": {"nodeId": ".-1.139706110731744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706110731744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110731744", "variance": "INVARIANT"}, "139706017998528": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110732192": {"type": "Function", "typeVars": [".-1.139706110732192"], "argTypes": [{"nodeId": ".-1.139706110732192"}, {"nodeId": "139706017998640"}, {"nodeId": "139706017998752"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110732192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}, ".-1.139706110732192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110732192", "variance": "INVARIANT"}, "139706017998640": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706017998752": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110732640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017998864"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "139706017998864": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110733088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017998976"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "139706017998976": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039233424"}]}, "139706110733536": {"type": "Function", "typeVars": [".-1.139706110733536"], "argTypes": [{"nodeId": ".-1.139706110733536"}, {"nodeId": "139706038878944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110733536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.139706110733536": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110733536", "variance": "INVARIANT"}, "139706110733984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706017999312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "139706017999312": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706110734432": {"type": "Function", "typeVars": [".-1.139706110734432"], "argTypes": [{"nodeId": ".-1.139706110734432"}, {"nodeId": "139706017999424"}], "returnType": {"nodeId": ".-1.139706110734432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.139706110734432": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110734432", "variance": "INVARIANT"}, "139706017999424": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706110734880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017999536"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706017999536": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706110735328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017999648"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "139706017999648": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706110735776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "139706110736224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233424"}, {"nodeId": "139706017999760"}, {"nodeId": "139706017999872"}, {"nodeId": "139706017999984"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "139706017999760": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}]}, "139706017999872": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017999984": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706110736672": {"type": "Function", "typeVars": [".-1.139706110736672"], "argTypes": [{"nodeId": ".-1.139706110736672"}, {"nodeId": "139706018000096"}], "returnType": {"nodeId": ".-1.139706110736672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.139706110736672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110736672", "variance": "INVARIANT"}, "139706018000096": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706110737120": {"type": "Function", "typeVars": [".-1.139706110737120"], "argTypes": [{"nodeId": ".-1.139706110737120"}], "returnType": {"nodeId": ".-1.139706110737120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110737120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110737120", "variance": "INVARIANT"}, "139706110737568": {"type": "Function", "typeVars": [".-1.139706110737568"], "argTypes": [{"nodeId": ".-1.139706110737568"}], "returnType": {"nodeId": ".-1.139706110737568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110737568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110737568", "variance": "INVARIANT"}, "139706110738016": {"type": "Function", "typeVars": [".-1.139706110738016"], "argTypes": [{"nodeId": ".-1.139706110738016"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706110738016"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, ".-1.139706110738016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110738016", "variance": "INVARIANT"}, "139706110820640": {"type": "Function", "typeVars": [".-1.139706110820640"], "argTypes": [{"nodeId": ".-1.139706110820640"}], "returnType": {"nodeId": ".-1.139706110820640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110820640": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110820640", "variance": "INVARIANT"}, "139706110821088": {"type": "Function", "typeVars": [".-1.139706110821088"], "argTypes": [{"nodeId": ".-1.139706110821088"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110821088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}, ".-1.139706110821088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110821088", "variance": "INVARIANT"}, "139706039233760": {"type": "Concrete", "module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705975992864"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017995056"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110822880"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110823328"}, "name": "appendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110823776"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110824224"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110824672"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110825120"}, "name": "extendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110825568"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110826016"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110826464"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110826912"}, "name": "popleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110827360"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110827808"}, "name": "rotate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110828256"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110828704"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110829152"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110829600"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110830048"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110830496"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110830944"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110831392"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110831840"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110832288"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110832736"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110833184"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110833632"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110834080"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110834528"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110834976"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706039233760"}], "bases": [{"nodeId": "139706131788992", "args": [{"nodeId": ".1.139706039233760"}]}], "isAbstract": false}, "139705975992864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706018000320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039233760": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039233760", "variance": "INVARIANT"}, "139706018000320": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017995056": {"type": "Overloaded", "items": [{"nodeId": "139706110821984"}, {"nodeId": "139706110822432"}]}, "139706110821984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706018000544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}, "139706018000544": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706110822432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706018000656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}, "139706018000656": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706110822880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110823328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110823776": {"type": "Function", "typeVars": [".-1.139706110823776"], "argTypes": [{"nodeId": ".-1.139706110823776"}], "returnType": {"nodeId": ".-1.139706110823776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110823776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110823776", "variance": "INVARIANT"}, "139706110824224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110824672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110825120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110825568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706038878944"}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706110826016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": ".1.139706039233760"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706110826464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": ".1.139706039233760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110826912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": ".1.139706039233760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110827360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110827808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706110828256": {"type": "Function", "typeVars": [".-1.139706110828256"], "argTypes": [{"nodeId": ".-1.139706110828256"}], "returnType": {"nodeId": ".-1.139706110828256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110828256": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110828256", "variance": "INVARIANT"}, "139706110828704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110829152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": ".1.139706039233760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110829600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039236448"}, {"nodeId": ".1.139706039233760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706110830048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110830496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110830944": {"type": "Function", "typeVars": [".-1.139706110830944"], "argTypes": [{"nodeId": ".-1.139706110830944"}], "returnType": {"nodeId": "139706018001104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110830944": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110830944", "variance": "INVARIANT"}, "139706018001104": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "139706018000880"}, {"nodeId": "N"}, {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039233760"}]}]}, "139706018000880": {"type": "Tuple", "items": []}, "139706110831392": {"type": "Function", "typeVars": [".-1.139706110831392"], "argTypes": [{"nodeId": ".-1.139706110831392"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": ".-1.139706110831392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110831392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110831392", "variance": "INVARIANT"}, "139706110831840": {"type": "Function", "typeVars": [".-1.139706110831840"], "argTypes": [{"nodeId": ".-1.139706110831840"}, {"nodeId": ".-1.139706110831840"}], "returnType": {"nodeId": ".-1.139706110831840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110831840": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110831840", "variance": "INVARIANT"}, "139706110832288": {"type": "Function", "typeVars": [".-1.139706110832288"], "argTypes": [{"nodeId": ".-1.139706110832288"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110832288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110832288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110832288", "variance": "INVARIANT"}, "139706110832736": {"type": "Function", "typeVars": [".-1.139706110832736"], "argTypes": [{"nodeId": ".-1.139706110832736"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706110832736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110832736": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110832736", "variance": "INVARIANT"}, "139706110833184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110833632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110834080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110834528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}, {"nodeId": "139706039233760", "args": [{"nodeId": ".1.139706039233760"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110834976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706039090336": {"type": "Concrete", "module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017997744"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110952160"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110952608"}, "name": "elements"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110953056"}, "name": "most_common"}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976123712"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018000432"}, "items": [{"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subtract"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018001328"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110956640"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110957088"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110957536"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110957984"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110958432"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110958880"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110959328"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110959776"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110960224"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110960672"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110961120"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110961568"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110962016"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110962464"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110962912"}, "name": "total"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110963360"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110963808"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110964256"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110964704"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.139706039090336"}], "bases": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706039090336"}, {"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706017997744": {"type": "Overloaded", "items": [{"nodeId": "139706110835424"}, {"nodeId": "139706110835872"}, {"nodeId": "139706110836320"}, {"nodeId": "139706110951712"}]}, "139706110835424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.139706039090336": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039090336", "variance": "INVARIANT"}, "139706110835872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110836320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706039090336"}, {"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110951712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110952160": {"type": "Function", "typeVars": [".-1.139706110952160"], "argTypes": [{"nodeId": ".-1.139706110952160"}], "returnType": {"nodeId": ".-1.139706110952160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706110952160": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110952160", "variance": "INVARIANT"}, "139706110952608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039090336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110953056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706018001440"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706018001664"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "139706018001440": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706018001664": {"type": "Tuple", "items": [{"nodeId": ".1.139706039090336"}, {"nodeId": "139706038878944"}]}, "139705976123712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "139706018001888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}, "139706018001888": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706018000432": {"type": "Overloaded", "items": [{"nodeId": "139706110953952"}, {"nodeId": "139706110954400"}, {"nodeId": "139706110954848"}]}, "139706110953952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706110954400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706039090336"}, {"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706110954848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018001328": {"type": "Overloaded", "items": [{"nodeId": "139706110955296"}, {"nodeId": "139706110955744"}, {"nodeId": "139706110956192"}]}, "139706110955296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706039090336"}, {"nodeId": "139706038878944"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110955744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110956192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "N"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706110956640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": ".1.139706039090336"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "139706110957088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110957536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110957984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110958432": {"type": "Function", "typeVars": [".-1.139706110958432"], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": ".-1.139706110958432"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": "139706018002224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110958432": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110958432", "variance": "INVARIANT"}, "139706018002224": {"type": "Union", "items": [{"nodeId": ".1.139706039090336"}, {"nodeId": ".-1.139706110958432"}]}, "139706110958880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110959328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110959776": {"type": "Function", "typeVars": [".-1.139706110959776"], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": ".-1.139706110959776"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": "139706018002336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110959776": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110959776", "variance": "INVARIANT"}, "139706018002336": {"type": "Union", "items": [{"nodeId": ".1.139706039090336"}, {"nodeId": ".-1.139706110959776"}]}, "139706110960224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110960672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706110961120": {"type": "Function", "typeVars": [".-1.139706110961120"], "argTypes": [{"nodeId": ".-1.139706110961120"}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": ".-1.139706110961120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110961120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110961120", "variance": "INVARIANT"}, "139706110961568": {"type": "Function", "typeVars": [".-1.139706110961568"], "argTypes": [{"nodeId": ".-1.139706110961568"}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": ".-1.139706110961568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110961568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110961568", "variance": "INVARIANT"}, "139706110962016": {"type": "Function", "typeVars": [".-1.139706110962016"], "argTypes": [{"nodeId": ".-1.139706110962016"}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": ".-1.139706110962016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110962016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110962016", "variance": "INVARIANT"}, "139706110962464": {"type": "Function", "typeVars": [".-1.139706110962464"], "argTypes": [{"nodeId": ".-1.139706110962464"}, {"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": ".-1.139706110962464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706110962464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706110962464", "variance": "INVARIANT"}, "139706110962912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706110963360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110963808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110964256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706110964704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090336", "args": [{"nodeId": ".1.139706039090336"}]}, {"nodeId": "139706039090336", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706030538816": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110965152"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706030538816"}], "bases": [{"nodeId": "139706039226032", "args": [{"nodeId": ".1.139706030538816"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706030538816"}]}], "isAbstract": false}, "139706110965152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030538816", "args": [{"nodeId": ".1.139706030538816"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706030538816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030538816": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030538816", "variance": "COVARIANT"}, "139706030539152": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110965600"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706030539152"}, {"nodeId": ".2.139706030539152"}], "bases": [{"nodeId": "139706039225696", "args": [{"nodeId": ".1.139706030539152"}, {"nodeId": ".2.139706030539152"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": "139706051949984"}]}], "isAbstract": false}, "139706110965600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030539152", "args": [{"nodeId": ".1.139706030539152"}, {"nodeId": ".2.139706030539152"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706018003008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030539152": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030539152", "variance": "COVARIANT"}, ".2.139706030539152": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030539152", "variance": "COVARIANT"}, "139706018003008": {"type": "Tuple", "items": [{"nodeId": ".1.139706030539152"}, {"nodeId": ".2.139706030539152"}]}, "139706051949984": {"type": "Tuple", "items": [{"nodeId": ".1.139706030539152"}, {"nodeId": ".2.139706030539152"}]}, "139706030539488": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110966048"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706030539488"}], "bases": [{"nodeId": "139706039226368", "args": [{"nodeId": ".1.139706030539488"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706030539488"}]}], "isAbstract": false}, "139706110966048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030539488", "args": [{"nodeId": ".1.139706030539488"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706030539488"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030539488": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030539488", "variance": "COVARIANT"}, "139706039234096": {"type": "Concrete", "module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110966496"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706039234096"}, {"nodeId": ".2.139706039234096"}], "bases": [{"nodeId": "139706039228720", "args": [{"nodeId": ".1.139706039234096"}, {"nodeId": ".2.139706039234096"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706039234096"}]}], "isAbstract": false}, "139706110966496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039234096", "args": [{"nodeId": ".1.139706039234096"}, {"nodeId": ".2.139706039234096"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039234096"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706039234096": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234096", "variance": "COVARIANT"}, ".2.139706039234096": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234096", "variance": "COVARIANT"}, "139706039234432": {"type": "Concrete", "module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110966944"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706039234432"}, {"nodeId": ".2.139706039234432"}], "bases": [{"nodeId": "139706039229392", "args": [{"nodeId": ".1.139706039234432"}, {"nodeId": ".2.139706039234432"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": "139706031066016"}]}], "isAbstract": false}, "139706110966944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039234432", "args": [{"nodeId": ".1.139706039234432"}, {"nodeId": ".2.139706039234432"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706018003232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706039234432": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234432", "variance": "COVARIANT"}, ".2.139706039234432": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234432", "variance": "COVARIANT"}, "139706018003232": {"type": "Tuple", "items": [{"nodeId": ".1.139706039234432"}, {"nodeId": ".2.139706039234432"}]}, "139706031066016": {"type": "Tuple", "items": [{"nodeId": ".1.139706039234432"}, {"nodeId": ".2.139706039234432"}]}, "139706039234768": {"type": "Concrete", "module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706110967392"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.139706039234768"}, {"nodeId": ".2.139706039234768"}], "bases": [{"nodeId": "139706039229056", "args": [{"nodeId": ".1.139706039234768"}, {"nodeId": ".2.139706039234768"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".2.139706039234768"}]}], "isAbstract": false}, "139706110967392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039234768", "args": [{"nodeId": ".1.139706039234768"}, {"nodeId": ".2.139706039234768"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".2.139706039234768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706039234768": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234768", "variance": "COVARIANT"}, ".2.139706039234768": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039234768", "variance": "COVARIANT"}, "139706039235104": {"type": "Concrete", "module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111082784"}, "name": "popitem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111083232"}, "name": "move_to_end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111083680"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111084128"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111084576"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111085024"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111085472"}, "name": "values"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018002000"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018002112"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}], "typeVars": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}], "bases": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706039235104"}]}], "isAbstract": false}, "139706111082784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706018003456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}, ".1.139706039235104": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039235104", "variance": "INVARIANT"}, ".2.139706039235104": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039235104", "variance": "INVARIANT"}, "139706018003456": {"type": "Tuple", "items": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, "139706111083232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, {"nodeId": ".1.139706039235104"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}, "139706111083680": {"type": "Function", "typeVars": [".-1.139706111083680"], "argTypes": [{"nodeId": ".-1.139706111083680"}], "returnType": {"nodeId": ".-1.139706111083680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706111083680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111083680", "variance": "INVARIANT"}, "139706111084128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039235104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706111084576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}], "returnType": {"nodeId": "139706039234096", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706111085024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}], "returnType": {"nodeId": "139706039234432", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706111085472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}], "returnType": {"nodeId": "139706039234768", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018002000": {"type": "Overloaded", "items": [{"nodeId": "139706111085920"}, {"nodeId": "139706111086368"}]}, "139706111085920": {"type": "Function", "typeVars": [".-1.139706111085920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706111085920"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039235104", "args": [{"nodeId": ".-1.139706111085920"}, {"nodeId": "139706018003792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.139706111085920": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111085920", "variance": "INVARIANT"}, "139706018003792": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706111086368": {"type": "Function", "typeVars": [".-1.139706111086368", ".-2.139706111086368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706111086368"}]}, {"nodeId": ".-2.139706111086368"}], "returnType": {"nodeId": "139706039235104", "args": [{"nodeId": ".-1.139706111086368"}, {"nodeId": ".-2.139706111086368"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.139706111086368": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111086368", "variance": "INVARIANT"}, ".-2.139706111086368": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111086368", "variance": "INVARIANT"}, "139706018002112": {"type": "Overloaded", "items": [{"nodeId": "139706111086816"}, {"nodeId": "139706111087264"}]}, "139706111086816": {"type": "Function", "typeVars": [".-1.139706111086816"], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": "139706018004016"}]}, {"nodeId": ".1.139706039235104"}], "returnType": {"nodeId": "139706018004128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "139706018004016": {"type": "Union", "items": [{"nodeId": ".-1.139706111086816"}, {"nodeId": "N"}]}, ".-1.139706111086816": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111086816", "variance": "INVARIANT"}, "139706018004128": {"type": "Union", "items": [{"nodeId": ".-1.139706111086816"}, {"nodeId": "N"}]}, "139706111087264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235104", "args": [{"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}]}, {"nodeId": ".1.139706039235104"}, {"nodeId": ".2.139706039235104"}], "returnType": {"nodeId": ".2.139706039235104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}, "139706039090672": {"type": "Concrete", "module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706051951776"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018003568"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111091296"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111091744"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111092192"}, "name": "copy"}], "typeVars": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}], "bases": [{"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}], "isAbstract": false}, "139706051951776": {"type": "Union", "items": [{"nodeId": "139706122938944"}, {"nodeId": "N"}]}, "139706122938944": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, ".2.139706039090672": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039090672", "variance": "INVARIANT"}, "139706018003568": {"type": "Overloaded", "items": [{"nodeId": "139706111087712"}, {"nodeId": "139706111088160"}, {"nodeId": "139706111088608"}, {"nodeId": "139706111089056"}, {"nodeId": "139706111089504"}, {"nodeId": "139706111089952"}, {"nodeId": "139706111090400"}, {"nodeId": "139706111090848"}]}, "139706111087712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039090672": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039090672", "variance": "INVARIANT"}, "139706111088160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": ".2.139706039090672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "139706111088608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018004352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018004352": {"type": "Union", "items": [{"nodeId": "139706023009344"}, {"nodeId": "N"}]}, "139706023009344": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706111089056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018004464"}, {"nodeId": ".2.139706039090672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "139706018004464": {"type": "Union", "items": [{"nodeId": "139706023009568"}, {"nodeId": "N"}]}, "139706023009568": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706111089504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018004576"}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706018004576": {"type": "Union", "items": [{"nodeId": "139706023009792"}, {"nodeId": "N"}]}, "139706023009792": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706111089952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018004688"}, {"nodeId": "139706030550576", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": ".2.139706039090672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "139706018004688": {"type": "Union", "items": [{"nodeId": "139706023010016"}, {"nodeId": "N"}]}, "139706023010016": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706111090400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018004800"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706018382000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706018004800": {"type": "Union", "items": [{"nodeId": "139706023010240"}, {"nodeId": "N"}]}, "139706023010240": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706018382000": {"type": "Tuple", "items": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}, "139706111090848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": "139706018382112"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706018382336"}]}, {"nodeId": ".2.139706039090672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "139706018382112": {"type": "Union", "items": [{"nodeId": "139706023010464"}, {"nodeId": "N"}]}, "139706023010464": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": [], "argNames": []}, "139706018382336": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": ".2.139706039090672"}]}, "139706111091296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039090672", "args": [{"nodeId": ".1.139706039090672"}, {"nodeId": ".2.139706039090672"}]}, {"nodeId": ".1.139706039090672"}], "returnType": {"nodeId": ".2.139706039090672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706111091744": {"type": "Function", "typeVars": [".-1.139706111091744"], "argTypes": [{"nodeId": ".-1.139706111091744"}], "returnType": {"nodeId": ".-1.139706111091744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706111091744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111091744", "variance": "INVARIANT"}, "139706111092192": {"type": "Function", "typeVars": [".-1.139706111092192"], "argTypes": [{"nodeId": ".-1.139706111092192"}], "returnType": {"nodeId": ".-1.139706111092192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706111092192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111092192", "variance": "INVARIANT"}, "139706039235440": {"type": "Concrete", "module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111092640"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111093088"}, "name": "new_child"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976428288"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111093984"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111094432"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111094880"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111095328"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111095776"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111096224"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111096672"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111097120"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706111097568"}, "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018003904"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105987360"}, "name": "copy"}, {"kind": "Variable", "name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976430752"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018004240"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105988704"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105989152"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018382560"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}], "bases": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "isAbstract": false}, ".1.139706039235440": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039235440", "variance": "INVARIANT"}, ".2.139706039235440": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039235440", "variance": "INVARIANT"}, "139706111092640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}, "139706111093088": {"type": "Function", "typeVars": [".-1.139706111093088"], "argTypes": [{"nodeId": ".-1.139706111093088"}, {"nodeId": "139706018382448"}], "returnType": {"nodeId": ".-1.139706111093088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, ".-1.139706111093088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111093088", "variance": "INVARIANT"}, "139706018382448": {"type": "Union", "items": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": "N"}]}, "139705976428288": {"type": "Function", "typeVars": [".-1.139705976428288"], "argTypes": [{"nodeId": ".-1.139705976428288"}], "returnType": {"nodeId": ".-1.139705976428288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705976428288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705976428288", "variance": "INVARIANT"}, "139706111093984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706111094432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706111094880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}], "returnType": {"nodeId": ".2.139706039235440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706111095328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039235440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706111095776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706111096224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706111096672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}], "returnType": {"nodeId": ".2.139706039235440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "139706111097120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706111097568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}], "returnType": {"nodeId": ".2.139706039235440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "139706018003904": {"type": "Overloaded", "items": [{"nodeId": "139706111098016"}, {"nodeId": "139706111098464"}]}, "139706111098016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}], "returnType": {"nodeId": ".2.139706039235440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "139706111098464": {"type": "Function", "typeVars": [".-1.139706111098464"], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": ".1.139706039235440"}, {"nodeId": "139706018382672"}], "returnType": {"nodeId": "139706018382784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "139706018382672": {"type": "Union", "items": [{"nodeId": ".2.139706039235440"}, {"nodeId": ".-1.139706111098464"}]}, ".-1.139706111098464": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706111098464", "variance": "INVARIANT"}, "139706018382784": {"type": "Union", "items": [{"nodeId": ".2.139706039235440"}, {"nodeId": ".-1.139706111098464"}]}, "139706105987360": {"type": "Function", "typeVars": [".-1.139706105987360"], "argTypes": [{"nodeId": ".-1.139706105987360"}], "returnType": {"nodeId": ".-1.139706105987360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706105987360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105987360", "variance": "INVARIANT"}, "139705976430752": {"type": "Function", "typeVars": [".-1.139705976430752"], "argTypes": [{"nodeId": ".-1.139705976430752"}], "returnType": {"nodeId": ".-1.139705976430752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705976430752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705976430752", "variance": "INVARIANT"}, "139706018004240": {"type": "Overloaded", "items": [{"nodeId": "139706105987808"}, {"nodeId": "139706105988256"}]}, "139706105987808": {"type": "Function", "typeVars": [".-1.139706105987808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706105987808"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039235440", "args": [{"nodeId": ".-1.139706105987808"}, {"nodeId": "139706018383120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}, ".-1.139706105987808": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105987808", "variance": "INVARIANT"}, "139706018383120": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706105988256": {"type": "Function", "typeVars": [".-1.139706105988256", ".-2.139706105988256"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706105988256"}]}, {"nodeId": ".-2.139706105988256"}], "returnType": {"nodeId": "139706039235440", "args": [{"nodeId": ".-1.139706105988256"}, {"nodeId": ".-2.139706105988256"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.139706105988256": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105988256", "variance": "INVARIANT"}, ".-2.139706105988256": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105988256", "variance": "INVARIANT"}, "139706105988704": {"type": "Function", "typeVars": [".-1.139706105988704", ".-2.139706105988704"], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706105988704"}, {"nodeId": ".-2.139706105988704"}]}], "returnType": {"nodeId": "139706039235440", "args": [{"nodeId": "139706018383232"}, {"nodeId": "139706018383344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706105988704": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105988704", "variance": "INVARIANT"}, ".-2.139706105988704": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105988704", "variance": "INVARIANT"}, "139706018383232": {"type": "Union", "items": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".-1.139706105988704"}]}, "139706018383344": {"type": "Union", "items": [{"nodeId": ".2.139706039235440"}, {"nodeId": ".-2.139706105988704"}]}, "139706105989152": {"type": "Function", "typeVars": [".-1.139706105989152", ".-2.139706105989152"], "argTypes": [{"nodeId": "139706039235440", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706105989152"}, {"nodeId": ".-2.139706105989152"}]}], "returnType": {"nodeId": "139706039235440", "args": [{"nodeId": "139706018383456"}, {"nodeId": "139706018383568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706105989152": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105989152", "variance": "INVARIANT"}, ".-2.139706105989152": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105989152", "variance": "INVARIANT"}, "139706018383456": {"type": "Union", "items": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".-1.139706105989152"}]}, "139706018383568": {"type": "Union", "items": [{"nodeId": ".2.139706039235440"}, {"nodeId": ".-2.139706105989152"}]}, "139706018382560": {"type": "Overloaded", "items": [{"nodeId": "139706105989600"}, {"nodeId": "139706105990048"}]}, "139706105989600": {"type": "Function", "typeVars": [".-1.139706105989600"], "argTypes": [{"nodeId": ".-1.139706105989600"}, {"nodeId": "139706030550576", "args": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}], "returnType": {"nodeId": ".-1.139706105989600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706105989600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105989600", "variance": "INVARIANT"}, "139706105990048": {"type": "Function", "typeVars": [".-1.139706105990048"], "argTypes": [{"nodeId": ".-1.139706105990048"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706018383904"}]}], "returnType": {"nodeId": ".-1.139706105990048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706105990048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105990048", "variance": "INVARIANT"}, "139706018383904": {"type": "Tuple", "items": [{"nodeId": ".1.139706039235440"}, {"nodeId": ".2.139706039235440"}]}, "139706039497248": {"type": "Concrete", "module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105992064"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105992512"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}], "isAbstract": false}, "139706105992064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706105992512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497248"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706039497584": {"type": "Concrete", "module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105994304"}, "name": "__new__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984900608"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105996096"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105996544"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105996992"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105997440"}, "name": "__getitem__"}, {"kind": "Variable", "name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984900832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105998336"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105998784"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706105999232"}, "name": "__dir__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022826544"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "Variable", "name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706039497920"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "A"}, {"nodeId": "139706039497920"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039088656"}], "isAbstract": false}, "139706105994304": {"type": "Function", "typeVars": [".-1.139706105994304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "139706039497248"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706105994304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}, ".-1.139706105994304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105994304", "variance": "INVARIANT"}, "139705984900608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039497248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}, "139706105996096": {"type": "Function", "typeVars": [".-1.139706105996096"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".-1.139706105996096"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706105996096": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105996096", "variance": "INVARIANT"}, "139706105996544": {"type": "Function", "typeVars": [".-1.139706105996544"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".-1.139706105996544"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706105996544": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105996544", "variance": "INVARIANT"}, "139706105996992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706105997440": {"type": "Function", "typeVars": [".-1.139706105997440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706105997440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706105997440": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105997440", "variance": "INVARIANT"}, "139705984900832": {"type": "Function", "typeVars": [".-1.139705984900832"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139706043663072", "args": [{"nodeId": "139706038880624"}, {"nodeId": ".-1.139705984900832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705984900832": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705984900832", "variance": "INVARIANT"}, "139706105998336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497584"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706105998784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706105999232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497584"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022826544": {"type": "Overloaded", "items": [{"nodeId": "139706105999680"}, {"nodeId": "139706106000576"}]}, "139706105999680": {"type": "Function", "typeVars": [".-1.139706105999680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139706105999680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}, ".-1.139706105999680": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706105999680", "variance": "INVARIANT"}, "139706106000576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039497584"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022830800"}, {"nodeId": "139706022830912"}, {"nodeId": "139706022831024"}, {"nodeId": "139706022831136"}, {"nodeId": "139706038878944"}], "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"]}, "139706022830800": {"type": "TypeAlias", "target": {"nodeId": "139706047545856"}}, "139706047545856": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706047546192"}]}]}, {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}]}, "139706047546192": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "139706022830912": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022831024": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022831136": {"type": "Union", "items": [{"nodeId": "139706038878272"}, {"nodeId": "N"}]}, "139706039498256": {"type": "Concrete", "module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984908448"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119080192"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "139706038878944"}, {"nodeId": "139706039497920"}], "isAbstract": false}, "139705984908448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039498256"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706119080192": {"type": "Function", "typeVars": [".-1.139706119080192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706119080192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.139706119080192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119080192", "variance": "INVARIANT"}, "139706031276432": {"type": "Concrete", "module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705985007680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119081536"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "139706039498928"}], "isAbstract": false}, "139705985007680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706119081536": {"type": "Function", "typeVars": [".-1.139706119081536"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139706119081536"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139706119081536": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119081536", "variance": "INVARIANT"}, "139706039498928": {"type": "Concrete", "module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119088256"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119088704"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119089152"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119089600"}, "name": "__xor__"}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985014848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985015744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985016640"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038878944"}, {"nodeId": "139706039498592"}], "isAbstract": false}, "139706119088256": {"type": "Function", "typeVars": [".-1.139706119088256"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706119088256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.139706119088256": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119088256", "variance": "INVARIANT"}, "139706119088704": {"type": "Function", "typeVars": [".-1.139706119088704"], "argTypes": [{"nodeId": ".-1.139706119088704"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706119088704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119088704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119088704", "variance": "INVARIANT"}, "139706119089152": {"type": "Function", "typeVars": [".-1.139706119089152"], "argTypes": [{"nodeId": ".-1.139706119089152"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706119089152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119089152": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119089152", "variance": "INVARIANT"}, "139706119089600": {"type": "Function", "typeVars": [".-1.139706119089600"], "argTypes": [{"nodeId": ".-1.139706119089600"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706119089600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119089600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119089600", "variance": "INVARIANT"}, "139705985014848": {"type": "Function", "typeVars": [".-1.139705985014848"], "argTypes": [{"nodeId": ".-1.139705985014848"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705985014848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139705985014848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705985014848", "variance": "INVARIANT"}, "139705985015744": {"type": "Function", "typeVars": [".-1.139705985015744"], "argTypes": [{"nodeId": ".-1.139705985015744"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705985015744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139705985015744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705985015744", "variance": "INVARIANT"}, "139705985016640": {"type": "Function", "typeVars": [".-1.139705985016640"], "argTypes": [{"nodeId": ".-1.139705985016640"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705985016640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139705985016640": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705985016640", "variance": "INVARIANT"}, "139706039498592": {"type": "Concrete", "module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047545520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705985008576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705985009472"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119082880"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119083328"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119083776"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119084224"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119084672"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119085120"}, "name": "__invert__"}], "typeVars": [], "bases": [{"nodeId": "139706039497920"}], "isAbstract": false}, "139706047545520": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705985008576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039498592"}], "returnType": {"nodeId": "139706022831920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022831920": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705985009472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039498592"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706119082880": {"type": "Function", "typeVars": [".-1.139706119082880"], "argTypes": [{"nodeId": ".-1.139706119082880"}, {"nodeId": ".-1.139706119082880"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119082880": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119082880", "variance": "INVARIANT"}, "139706119083328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039498592"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706119083776": {"type": "Function", "typeVars": [".-1.139706119083776"], "argTypes": [{"nodeId": ".-1.139706119083776"}, {"nodeId": ".-1.139706119083776"}], "returnType": {"nodeId": ".-1.139706119083776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119083776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119083776", "variance": "INVARIANT"}, "139706119084224": {"type": "Function", "typeVars": [".-1.139706119084224"], "argTypes": [{"nodeId": ".-1.139706119084224"}, {"nodeId": ".-1.139706119084224"}], "returnType": {"nodeId": ".-1.139706119084224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119084224": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119084224", "variance": "INVARIANT"}, "139706119084672": {"type": "Function", "typeVars": [".-1.139706119084672"], "argTypes": [{"nodeId": ".-1.139706119084672"}, {"nodeId": ".-1.139706119084672"}], "returnType": {"nodeId": ".-1.139706119084672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706119084672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119084672", "variance": "INVARIANT"}, "139706119085120": {"type": "Function", "typeVars": [".-1.139706119085120"], "argTypes": [{"nodeId": ".-1.139706119085120"}], "returnType": {"nodeId": ".-1.139706119085120"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706119085120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119085120", "variance": "INVARIANT"}, "139706031283488": {"type": "Concrete", "module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963639552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963640224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963640448"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118932288"}, "name": "fromutc"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139705963639552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283488"}, {"nodeId": "139705959568480"}], "returnType": {"nodeId": "139705959568144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959568480": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139706031285504": {"type": "Concrete", "module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285504"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959596768"}, "name": "__new__"}, {"kind": "Variable", "name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967727040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967537376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967534912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967535584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967535360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967534240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967533120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967530656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967526400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967529088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967527072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106247232"}, "name": "timestamp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106247680"}, "name": "utctimetuple"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106248128"}, "name": "date"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106248576"}, "name": "time"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106396736"}, "name": "timetz"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959598112"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959597888"}, "name": "astimezone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106398528"}, "name": "isoformat"}, {"kind": "Variable", "name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967629632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106399424"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106399872"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106400320"}, "name": "dst"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106400768"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106401216"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106401664"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106402112"}, "name": "__gt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139705959563664"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}], "typeVars": [], "bases": [{"nodeId": "139706031284496"}], "isAbstract": false}, "139705959596768": {"type": "Function", "typeVars": [".-1.139705959596768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139705959415616"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705959596768"}, "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"]}, "139705959415616": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, ".-1.139705959596768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959596768", "variance": "INVARIANT"}, "139705967727040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967537376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967534912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967535584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967535360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139705959415504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959415504": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139705967534240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967533120": {"type": "Function", "typeVars": [".-1.139705967533120"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038879280"}, {"nodeId": "139705959415168"}], "returnType": {"nodeId": ".-1.139705967533120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}, "139705959415168": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, ".-1.139705967533120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705967533120", "variance": "INVARIANT"}, "139705967530656": {"type": "Function", "typeVars": [".-1.139705967530656"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": ".-1.139705967530656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705967530656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705967530656", "variance": "INVARIANT"}, "139705967526400": {"type": "Function", "typeVars": [".-1.139705967526400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139705959414832"}], "returnType": {"nodeId": ".-1.139705967526400"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}, "139705959414832": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, ".-1.139705967526400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705967526400", "variance": "INVARIANT"}, "139705967529088": {"type": "Function", "typeVars": [".-1.139705967529088"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139705967529088"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139705967529088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705967529088", "variance": "INVARIANT"}, "139705967527072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706031284496"}, {"nodeId": "139706031284832"}, {"nodeId": "139705959415392"}], "returnType": {"nodeId": "139706031285504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}, "139706031284496": {"type": "Concrete", "module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031284496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031284496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285168"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959442336"}, "name": "__new__"}, {"kind": "Variable", "name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963529152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963427232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963426336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963425440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963422528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963424544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963255552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963254656"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118938560"}, "name": "ctime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118939456"}, "name": "strftime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118939904"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118940352"}, "name": "isoformat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118940800"}, "name": "timetuple"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118941248"}, "name": "toordinal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118936768"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118942144"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118942592"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118943040"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118943488"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118941696"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118943936"}, "name": "__radd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139705959567472"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106120000"}, "name": "weekday"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106120448"}, "name": "isoweekday"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106120896"}, "name": "isocalendar"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031285168": {"type": "Concrete", "module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285168"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106130752"}, "name": "__new__"}, {"kind": "Variable", "name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967961792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967957760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705967956640"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106132544"}, "name": "total_seconds"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106132992"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106133440"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106133888"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106232896"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106233344"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106233792"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106234240"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106234688"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106235136"}, "name": "__rmul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139705959568592"}, "items": [{"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__floordiv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139705959565008"}, "items": [{"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106237376"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106237824"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106238272"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106238720"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106239168"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106239616"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106240064"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706106130752": {"type": "Function", "typeVars": [".-1.139706106130752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": ".-1.139706106130752"}, "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"]}, ".-1.139706106130752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106130752", "variance": "INVARIANT"}, "139705967961792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967957760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705967956640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106132544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106132992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106133440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106133888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106232896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106233344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706106233792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706106234240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706106234688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106235136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705959568592": {"type": "Overloaded", "items": [{"nodeId": "139706106235584"}, {"nodeId": "139706106236032"}]}, "139706106235584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106236032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705959565008": {"type": "Overloaded", "items": [{"nodeId": "139706106236480"}, {"nodeId": "139706106236928"}]}, "139706106236480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106236928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106237376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106237824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139705959403408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705959403408": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706031285168"}]}, "139706106238272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106238720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106239168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106239616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106240064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285168"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959442336": {"type": "Function", "typeVars": [".-1.139705959442336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705959442336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}, ".-1.139705959442336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959442336", "variance": "INVARIANT"}, "139705963529152": {"type": "Function", "typeVars": [".-1.139705963529152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038879280"}], "returnType": {"nodeId": ".-1.139705963529152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705963529152": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963529152", "variance": "INVARIANT"}, "139705963427232": {"type": "Function", "typeVars": [".-1.139705963427232"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139705963427232"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139705963427232": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963427232", "variance": "INVARIANT"}, "139705963426336": {"type": "Function", "typeVars": [".-1.139705963426336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705963426336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705963426336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963426336", "variance": "INVARIANT"}, "139705963425440": {"type": "Function", "typeVars": [".-1.139705963425440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705963425440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705963425440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963425440", "variance": "INVARIANT"}, "139705963422528": {"type": "Function", "typeVars": [".-1.139705963422528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705963422528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}, ".-1.139705963422528": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705963422528", "variance": "INVARIANT"}, "139705963424544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963255552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705963254656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706118938560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706118939456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706118939904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706118940352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706118940800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139705959565344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959565344": {"type": "TypeAlias", "target": {"nodeId": "139705959924000"}}, "139705959924000": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706118941248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706118936768": {"type": "Function", "typeVars": [".-1.139706118936768"], "argTypes": [{"nodeId": ".-1.139706118936768"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706118936768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}, ".-1.139706118936768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118936768", "variance": "INVARIANT"}, "139706118942144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118942592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118943040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118943488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118941696": {"type": "Function", "typeVars": [".-1.139706118941696"], "argTypes": [{"nodeId": ".-1.139706118941696"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": ".-1.139706118941696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706118941696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118941696", "variance": "INVARIANT"}, "139706118943936": {"type": "Function", "typeVars": [".-1.139706118943936"], "argTypes": [{"nodeId": ".-1.139706118943936"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": ".-1.139706118943936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706118943936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118943936", "variance": "INVARIANT"}, "139705959567472": {"type": "Overloaded", "items": [{"nodeId": "139706118944384"}, {"nodeId": "139706118945280"}, {"nodeId": "139706118944832"}]}, "139706118944384": {"type": "Function", "typeVars": [".-1.139706118944384"], "argTypes": [{"nodeId": ".-1.139706118944384"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": ".-1.139706118944384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706118944384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118944384", "variance": "INVARIANT"}, "139706118945280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706118944832": {"type": "Function", "typeVars": [".-1.139706118944832"], "argTypes": [{"nodeId": ".-1.139706118944832"}, {"nodeId": ".-1.139706118944832"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706118944832": {"type": "TypeVar", "varName": "_D", "values": [], "upperBound": {"nodeId": "139706031284496"}, "def": "139706118944832", "variance": "INVARIANT"}, "139706106120000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106120448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106120896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284496"}], "returnType": {"nodeId": "139705959564896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959564896": {"type": "TypeAlias", "target": {"nodeId": "139705959569152"}}, "139705959569152": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031284832": {"type": "Concrete", "module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031284832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031284832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031285168"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118945728"}, "name": "__new__"}, {"kind": "Variable", "name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968287904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968159520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968157728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968156832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968155936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705968155040"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106124928"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106125376"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106125824"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106126272"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106126720"}, "name": "isoformat"}, {"kind": "Variable", "name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968153920"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106128064"}, "name": "strftime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106128512"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106128960"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106129408"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106129856"}, "name": "dst"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959596544"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706118945728": {"type": "Function", "typeVars": [".-1.139706118945728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139705959564560"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706118945728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}, "139705959564560": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, ".-1.139706118945728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706118945728", "variance": "INVARIANT"}, "139705968287904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705968159520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705968157728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705968156832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705968155936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139705959564784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959564784": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139705968155040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106124928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106125376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106125824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106126272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706031284832"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106126720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}, "139705968153920": {"type": "Function", "typeVars": [".-1.139705968153920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139705968153920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.139705968153920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705968153920", "variance": "INVARIANT"}, "139706106128064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706106128512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706106128960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139705959564448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959564448": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139706106129408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139705959564336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959564336": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706106129856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031284832"}], "returnType": {"nodeId": "139705959564112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959564112": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139705959596544": {"type": "Function", "typeVars": [".-1.139705959596544"], "argTypes": [{"nodeId": ".-1.139705959596544"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139705959564224"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705959596544"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}, ".-1.139705959596544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959596544", "variance": "INVARIANT"}, "139705959564224": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139705959415392": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139706106247232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106247680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139705959412480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959412480": {"type": "TypeAlias", "target": {"nodeId": "139705959924000"}}, "139706106248128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706031284496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106248576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706031284832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106396736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706031284832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959598112": {"type": "Function", "typeVars": [".-1.139705959598112"], "argTypes": [{"nodeId": ".-1.139705959598112"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139705959412704"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139705959598112"}, "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"]}, ".-1.139705959598112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959598112", "variance": "INVARIANT"}, "139705959412704": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139705959597888": {"type": "Function", "typeVars": [".-1.139705959597888"], "argTypes": [{"nodeId": ".-1.139705959597888"}, {"nodeId": "139705959414720"}], "returnType": {"nodeId": ".-1.139705959597888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}, ".-1.139705959597888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705959597888", "variance": "INVARIANT"}, "139705959414720": {"type": "Union", "items": [{"nodeId": "139706031283488"}, {"nodeId": "N"}]}, "139706106398528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}, "139705967629632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706031285504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, "139706106399424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139705959412816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959412816": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139706106399872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139705959414272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959414272": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706106400320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}], "returnType": {"nodeId": "139705959414048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959414048": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139706106400768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106401216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106401664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706106402112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031285504"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705959563664": {"type": "Overloaded", "items": [{"nodeId": "139706106402560"}, {"nodeId": "139706106403008"}]}, "139706106402560": {"type": "Function", "typeVars": [".-1.139706106402560"], "argTypes": [{"nodeId": ".-1.139706106402560"}, {"nodeId": "139706031285168"}], "returnType": {"nodeId": ".-1.139706106402560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706106402560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106402560", "variance": "INVARIANT"}, "139706106403008": {"type": "Function", "typeVars": [".-1.139706106403008"], "argTypes": [{"nodeId": ".-1.139706106403008"}, {"nodeId": ".-1.139706106403008"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706106403008": {"type": "TypeVar", "varName": "_D", "values": [], "upperBound": {"nodeId": "139706031284496"}, "def": "139706106403008", "variance": "INVARIANT"}, "139705959568144": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705963640224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283488"}, {"nodeId": "139705959568032"}], "returnType": {"nodeId": "139705959566240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959568032": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139705959566240": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139705963640448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283488"}, {"nodeId": "139705959563888"}], "returnType": {"nodeId": "139705959566576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959563888": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139705959566576": {"type": "Union", "items": [{"nodeId": "139706031285168"}, {"nodeId": "N"}]}, "139706118932288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283488"}, {"nodeId": "139706031285504"}], "returnType": {"nodeId": "139706031285504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706031283824": {"type": "Concrete", "module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031283824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031283824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031283824"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118932736"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118933184"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118933632"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706118934080"}, "name": "dst"}], "typeVars": [], "bases": [{"nodeId": "139706031283488"}], "isAbstract": false}, "139706118932736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283824"}, {"nodeId": "139706031285168"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}, "139706118933184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283824"}, {"nodeId": "139705959566128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959566128": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139706118933632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283824"}, {"nodeId": "139705959566016"}], "returnType": {"nodeId": "139706031285168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959566016": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139706118934080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031283824"}, {"nodeId": "139705959565680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139705959565680": {"type": "Union", "items": [{"nodeId": "139706031285504"}, {"nodeId": "N"}]}, "139706131781600": {"type": "Concrete", "module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959436960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043662736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043513792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959437408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959438080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706089986688"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705959436960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781600"}], "returnType": {"nodeId": "139706014105664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706014105664": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706039238128"}]}, {"nodeId": "N"}]}, "139706039238128": {"type": "Concrete", "module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102634912"}, "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706102634912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039238128"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706043513792": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139705959437408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781600"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959438080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781600"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706089986688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131781600"}, {"nodeId": "139706014106000"}, {"nodeId": "139706014106112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "139706014106000": {"type": "Union", "items": [{"nodeId": "139706131780928"}, {"nodeId": "N"}]}, "139706014106112": {"type": "Union", "items": [{"nodeId": "139706038878272"}, {"nodeId": "N"}]}, "139706131791008": {"type": "Concrete", "module": "builtins", "simpleName": "staticmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963963424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963963200"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106775808"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106776256"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963962528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106777152"}, "name": "__call__"}], "typeVars": [{"nodeId": ".1.139706131791008"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705963963424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}], "returnType": {"nodeId": "139706018775104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131791008": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131791008", "variance": "COVARIANT"}, "139706018775104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139705963963200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106775808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}, {"nodeId": "139706018775328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018775328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706106776256": {"type": "Function", "typeVars": [".-1.139706106776256"], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}, {"nodeId": ".-1.139706106776256"}, {"nodeId": "139706018707856"}], "returnType": {"nodeId": "139706018776224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.139706106776256": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106776256", "variance": "INVARIANT"}, "139706018707856": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018776224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139705963962528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}], "returnType": {"nodeId": "139706018776000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018776000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706106777152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706131791008"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791008"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706131791344": {"type": "Concrete", "module": "builtins", "simpleName": "classmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963962080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963961632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106778496"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706106778944"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705963960960"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706131791344"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705963962080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706131791344"}]}], "returnType": {"nodeId": "139706018776672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706131791344": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706131791344", "variance": "COVARIANT"}, "139706018776672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791344"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139705963961632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706131791344"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706106778496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706131791344"}]}, {"nodeId": "139706018776448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706018776448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791344"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706106778944": {"type": "Function", "typeVars": [".-1.139706106778944"], "argTypes": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706131791344"}]}, {"nodeId": ".-1.139706106778944"}, {"nodeId": "139706018708640"}], "returnType": {"nodeId": "139706018777120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.139706106778944": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706106778944", "variance": "INVARIANT"}, "139706018708640": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018777120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791344"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139705963960960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706131791344"}]}], "returnType": {"nodeId": "139706018776896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018776896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706131791344"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706038878608": {"type": "Concrete", "module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706018709200"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706018709200": {"type": "Overloaded", "items": [{"nodeId": "139706106789248"}, {"nodeId": "139706102038592"}, {"nodeId": "139706102039040"}]}, "139706106789248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706102038592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878608"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706102039040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038878608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039231072": {"type": "Concrete", "module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085157440"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085148032"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085158336"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085158784"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706039231072"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": "139706030741136"}]}], "isAbstract": false}, "139706085157440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231072", "args": [{"nodeId": ".1.139706039231072"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039231072"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}, ".1.139706039231072": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039231072", "variance": "INVARIANT"}, "139706085148032": {"type": "Function", "typeVars": [".-1.139706085148032"], "argTypes": [{"nodeId": ".-1.139706085148032"}], "returnType": {"nodeId": ".-1.139706085148032"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706085148032": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085148032", "variance": "INVARIANT"}, "139706085158336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231072", "args": [{"nodeId": ".1.139706039231072"}]}], "returnType": {"nodeId": "139706014112384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706014112384": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": ".1.139706039231072"}]}, "139706085158784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706030741136": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": ".1.139706039231072"}]}, "139706038882640": {"type": "Concrete", "module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959847456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959847904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959848128"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014110256"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085161472"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085161920"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085162368"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085277760"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085278208"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014111712"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085279552"}, "name": "__reversed__"}], "typeVars": [], "bases": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705959847456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959847904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959848128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706014110256": {"type": "Overloaded", "items": [{"nodeId": "139706085160576"}, {"nodeId": "139706085161024"}]}, "139706085160576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085161024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706085161472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085161920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706085162368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085277760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085278208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706014111712": {"type": "Overloaded", "items": [{"nodeId": "139706085278656"}, {"nodeId": "139706085279104"}]}, "139706085278656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706039236448"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085279104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038882640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085279552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882640"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706038882976": {"type": "Concrete", "module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031075312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031077888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031077440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085280000"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085280448"}, "name": "getter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085280896"}, "name": "setter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085281344"}, "name": "deleter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085281792"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085282240"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085282688"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031075312": {"type": "Union", "items": [{"nodeId": "139706080692256"}, {"nodeId": "N"}]}, "139706080692256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706031077888": {"type": "Union", "items": [{"nodeId": "139706055603168"}, {"nodeId": "N"}]}, "139706055603168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706031077440": {"type": "Union", "items": [{"nodeId": "139706052077472"}, {"nodeId": "N"}]}, "139706052077472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085280000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "139706014112832"}, {"nodeId": "139706014113168"}, {"nodeId": "139706014113504"}, {"nodeId": "139706014113728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}, "139706014112832": {"type": "Union", "items": [{"nodeId": "139706014155264"}, {"nodeId": "N"}]}, "139706014155264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706014113168": {"type": "Union", "items": [{"nodeId": "139706014155488"}, {"nodeId": "N"}]}, "139706014155488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706014113504": {"type": "Union", "items": [{"nodeId": "139706014155712"}, {"nodeId": "N"}]}, "139706014155712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706014113728": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706085280448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "139706014155040"}], "returnType": {"nodeId": "139706038882976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014155040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085280896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "139706014155936"}], "returnType": {"nodeId": "139706038882976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014155936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085281344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "139706014156160"}], "returnType": {"nodeId": "139706038882976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706014156160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085281792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "A"}, {"nodeId": "139706014114512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706014114512": {"type": "Union", "items": [{"nodeId": "139706038878272"}, {"nodeId": "N"}]}, "139706085282240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706085282688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038882976"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706038883312": {"type": "Concrete", "module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031003952": {"type": "Protocol", "module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085286720"}, "name": "__fspath__"}], "typeVars": [{"nodeId": ".1.139706031003952"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__fspath__"]}, "139706085286720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031003952", "args": [{"nodeId": ".1.139706031003952"}]}], "returnType": {"nodeId": ".1.139706031003952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706031003952": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706031003952", "variance": "COVARIANT"}, "139706038883648": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085287616"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.139706038883648"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__anext__"]}, "139706085287616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038883648", "args": [{"nodeId": ".1.139706038883648"}]}], "returnType": {"nodeId": ".1.139706038883648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706038883648": {"type": "TypeVar", "varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "139706131786304", "args": [{"nodeId": "A"}]}, "def": "139706038883648", "variance": "COVARIANT"}, "139706039231408": {"type": "Concrete", "module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014115744"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085443392"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085443840"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.139706039231408"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039231408"}]}], "isAbstract": false}, "139706014115744": {"type": "Overloaded", "items": [{"nodeId": "139706085442048"}, {"nodeId": "139706085442496"}, {"nodeId": "139706085442944"}]}, "139706085442048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231408", "args": [{"nodeId": ".1.139706039231408"}]}, {"nodeId": "N"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706014118096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.139706039231408": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039231408", "variance": "INVARIANT"}, "139706014118096": {"type": "Union", "items": [{"nodeId": ".1.139706039231408"}, {"nodeId": "N"}]}, "139706085442496": {"type": "Function", "typeVars": [".-1.139706085442496"], "argTypes": [{"nodeId": "139706039231408", "args": [{"nodeId": ".1.139706039231408"}]}, {"nodeId": "139706014156832"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085442496"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706014156832": {"type": "Function", "typeVars": [".-1.139706014156832"], "argTypes": [{"nodeId": ".-1.139706014156832"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706014156832": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014156832", "variance": "INVARIANT"}, ".-1.139706085442496": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085442496", "variance": "INVARIANT"}, "139706085442944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231408", "args": [{"nodeId": ".1.139706039231408"}]}, {"nodeId": "139706014156608"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706039231408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706014156608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.139706039231408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706085443392": {"type": "Function", "typeVars": [".-1.139706085443392"], "argTypes": [{"nodeId": ".-1.139706085443392"}], "returnType": {"nodeId": ".-1.139706085443392"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706085443392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085443392", "variance": "INVARIANT"}, "139706085443840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231408", "args": [{"nodeId": ".1.139706039231408"}]}], "returnType": {"nodeId": ".1.139706039231408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706038883984": {"type": "Protocol", "module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085450560"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.139706038883984"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__getitem__"]}, "139706085450560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038883984", "args": [{"nodeId": ".1.139706038883984"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706038883984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706038883984": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038883984", "variance": "COVARIANT"}, "139706039231744": {"type": "Concrete", "module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014118208"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085589056"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085589504"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.139706039231744"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039231744"}]}], "isAbstract": false}, "139706014118208": {"type": "Overloaded", "items": [{"nodeId": "139706085455040"}, {"nodeId": "139706085455488"}, {"nodeId": "139706085455936"}, {"nodeId": "139706085456384"}, {"nodeId": "139706085456832"}, {"nodeId": "139706085457280"}]}, "139706085455040": {"type": "Function", "typeVars": [".-1.139706085455040"], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014159072"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085455040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.139706039231744": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039231744", "variance": "INVARIANT"}, "139706014159072": {"type": "Function", "typeVars": [".-1.139706014159072"], "argTypes": [{"nodeId": ".-1.139706014159072"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706014159072": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159072", "variance": "INVARIANT"}, ".-1.139706085455040": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455040", "variance": "INVARIANT"}, "139706085455488": {"type": "Function", "typeVars": [".-1.139706085455488", ".-2.139706085455488"], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014158400"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085455488"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706085455488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "139706014158400": {"type": "Function", "typeVars": [".-1.139706014158400", ".-2.139706014158400"], "argTypes": [{"nodeId": ".-1.139706014158400"}, {"nodeId": ".-2.139706014158400"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706014158400": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014158400", "variance": "INVARIANT"}, ".-2.139706014158400": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014158400", "variance": "INVARIANT"}, ".-1.139706085455488": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455488", "variance": "INVARIANT"}, ".-2.139706085455488": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455488", "variance": "INVARIANT"}, "139706085455936": {"type": "Function", "typeVars": [".-1.139706085455936", ".-2.139706085455936", ".-3.139706085455936"], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014158624"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085455936"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706085455936"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706085455936"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "139706014158624": {"type": "Function", "typeVars": [".-1.139706014158624", ".-2.139706014158624", ".-3.139706014158624"], "argTypes": [{"nodeId": ".-1.139706014158624"}, {"nodeId": ".-2.139706014158624"}, {"nodeId": ".-3.139706014158624"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".-1.139706014158624": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014158624", "variance": "INVARIANT"}, ".-2.139706014158624": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014158624", "variance": "INVARIANT"}, ".-3.139706014158624": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014158624", "variance": "INVARIANT"}, ".-1.139706085455936": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455936", "variance": "INVARIANT"}, ".-2.139706085455936": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455936", "variance": "INVARIANT"}, ".-3.139706085455936": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085455936", "variance": "INVARIANT"}, "139706085456384": {"type": "Function", "typeVars": [".-1.139706085456384", ".-2.139706085456384", ".-3.139706085456384", ".-4.139706085456384"], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014159296"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085456384"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706085456384"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706085456384"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-4.139706085456384"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "139706014159296": {"type": "Function", "typeVars": [".-1.139706014159296", ".-2.139706014159296", ".-3.139706014159296", ".-4.139706014159296"], "argTypes": [{"nodeId": ".-1.139706014159296"}, {"nodeId": ".-2.139706014159296"}, {"nodeId": ".-3.139706014159296"}, {"nodeId": ".-4.139706014159296"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, ".-1.139706014159296": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159296", "variance": "INVARIANT"}, ".-2.139706014159296": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159296", "variance": "INVARIANT"}, ".-3.139706014159296": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159296", "variance": "INVARIANT"}, ".-4.139706014159296": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159296", "variance": "INVARIANT"}, ".-1.139706085456384": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456384", "variance": "INVARIANT"}, ".-2.139706085456384": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456384", "variance": "INVARIANT"}, ".-3.139706085456384": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456384", "variance": "INVARIANT"}, ".-4.139706085456384": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456384", "variance": "INVARIANT"}, "139706085456832": {"type": "Function", "typeVars": [".-1.139706085456832", ".-2.139706085456832", ".-3.139706085456832", ".-4.139706085456832", ".-5.139706085456832"], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014159520"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706085456832"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706085456832"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706085456832"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-4.139706085456832"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-5.139706085456832"}]}], "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]}, "139706014159520": {"type": "Function", "typeVars": [".-1.139706014159520", ".-2.139706014159520", ".-3.139706014159520", ".-4.139706014159520", ".-5.139706014159520"], "argTypes": [{"nodeId": ".-1.139706014159520"}, {"nodeId": ".-2.139706014159520"}, {"nodeId": ".-3.139706014159520"}, {"nodeId": ".-4.139706014159520"}, {"nodeId": ".-5.139706014159520"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}, ".-1.139706014159520": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159520", "variance": "INVARIANT"}, ".-2.139706014159520": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159520", "variance": "INVARIANT"}, ".-3.139706014159520": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159520", "variance": "INVARIANT"}, ".-4.139706014159520": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159520", "variance": "INVARIANT"}, ".-5.139706014159520": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706014159520", "variance": "INVARIANT"}, ".-1.139706085456832": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456832", "variance": "INVARIANT"}, ".-2.139706085456832": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456832", "variance": "INVARIANT"}, ".-3.139706085456832": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456832", "variance": "INVARIANT"}, ".-4.139706085456832": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456832", "variance": "INVARIANT"}, ".-5.139706085456832": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085456832", "variance": "INVARIANT"}, "139706085457280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}, {"nodeId": "139706014159744"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "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"]}, "139706014159744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706085589056": {"type": "Function", "typeVars": [".-1.139706085589056"], "argTypes": [{"nodeId": ".-1.139706085589056"}], "returnType": {"nodeId": ".-1.139706085589056"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706085589056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085589056", "variance": "INVARIANT"}, "139706085589504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039231744", "args": [{"nodeId": ".1.139706039231744"}]}], "returnType": {"nodeId": ".1.139706039231744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031004288": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085600256"}, "name": "flush"}], "typeVars": [{"nodeId": ".1.139706031004288"}], "bases": [{"nodeId": "139706030552928", "args": [{"nodeId": ".1.139706031004288"}]}], "protocolMembers": ["flush", "write"]}, "139706085600256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031004288", "args": [{"nodeId": ".1.139706031004288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706031004288": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706031004288", "variance": "CONTRAVARIANT"}, "139706038884320": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085601600"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.139706038884320"}, {"nodeId": ".2.139706038884320"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__pow__"]}, "139706085601600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038884320", "args": [{"nodeId": ".1.139706038884320"}, {"nodeId": ".2.139706038884320"}]}, {"nodeId": ".1.139706038884320"}], "returnType": {"nodeId": ".2.139706038884320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706038884320": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884320", "variance": "CONTRAVARIANT"}, ".2.139706038884320": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884320", "variance": "COVARIANT"}, "139706038884656": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085602048"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.139706038884656"}, {"nodeId": ".2.139706038884656"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__pow__"]}, "139706085602048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038884656", "args": [{"nodeId": ".1.139706038884656"}, {"nodeId": ".2.139706038884656"}]}, {"nodeId": ".1.139706038884656"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.139706038884656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".1.139706038884656": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884656", "variance": "CONTRAVARIANT"}, ".2.139706038884656": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884656", "variance": "COVARIANT"}, "139706038884992": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085602496"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.139706038884992"}, {"nodeId": ".2.139706038884992"}, {"nodeId": ".3.139706038884992"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__pow__"]}, "139706085602496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038884992", "args": [{"nodeId": ".1.139706038884992"}, {"nodeId": ".2.139706038884992"}, {"nodeId": ".3.139706038884992"}]}, {"nodeId": ".1.139706038884992"}, {"nodeId": ".2.139706038884992"}], "returnType": {"nodeId": ".3.139706038884992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.139706038884992": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884992", "variance": "CONTRAVARIANT"}, ".2.139706038884992": {"type": "TypeVar", "varName": "_M", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884992", "variance": "CONTRAVARIANT"}, ".3.139706038884992": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038884992", "variance": "COVARIANT"}, "139706039232080": {"type": "Concrete", "module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014457792"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085814592"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085815040"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085815488"}, "name": "__length_hint__"}], "typeVars": [{"nodeId": ".1.139706039232080"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039232080"}]}], "isAbstract": false}, "139706014457792": {"type": "Overloaded", "items": [{"nodeId": "139706085813696"}, {"nodeId": "139706085814144"}]}, "139706085813696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232080", "args": [{"nodeId": ".1.139706039232080"}]}, {"nodeId": "139706131785632", "args": [{"nodeId": ".1.139706039232080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.139706039232080": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039232080", "variance": "INVARIANT"}, "139706085814144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232080", "args": [{"nodeId": ".1.139706039232080"}]}, {"nodeId": "139706030549568", "args": [{"nodeId": ".1.139706039232080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706030549568": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081032704"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081033152"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.139706030549568"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__getitem__", "__len__"]}, "139706081032704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030549568", "args": [{"nodeId": ".1.139706030549568"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030549568": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030549568", "variance": "COVARIANT"}, "139706081033152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030549568", "args": [{"nodeId": ".1.139706030549568"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706030549568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706085814592": {"type": "Function", "typeVars": [".-1.139706085814592"], "argTypes": [{"nodeId": ".-1.139706085814592"}], "returnType": {"nodeId": ".-1.139706085814592"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706085814592": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706085814592", "variance": "INVARIANT"}, "139706085815040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232080", "args": [{"nodeId": ".1.139706039232080"}]}], "returnType": {"nodeId": ".1.139706039232080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706085815488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232080", "args": [{"nodeId": ".1.139706039232080"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706038885328": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085816384"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.139706038885328"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__round__"]}, "139706085816384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038885328", "args": [{"nodeId": ".1.139706038885328"}]}], "returnType": {"nodeId": ".1.139706038885328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706038885328": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038885328", "variance": "COVARIANT"}, "139706038885664": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706085816832"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.139706038885664"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__round__"]}, "139706085816832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038885664", "args": [{"nodeId": ".1.139706038885664"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706038885664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.139706038885664": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706038885664", "variance": "COVARIANT"}, "139706031004624": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030546880", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139706030547216", "args": [{"nodeId": "139706038878944"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}, "139706030546880": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081029120"}, "name": "__add__"}], "typeVars": [{"nodeId": ".1.139706030546880"}, {"nodeId": ".2.139706030546880"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__add__"]}, "139706081029120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030546880", "args": [{"nodeId": ".1.139706030546880"}, {"nodeId": ".2.139706030546880"}]}, {"nodeId": ".1.139706030546880"}], "returnType": {"nodeId": ".2.139706030546880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030546880": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030546880", "variance": "CONTRAVARIANT"}, ".2.139706030546880": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030546880", "variance": "COVARIANT"}, "139706030547216": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081029568"}, "name": "__radd__"}], "typeVars": [{"nodeId": ".1.139706030547216"}, {"nodeId": ".2.139706030547216"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__radd__"]}, "139706081029568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030547216", "args": [{"nodeId": ".1.139706030547216"}, {"nodeId": ".2.139706030547216"}]}, {"nodeId": ".1.139706030547216"}], "returnType": {"nodeId": ".2.139706030547216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030547216": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547216", "variance": "CONTRAVARIANT"}, ".2.139706030547216": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547216", "variance": "COVARIANT"}, "139706039232416": {"type": "Concrete", "module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706014459920"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080700096"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080700544"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.139706039232416"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706039232416"}]}], "isAbstract": false}, "139706014459920": {"type": "Overloaded", "items": [{"nodeId": "139706080694720"}, {"nodeId": "139706080695168"}, {"nodeId": "139706080695616"}, {"nodeId": "139706080696064"}, {"nodeId": "139706080696512"}, {"nodeId": "139706080696960"}]}, "139706080694720": {"type": "Function", "typeVars": [".-1.139706080694720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706080694720"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706014462048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}, ".-1.139706080694720": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080694720", "variance": "INVARIANT"}, "139706014462048": {"type": "Tuple", "items": [{"nodeId": ".-1.139706080694720"}]}, "139706080695168": {"type": "Function", "typeVars": [".-1.139706080695168", ".-2.139706080695168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706080695168"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706080695168"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706014462272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}, ".-1.139706080695168": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080695168", "variance": "INVARIANT"}, ".-2.139706080695168": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080695168", "variance": "INVARIANT"}, "139706014462272": {"type": "Tuple", "items": [{"nodeId": ".-1.139706080695168"}, {"nodeId": ".-2.139706080695168"}]}, "139706080695616": {"type": "Function", "typeVars": [".-1.139706080695616", ".-2.139706080695616", ".-3.139706080695616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706080695616"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706080695616"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706080695616"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706014462496"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}, ".-1.139706080695616": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080695616", "variance": "INVARIANT"}, ".-2.139706080695616": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080695616", "variance": "INVARIANT"}, ".-3.139706080695616": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080695616", "variance": "INVARIANT"}, "139706014462496": {"type": "Tuple", "items": [{"nodeId": ".-1.139706080695616"}, {"nodeId": ".-2.139706080695616"}, {"nodeId": ".-3.139706080695616"}]}, "139706080696064": {"type": "Function", "typeVars": [".-1.139706080696064", ".-2.139706080696064", ".-3.139706080696064", ".-4.139706080696064"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706080696064"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706080696064"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706080696064"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-4.139706080696064"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706014462720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}, ".-1.139706080696064": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696064", "variance": "INVARIANT"}, ".-2.139706080696064": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696064", "variance": "INVARIANT"}, ".-3.139706080696064": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696064", "variance": "INVARIANT"}, ".-4.139706080696064": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696064", "variance": "INVARIANT"}, "139706014462720": {"type": "Tuple", "items": [{"nodeId": ".-1.139706080696064"}, {"nodeId": ".-2.139706080696064"}, {"nodeId": ".-3.139706080696064"}, {"nodeId": ".-4.139706080696064"}]}, "139706080696512": {"type": "Function", "typeVars": [".-1.139706080696512", ".-2.139706080696512", ".-3.139706080696512", ".-4.139706080696512", ".-5.139706080696512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-1.139706080696512"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-2.139706080696512"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-3.139706080696512"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-4.139706080696512"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": ".-5.139706080696512"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706014462944"}]}, "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.139706080696512": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696512", "variance": "INVARIANT"}, ".-2.139706080696512": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696512", "variance": "INVARIANT"}, ".-3.139706080696512": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696512", "variance": "INVARIANT"}, ".-4.139706080696512": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696512", "variance": "INVARIANT"}, ".-5.139706080696512": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080696512", "variance": "INVARIANT"}, "139706014462944": {"type": "Tuple", "items": [{"nodeId": ".-1.139706080696512"}, {"nodeId": ".-2.139706080696512"}, {"nodeId": ".-3.139706080696512"}, {"nodeId": ".-4.139706080696512"}, {"nodeId": ".-5.139706080696512"}]}, "139706080696960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039232416", "args": [{"nodeId": "139706038881632", "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"]}, "139706080700096": {"type": "Function", "typeVars": [".-1.139706080700096"], "argTypes": [{"nodeId": ".-1.139706080700096"}], "returnType": {"nodeId": ".-1.139706080700096"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706080700096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706080700096", "variance": "INVARIANT"}, "139706080700544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039232416", "args": [{"nodeId": ".1.139706039232416"}]}], "returnType": {"nodeId": ".1.139706039232416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706039232416": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039232416", "variance": "COVARIANT"}, "139706038886000": {"type": "Concrete", "module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706038886672": {"type": "Concrete", "module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038886336"}], "isAbstract": false}, "139706038887008": {"type": "Concrete", "module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038886336"}], "isAbstract": false}, "139706038887344": {"type": "Concrete", "module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031064112"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038886336"}], "isAbstract": false}, "139706031064112": {"type": "TypeAlias", "target": {"nodeId": "139706043509424"}}, "139706043509424": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706038887680": {"type": "Concrete", "module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038886336"}], "isAbstract": false}, "139706038888016": {"type": "Concrete", "module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038888352": {"type": "Concrete", "module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038888688": {"type": "Concrete", "module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038889024": {"type": "Concrete", "module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038889360": {"type": "Concrete", "module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080703680"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131780928"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706080703680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038889360"}, {"nodeId": "139706131780928"}, {"nodeId": "139706014465184"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}, "139706014465184": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706038889696": {"type": "Concrete", "module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038890032": {"type": "Concrete", "module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038890368": {"type": "Concrete", "module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080704128"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043705360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706080704128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038890368"}, {"nodeId": "139706131780928"}, {"nodeId": "139706014465296"}, {"nodeId": "139706014465408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}, "139706014465296": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706014465408": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043703904": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043705360": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706038890704": {"type": "Concrete", "module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038891040": {"type": "Concrete", "module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038891376": {"type": "Concrete", "module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038891712": {"type": "Concrete", "module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038892048": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038892384": {"type": "Concrete", "module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038892720": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043701440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043703792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043701664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043701552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706043703344": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706043703232": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706043701440": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043703792": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043701664": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706043701552": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706038893056": {"type": "Concrete", "module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038893392": {"type": "Concrete", "module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038893728": {"type": "Concrete", "module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706038894064": {"type": "Concrete", "module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888688"}], "isAbstract": false}, "139706039074880": {"type": "Concrete", "module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888688"}], "isAbstract": false}, "139706039075216": {"type": "Concrete", "module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888688"}], "isAbstract": false}, "139706039075552": {"type": "Concrete", "module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038890368"}], "isAbstract": false}, "139706039075888": {"type": "Concrete", "module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038890704"}], "isAbstract": false}, "139706039076224": {"type": "Concrete", "module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038890704"}], "isAbstract": false}, "139706039076560": {"type": "Concrete", "module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038891376"}], "isAbstract": false}, "139706039076896": {"type": "Concrete", "module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039077232": {"type": "Concrete", "module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039077568": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039077904": {"type": "Concrete", "module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039077568"}], "isAbstract": false}, "139706039078240": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039077568"}], "isAbstract": false}, "139706039078576": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039077568"}], "isAbstract": false}, "139706039078912": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039077568"}], "isAbstract": false}, "139706039079248": {"type": "Concrete", "module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039079584": {"type": "Concrete", "module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039079920": {"type": "Concrete", "module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039080256": {"type": "Concrete", "module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039080592": {"type": "Concrete", "module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039080928": {"type": "Concrete", "module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039081264": {"type": "Concrete", "module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039081600": {"type": "Concrete", "module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}], "isAbstract": false}, "139706039081936": {"type": "Concrete", "module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038892048"}], "isAbstract": false}, "139706039082272": {"type": "Concrete", "module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038892048"}], "isAbstract": false}, "139706039082608": {"type": "Concrete", "module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038892720"}], "isAbstract": false}, "139706039082944": {"type": "Concrete", "module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039082608"}], "isAbstract": false}, "139706039083280": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038893728"}], "isAbstract": false}, "139706039083616": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039229728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080704576"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039083280"}], "isAbstract": false}, "139706080704576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039083616"}, {"nodeId": "139706038880624"}, {"nodeId": "139706014465520"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "139706014465520": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706039083952": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080705024"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039083280"}], "isAbstract": false}, "139706080705024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039083952"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "139706039084288": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706080705472"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039083280"}], "isAbstract": false}, "139706080705472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039084288"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "139706039084624": {"type": "Concrete", "module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706039084960": {"type": "Concrete", "module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039085296": {"type": "Concrete", "module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039085632": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039085968": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039086304": {"type": "Concrete", "module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039086640": {"type": "Concrete", "module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039086976": {"type": "Concrete", "module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039087312": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039087648": {"type": "Concrete", "module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039087984": {"type": "Concrete", "module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706039088320": {"type": "Concrete", "module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039084624"}], "isAbstract": false}, "139706030544192": {"type": "Protocol", "module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081025984"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706081025984": {"type": "Function", "typeVars": [".-1.139706081025984"], "argTypes": [{"nodeId": "139706030544192"}, {"nodeId": ".-1.139706081025984"}], "returnType": {"nodeId": ".-1.139706081025984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706081025984": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081025984", "variance": "INVARIANT"}, "139706030544528": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081026432"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.139706030544528"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__next__"]}, "139706081026432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030544528", "args": [{"nodeId": ".1.139706030544528"}]}], "returnType": {"nodeId": ".1.139706030544528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030544528": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030544528", "variance": "COVARIANT"}, "139706030544864": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081026880"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.139706030544864"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__anext__"]}, "139706081026880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030544864", "args": [{"nodeId": ".1.139706030544864"}]}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".1.139706030544864"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030544864": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030544864", "variance": "COVARIANT"}, "139706030545872": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081028224"}, "name": "__le__"}], "typeVars": [{"nodeId": ".1.139706030545872"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__le__"]}, "139706081028224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030545872", "args": [{"nodeId": ".1.139706030545872"}]}, {"nodeId": ".1.139706030545872"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030545872": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030545872", "variance": "CONTRAVARIANT"}, "139706030546208": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081028672"}, "name": "__ge__"}], "typeVars": [{"nodeId": ".1.139706030546208"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__ge__"]}, "139706081028672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030546208", "args": [{"nodeId": ".1.139706030546208"}]}, {"nodeId": ".1.139706030546208"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030546208": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030546208", "variance": "CONTRAVARIANT"}, "139706030546544": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030545200", "args": [{"nodeId": "A"}]}, {"nodeId": "139706030545536", "args": [{"nodeId": "A"}]}, {"nodeId": "139706030545872", "args": [{"nodeId": "A"}]}, {"nodeId": "139706030546208", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}, "139706030547552": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081030016"}, "name": "__sub__"}], "typeVars": [{"nodeId": ".1.139706030547552"}, {"nodeId": ".2.139706030547552"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__sub__"]}, "139706081030016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030547552", "args": [{"nodeId": ".1.139706030547552"}, {"nodeId": ".2.139706030547552"}]}, {"nodeId": ".1.139706030547552"}], "returnType": {"nodeId": ".2.139706030547552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030547552": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547552", "variance": "CONTRAVARIANT"}, ".2.139706030547552": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547552", "variance": "COVARIANT"}, "139706030547888": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081030464"}, "name": "__rsub__"}], "typeVars": [{"nodeId": ".1.139706030547888"}, {"nodeId": ".2.139706030547888"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__rsub__"]}, "139706081030464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030547888", "args": [{"nodeId": ".1.139706030547888"}, {"nodeId": ".2.139706030547888"}]}, {"nodeId": ".1.139706030547888"}], "returnType": {"nodeId": ".2.139706030547888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030547888": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547888", "variance": "CONTRAVARIANT"}, ".2.139706030547888": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030547888", "variance": "COVARIANT"}, "139706030548224": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081030912"}, "name": "__divmod__"}], "typeVars": [{"nodeId": ".1.139706030548224"}, {"nodeId": ".2.139706030548224"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__divmod__"]}, "139706081030912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030548224", "args": [{"nodeId": ".1.139706030548224"}, {"nodeId": ".2.139706030548224"}]}, {"nodeId": ".1.139706030548224"}], "returnType": {"nodeId": ".2.139706030548224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030548224": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030548224", "variance": "CONTRAVARIANT"}, ".2.139706030548224": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030548224", "variance": "COVARIANT"}, "139706030548560": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081031360"}, "name": "__rdivmod__"}], "typeVars": [{"nodeId": ".1.139706030548560"}, {"nodeId": ".2.139706030548560"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__rdivmod__"]}, "139706081031360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030548560", "args": [{"nodeId": ".1.139706030548560"}, {"nodeId": ".2.139706030548560"}]}, {"nodeId": ".1.139706030548560"}], "returnType": {"nodeId": ".2.139706030548560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.139706030548560": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030548560", "variance": "CONTRAVARIANT"}, ".2.139706030548560": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030548560", "variance": "COVARIANT"}, "139706030548896": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081031808"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.139706030548896"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__iter__"]}, "139706081031808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030548896", "args": [{"nodeId": ".1.139706030548896"}]}], "returnType": {"nodeId": ".1.139706030548896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030548896": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030548896", "variance": "COVARIANT"}, "139706030549232": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081032256"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.139706030549232"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__aiter__"]}, "139706081032256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030549232", "args": [{"nodeId": ".1.139706030549232"}]}], "returnType": {"nodeId": ".1.139706030549232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030549232": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030549232", "variance": "COVARIANT"}, "139706030550240": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119372864"}, "name": "items"}], "typeVars": [{"nodeId": ".1.139706030550240"}, {"nodeId": ".2.139706030550240"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["items"]}, "139706119372864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030550240", "args": [{"nodeId": ".1.139706030550240"}, {"nodeId": ".2.139706030550240"}]}], "returnType": {"nodeId": "139706131789328", "args": [{"nodeId": "139706018395440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030550240": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550240", "variance": "COVARIANT"}, ".2.139706030550240": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550240", "variance": "COVARIANT"}, "139706018395440": {"type": "Tuple", "items": [{"nodeId": ".1.139706030550240"}, {"nodeId": ".2.139706030550240"}]}, "139706030550912": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119374208"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119374656"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.139706030550912"}, {"nodeId": ".2.139706030550912"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__contains__", "__getitem__"]}, "139706119374208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030550912", "args": [{"nodeId": ".1.139706030550912"}, {"nodeId": ".2.139706030550912"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.139706030550912": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550912", "variance": "CONTRAVARIANT"}, ".2.139706030550912": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030550912", "variance": "COVARIANT"}, "139706119374656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030550912", "args": [{"nodeId": ".1.139706030550912"}, {"nodeId": ".2.139706030550912"}]}, {"nodeId": ".1.139706030550912"}], "returnType": {"nodeId": ".2.139706030550912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706030551248": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119375104"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119375552"}, "name": "__delitem__"}], "typeVars": [{"nodeId": ".1.139706030551248"}, {"nodeId": ".2.139706030551248"}], "bases": [{"nodeId": "139706030550912", "args": [{"nodeId": ".1.139706030551248"}, {"nodeId": ".2.139706030551248"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}, "139706119375104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030551248", "args": [{"nodeId": ".1.139706030551248"}, {"nodeId": ".2.139706030551248"}]}, {"nodeId": ".1.139706030551248"}, {"nodeId": ".2.139706030551248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.139706030551248": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030551248", "variance": "CONTRAVARIANT"}, ".2.139706030551248": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030551248", "variance": "INVARIANT"}, "139706119375552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030551248", "args": [{"nodeId": ".1.139706030551248"}, {"nodeId": ".2.139706030551248"}]}, {"nodeId": ".1.139706030551248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706030551584": {"type": "Protocol", "module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119376000"}, "name": "fileno"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["fileno"]}, "139706119376000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030551584"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706030552256": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119376896"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.139706030552256"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["readline"]}, "139706119376896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030552256", "args": [{"nodeId": ".1.139706030552256"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".1.139706030552256"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.139706030552256": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030552256", "variance": "COVARIANT"}, "139706030552592": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119377344"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.139706030552592"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["readline"]}, "139706119377344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030552592", "args": [{"nodeId": ".1.139706030552592"}]}], "returnType": {"nodeId": ".1.139706030552592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030552592": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030552592", "variance": "COVARIANT"}, "139706030553264": {"type": "Concrete", "module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119378688"}, "name": "__new__"}], "typeVars": [{"nodeId": ".1.139706030553264"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706119378688": {"type": "Function", "typeVars": [".-1.139706119378688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": ".1.139706030553264"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139706119378688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}, ".1.139706030553264": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030553264", "variance": "COVARIANT"}, ".-1.139706119378688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706119378688", "variance": "INVARIANT"}, "139706043670128": {"type": "Protocol", "module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706119379808"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["find_spec"]}, "139706119379808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043670128"}, {"nodeId": "139706038880624"}, {"nodeId": "139706026732544"}, {"nodeId": "139706026732656"}], "returnType": {"nodeId": "139706026732768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "139706026732544": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706026732656": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706043664080": {"type": "Concrete", "module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043511328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005542208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043511888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043511664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131788992", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043510320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101873376"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101873824"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043511328": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706005542208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043511888": {"type": "Union", "items": [{"nodeId": "139706043663744"}, {"nodeId": "N"}]}, "139706043663744": {"type": "Protocol", "module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101872480"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["load_module"]}, "139706101872480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663744"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706043511664": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043510320": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139706039492544": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064128032"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031206272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031206496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047547984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047548096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984412224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064128928"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706064128032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492544"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022539696"}, {"nodeId": "139706022539808"}, {"nodeId": "A"}, {"nodeId": "139706022540032"}], "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"]}, "139706022539696": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706039493552": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060122240"}, "name": "load_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060122688"}, "name": "module_repr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060123136"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060123584"}, "name": "exec_module"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706060122240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039493552"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706060122688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039493552"}, {"nodeId": "139706043664080"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "139706060123136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039493552"}, {"nodeId": "139706039492544"}], "returnType": {"nodeId": "139706022822288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "139706022822288": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706060123584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039493552"}, {"nodeId": "139706043664080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "139706022539808": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022540032": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706031206272": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706031206496": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706047547984": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706047548096": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705984412224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492544"}], "returnType": {"nodeId": "139706022540144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022540144": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706064128928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492544"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706101873376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}, {"nodeId": "139706038880624"}, {"nodeId": "139706026425952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}, "139706026425952": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706101873824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706026732768": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139706031004960": {"type": "Concrete", "module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005945728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006012640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006012864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006013088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006013312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006013536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006013760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006013984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006014208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006014432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006014656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006014880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006015104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006015328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006015552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006016224"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706005945728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026732992"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026732992": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006012640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733104"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733104": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006012864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733216"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733216": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006013088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733328"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733328": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006013312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733440"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733440": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006013536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733552"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733552": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006013760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733664"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733664": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006013984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733776"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733776": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006014208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026733888"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026733888": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006014432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734000"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734000": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006014656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734112"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734112": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006014880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734224"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734224": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006015104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734336"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734336": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006015328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734448"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734448": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006015552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734560"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734560": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006016224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734672"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734672": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031005296": {"type": "Concrete", "module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006017344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006017792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006018016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006018240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006018464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006018688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006018912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006019136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006019360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006019584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006019808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038879280"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}], "isAbstract": false}, "139706006017344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734784"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734784": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006017792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026734896"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026734896": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006018016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735008"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735008": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006018240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735120"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735120": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006018464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735232"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735232": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006018688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735344"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735344": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006018912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735456"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735456": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006019136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735568"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735568": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006019360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735680"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735680": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006019584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735792"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735792": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006019808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026735904"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026735904": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031005632": {"type": "Concrete", "module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006021152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006021376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006021600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006021824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006022048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006022272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006022496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006022720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006022944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706031071840"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}], "isAbstract": false}, "139706006021152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736016"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736016": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006021376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736128"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736128": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006021600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736240"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736240": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006021824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736352"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736352": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006022048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736464"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736464": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006022272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736576"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736576": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006022496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736688"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736688": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006022720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736800"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736800": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006022944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026736912"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026736912": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031071840": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "139706038878944"}]}, "139706043670464": {"type": "Concrete", "module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031070608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093346528"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031070608": {"type": "TypeAlias", "target": {"nodeId": "139706031399408"}}, "139706031399408": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706093346528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043670464"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706031005968": {"type": "Concrete", "module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006024960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006025184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006025408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006025632"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706006024960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026737136"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026737136": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006025184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026737248"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026737248": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006025408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026737360"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026737360": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706006025632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026737472"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026737472": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031006304": {"type": "Concrete", "module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006025856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006026976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006027200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006027424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006027648"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}], "isAbstract": false}, "139706006025856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026868800"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026868800": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706006026976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026868912"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026868912": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706006027200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026869024"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026869024": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706006027424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026869136"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026869136": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706006027648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026869248"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026869248": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043670800": {"type": "Concrete", "module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031402432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031076320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031076544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043086688"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031402432": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706031076320": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706031076544": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706043086688": {"type": "Union", "items": [{"nodeId": "139706131780928"}, {"nodeId": "N"}]}, "139706031006640": {"type": "Concrete", "module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006112736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706006113184"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706043085792"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706031203360"}]}], "isAbstract": false}, "139706006112736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026871824"}], "returnType": {"nodeId": "139706026871936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026871824": {"type": "Tuple", "items": [{"nodeId": "139706031065904"}, {"nodeId": "139706031073296"}]}, "139706031065904": {"type": "TypeAlias", "target": {"nodeId": "139706043085680"}}, "139706043085680": {"type": "Union", "items": [{"nodeId": "139706043383392"}, {"nodeId": "N"}]}, "139706043383392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706031073296": {"type": "TypeAlias", "target": {"nodeId": "139706043085680"}}, "139706026871936": {"type": "TypeAlias", "target": {"nodeId": "139706043085680"}}, "139706006113184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706026872048"}], "returnType": {"nodeId": "139706026872160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026872048": {"type": "Tuple", "items": [{"nodeId": "139706031065904"}, {"nodeId": "139706031073296"}]}, "139706026872160": {"type": "TypeAlias", "target": {"nodeId": "139706043085680"}}, "139706043085792": {"type": "TypeAlias", "target": {"nodeId": "139706043085680"}}, "139706031203360": {"type": "Union", "items": [{"nodeId": "139706014165792"}, {"nodeId": "N"}]}, "139706014165792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131787648", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706039088992": {"type": "Concrete", "module": "abc", "simpleName": "abstractclassmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093646144"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.139706039088992"}], "bases": [{"nodeId": "139706131791344", "args": [{"nodeId": ".1.139706039088992"}]}], "isAbstract": false}, "139706093646144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039088992", "args": [{"nodeId": ".1.139706039088992"}]}, {"nodeId": "139706023013152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.139706039088992": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039088992", "variance": "COVARIANT"}, "139706023013152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706039088992"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706039089328": {"type": "Concrete", "module": "abc", "simpleName": "abstractstaticmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093646592"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.139706039089328"}], "bases": [{"nodeId": "139706131791008", "args": [{"nodeId": ".1.139706039089328"}]}], "isAbstract": false}, "139706093646592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039089328", "args": [{"nodeId": ".1.139706039089328"}]}, {"nodeId": "139706023012480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.139706039089328": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706039089328", "variance": "COVARIANT"}, "139706023012480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139706039089328"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706039089664": {"type": "Concrete", "module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038882976"}], "isAbstract": false}, "139706039090000": {"type": "Concrete", "module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706030418160": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706093648608"}, "name": "__enter__"}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980657376"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706030418160"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__enter__", "__exit__"]}, "139706093648608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030418160"}]}], "returnType": {"nodeId": ".1.139706030418160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.139706030418160": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030418160", "variance": "COVARIANT"}, "139705980657376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030418160"}]}, {"nodeId": "139706017822336"}, {"nodeId": "139706017822448"}, {"nodeId": "139706017822560"}], "returnType": {"nodeId": "139706017822672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706017822336": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017822448": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017822560": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706017822672": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706030418496": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706023005536"}, "name": "__aenter__"}, {"kind": "Variable", "name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705980654912"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706030418496"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__aenter__", "__aexit__"]}, "139706023005536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030418496", "args": [{"nodeId": ".1.139706030418496"}]}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706030418496"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706030418496": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030418496", "variance": "COVARIANT"}, "139705980654912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030418496", "args": [{"nodeId": ".1.139706030418496"}]}, {"nodeId": "139706017822896"}, {"nodeId": "139706017823008"}, {"nodeId": "139706017823120"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139706017823232"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "139706017822896": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017823008": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017823120": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706017823232": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706030418832": {"type": "Concrete", "module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081215200"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706081215200": {"type": "Function", "typeVars": [".-1.139706081215200"], "argTypes": [{"nodeId": "139706030418832"}, {"nodeId": ".-1.139706081215200"}], "returnType": {"nodeId": ".-1.139706081215200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.139706081215200": {"type": "TypeVar", "varName": "_F", "values": [], "upperBound": {"nodeId": "139706106000128"}, "def": "139706081215200", "variance": "INVARIANT"}, "139706106000128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706030419168": {"type": "Concrete", "module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081215648"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706030419168"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706055604736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081216096"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.139706030419168"}], "bases": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030419168"}]}, {"nodeId": "139706030418832"}], "isAbstract": false}, "139706081215648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030419168", "args": [{"nodeId": ".1.139706030419168"}]}, {"nodeId": "139706023005312"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.139706030419168": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030419168", "variance": "COVARIANT"}, "139706023005312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706030419168"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706055604736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706030419168"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706081216096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030419168", "args": [{"nodeId": ".1.139706030419168"}]}, {"nodeId": "139706017823792"}, {"nodeId": "139706017823904"}, {"nodeId": "139706017824016"}], "returnType": {"nodeId": "139706017824128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706017823792": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017823904": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017824016": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706017824128": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706030419504": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081216992"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706081216992": {"type": "Function", "typeVars": [".-1.139706081216992"], "argTypes": [{"nodeId": "139706030419504"}, {"nodeId": ".-1.139706081216992"}], "returnType": {"nodeId": ".-1.139706081216992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.139706081216992": {"type": "TypeVar", "varName": "_AF", "values": [], "upperBound": {"nodeId": "139706106000352"}, "def": "139706081216992", "variance": "INVARIANT"}, "139706106000352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706030419840": {"type": "Concrete", "module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081217440"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706030419840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706055602496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706023006880"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.139706030419840"}], "bases": [{"nodeId": "139706030418496", "args": [{"nodeId": ".1.139706030419840"}]}, {"nodeId": "139706030419504"}], "isAbstract": false}, "139706081217440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030419840", "args": [{"nodeId": ".1.139706030419840"}]}, {"nodeId": "139706023007104"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.139706030419840": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030419840", "variance": "COVARIANT"}, "139706023007104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131787312", "args": [{"nodeId": ".1.139706030419840"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706055602496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706030419840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706023006880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030419840", "args": [{"nodeId": ".1.139706030419840"}]}, {"nodeId": "139706017824576"}, {"nodeId": "139706017988672"}, {"nodeId": "139706017988784"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139706017988896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}, "139706017824576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017988672": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017988784": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706017988896": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706030420176": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081219680"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["close"]}, "139706081219680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030420176"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706030420512": {"type": "Concrete", "module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081220128"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081220576"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.139706030420512"}], "bases": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030420512"}]}], "isAbstract": false}, "139706081220128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030420512", "args": [{"nodeId": ".1.139706030420512"}]}, {"nodeId": ".1.139706030420512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.139706030420512": {"type": "TypeVar", "varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "139706030420176"}, "def": "139706030420512", "variance": "INVARIANT"}, "139706081220576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030420512", "args": [{"nodeId": ".1.139706030420512"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "139706030420848": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081221024"}, "name": "aclose"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["aclose"]}, "139706081221024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030420848"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706030421184": {"type": "Concrete", "module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081221472"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706023007776"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.139706030421184"}], "bases": [{"nodeId": "139706030418496", "args": [{"nodeId": ".1.139706030421184"}]}], "isAbstract": false}, "139706081221472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421184", "args": [{"nodeId": ".1.139706030421184"}]}, {"nodeId": ".1.139706030421184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.139706030421184": {"type": "TypeVar", "varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "139706030420848"}, "def": "139706030421184", "variance": "INVARIANT"}, "139706023007776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421184", "args": [{"nodeId": ".1.139706030421184"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}, "139706030421520": {"type": "Concrete", "module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081222368"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081222816"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "139706030418160", "args": [{"nodeId": "N"}]}], "isAbstract": false}, "139706081222368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421520"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}, "139706081222816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421520"}, {"nodeId": "139706017989232"}, {"nodeId": "139706017989344"}, {"nodeId": "139706017989456"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706017989232": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017989344": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017989456": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706030421856": {"type": "Concrete", "module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081223264"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081223712"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.139706030421856"}], "bases": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030421856"}]}], "isAbstract": false}, "139706081223264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421856", "args": [{"nodeId": ".1.139706030421856"}]}, {"nodeId": ".1.139706030421856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}, ".1.139706030421856": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "139706051936880"}, "def": "139706030421856", "variance": "INVARIANT"}, "139706051936880": {"type": "Union", "items": [{"nodeId": "139706039226704", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706081223712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030421856", "args": [{"nodeId": ".1.139706030421856"}]}, {"nodeId": "139706017989568"}, {"nodeId": "139706017989680"}, {"nodeId": "139706017989792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706017989568": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017989680": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017989792": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706030422192": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.139706030422192"}], "bases": [{"nodeId": "139706030421856", "args": [{"nodeId": ".1.139706030422192"}]}], "isAbstract": false}, ".1.139706030422192": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "139706051936880"}, "def": "139706030422192", "variance": "INVARIANT"}, "139706030422528": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.139706030422528"}], "bases": [{"nodeId": "139706030421856", "args": [{"nodeId": ".1.139706030422528"}]}], "isAbstract": false}, ".1.139706030422528": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "139706051936880"}, "def": "139706030422528", "variance": "INVARIANT"}, "139706030422864": {"type": "Concrete", "module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081224160"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081224608"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081225056"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081225504"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081225952"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081226400"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081226848"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706081224160": {"type": "Function", "typeVars": [".-1.139706081224160"], "argTypes": [{"nodeId": "139706030422864"}, {"nodeId": "139706030418160", "args": [{"nodeId": ".-1.139706081224160"}]}], "returnType": {"nodeId": ".-1.139706081224160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.139706081224160": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081224160", "variance": "INVARIANT"}, "139706081224608": {"type": "Function", "typeVars": [".-1.139706081224608"], "argTypes": [{"nodeId": "139706030422864"}, {"nodeId": ".-1.139706081224608"}], "returnType": {"nodeId": ".-1.139706081224608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.139706081224608": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139706031309984"}, "def": "139706081224608", "variance": "INVARIANT"}, "139706031309984": {"type": "Union", "items": [{"nodeId": "139706030418160", "args": [{"nodeId": "A"}]}, {"nodeId": "139706031309760"}]}, "139706031309760": {"type": "TypeAlias", "target": {"nodeId": "139706048143968"}}, "139706048143968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706051938448"}, {"nodeId": "139706051939568"}, {"nodeId": "139706051939344"}], "returnType": {"nodeId": "139706051939120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706051938448": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706051939568": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706051939344": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706051939120": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706081225056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030422864"}, {"nodeId": "139706023008000"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139706023008224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "139706023008000": {"type": "Function", "typeVars": [".-2.139706023008000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139706023008000"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023008000": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023008000", "variance": "INVARIANT"}, "139706023008224": {"type": "Function", "typeVars": [".-2.139706023008224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139706023008224"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023008224": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023008224", "variance": "INVARIANT"}, "139706081225504": {"type": "Function", "typeVars": [".-1.139706081225504"], "argTypes": [{"nodeId": ".-1.139706081225504"}], "returnType": {"nodeId": ".-1.139706081225504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706081225504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081225504", "variance": "INVARIANT"}, "139706081225952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030422864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706081226400": {"type": "Function", "typeVars": [".-1.139706081226400"], "argTypes": [{"nodeId": ".-1.139706081226400"}], "returnType": {"nodeId": ".-1.139706081226400"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706081226400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081226400", "variance": "INVARIANT"}, "139706081226848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030422864"}, {"nodeId": "139706017989120"}, {"nodeId": "139706017990016"}, {"nodeId": "139706017990128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706017989120": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017990016": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017990128": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706030423200": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081227296"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706023008448"}, "name": "enter_async_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081228192"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081228640"}, "name": "push_async_exit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081229088"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081229536"}, "name": "push_async_callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081227744"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081229984"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081411360"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081230432"}, "name": "__aexit__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706081227296": {"type": "Function", "typeVars": [".-1.139706081227296"], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": "139706030418160", "args": [{"nodeId": ".-1.139706081227296"}]}], "returnType": {"nodeId": ".-1.139706081227296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.139706081227296": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081227296", "variance": "INVARIANT"}, "139706023008448": {"type": "Function", "typeVars": [".-1.139706023008448"], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": "139706030418496", "args": [{"nodeId": ".-1.139706023008448"}]}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139706023008448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.139706023008448": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023008448", "variance": "INVARIANT"}, "139706081228192": {"type": "Function", "typeVars": [".-1.139706081228192"], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": ".-1.139706081228192"}], "returnType": {"nodeId": ".-1.139706081228192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.139706081228192": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139706031309984"}, "def": "139706081228192", "variance": "INVARIANT"}, "139706081228640": {"type": "Function", "typeVars": [".-1.139706081228640"], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": ".-1.139706081228640"}], "returnType": {"nodeId": ".-1.139706081228640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.139706081228640": {"type": "TypeVar", "varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "139706031310992"}, "def": "139706081228640", "variance": "INVARIANT"}, "139706031310992": {"type": "Union", "items": [{"nodeId": "139706030418496", "args": [{"nodeId": "A"}]}, {"nodeId": "139706031311328"}]}, "139706031311328": {"type": "TypeAlias", "target": {"nodeId": "139706055602048"}}, "139706055602048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706051949648"}, {"nodeId": "139706051937328"}, {"nodeId": "139706051949312"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": "139706051949424"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706051949648": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706051937328": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706051949312": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706051949424": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706081229088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": "139706023004864"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139706023008672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "139706023004864": {"type": "Function", "typeVars": [".-2.139706023004864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139706023004864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023004864": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023004864", "variance": "INVARIANT"}, "139706023008672": {"type": "Function", "typeVars": [".-2.139706023008672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139706023008672"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023008672": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023008672", "variance": "INVARIANT"}, "139706081229536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": "139706023003968"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139706023009120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "139706023003968": {"type": "Function", "typeVars": [".-2.139706023003968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".-2.139706023003968"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023003968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023003968", "variance": "INVARIANT"}, "139706023009120": {"type": "Function", "typeVars": [".-2.139706023009120"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139706131786304", "args": [{"nodeId": ".-2.139706023009120"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.139706023009120": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706023009120", "variance": "INVARIANT"}, "139706081227744": {"type": "Function", "typeVars": [".-1.139706081227744"], "argTypes": [{"nodeId": ".-1.139706081227744"}], "returnType": {"nodeId": ".-1.139706081227744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706081227744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081227744", "variance": "INVARIANT"}, "139706081229984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423200"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706081411360": {"type": "Function", "typeVars": [".-1.139706081411360"], "argTypes": [{"nodeId": ".-1.139706081411360"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139706081411360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706081411360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081411360", "variance": "INVARIANT"}, "139706081230432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423200"}, {"nodeId": "139706017990688"}, {"nodeId": "139706017991024"}, {"nodeId": "139706017991136"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139706131781264"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "139706017990688": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706017991024": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706017991136": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706030423536": {"type": "Concrete", "module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706030423536"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017990576"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081413152"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081413600"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081412704"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081414048"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.139706030423536"}], "bases": [{"nodeId": "139706030418160", "args": [{"nodeId": ".1.139706030423536"}]}, {"nodeId": "139706030418496", "args": [{"nodeId": ".1.139706030423536"}]}], "isAbstract": false}, ".1.139706030423536": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030423536", "variance": "INVARIANT"}, "139706017990576": {"type": "Overloaded", "items": [{"nodeId": "139706081411808"}, {"nodeId": "139706081412256"}]}, "139706081411808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}, "139706081412256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": ".1.139706030423536"}]}, {"nodeId": ".1.139706030423536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}, "139706081413152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": ".1.139706030423536"}]}], "returnType": {"nodeId": ".1.139706030423536"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706081413600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": ".1.139706030423536"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "139706081412704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": ".1.139706030423536"}]}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706030423536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706081414048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030423536", "args": [{"nodeId": ".1.139706030423536"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}, "139706043674832": {"type": "Concrete", "module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001721376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001723616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001724512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001725408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001726304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001636512"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027007712"}, "items": [{"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "expand"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027094560"}, "items": [{"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "group"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027095344"}, "items": [{"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groups"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027095568"}, "items": [{"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groupdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081425472"}, "name": "start"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081425920"}, "name": "end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081426368"}, "name": "span"}, {"kind": "Variable", "name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001807552"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027096688"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081625024"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081625472"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081625920"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043674832"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706001721376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043674832": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043674832", "variance": "INVARIANT"}, "139706001723616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706001724512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706027095120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027095120": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706001725408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706027095232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027095232": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706001726304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": ".1.139706043674832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706001636512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043674832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043675168": {"type": "Concrete", "module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001816736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705996804384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705996805280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705996805952"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027097136"}, "items": [{"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "search"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027196816"}, "items": [{"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "match"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027197600"}, "items": [{"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fullmatch"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027198048"}, "items": [{"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "split"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027198496"}, "items": [{"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "findall"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027198944"}, "items": [{"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "finditer"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027199616"}, "items": [{"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sub"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706027200064"}, "items": [{"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081635328"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081635776"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706081636224"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043675168"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706001816736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043675168": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043675168", "variance": "INVARIANT"}, "139705996804384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}], "returnType": {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705996805280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705996805952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}], "returnType": {"nodeId": ".1.139706043675168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027097136": {"type": "Overloaded", "items": [{"nodeId": "139706081628160"}, {"nodeId": "139706052139872"}]}, "139706081628160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027197712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027197712": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706052139872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027197824"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027197936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027197824": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027197936": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "N"}]}, "139706027196816": {"type": "Overloaded", "items": [{"nodeId": "139706081629056"}, {"nodeId": "139706052132928"}]}, "139706081629056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027198160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027198160": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706052132928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027198272"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027198384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027198272": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027198384": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "N"}]}, "139706027197600": {"type": "Overloaded", "items": [{"nodeId": "139706081629952"}, {"nodeId": "139706052139648"}]}, "139706081629952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027198608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027198608": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706052139648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027198720"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027198832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027198720": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027198832": {"type": "Union", "items": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "N"}]}, "139706027198048": {"type": "Overloaded", "items": [{"nodeId": "139706081630848"}, {"nodeId": "139706052139424"}]}, "139706081630848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706027199168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "139706027199168": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "139706052139424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027199280"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706027199504"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "139706027199280": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027199504": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "A"}]}, "139706027198496": {"type": "Overloaded", "items": [{"nodeId": "139706081631744"}, {"nodeId": "139706052139200"}]}, "139706081631744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706052139200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027199840"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027199840": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027198944": {"type": "Overloaded", "items": [{"nodeId": "139706081632640"}, {"nodeId": "139706052138976"}]}, "139706081632640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706052138976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027200176"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "139706027200176": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027199616": {"type": "Overloaded", "items": [{"nodeId": "139706081633536"}, {"nodeId": "139706052138080"}]}, "139706081633536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027200400"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "139706027200400": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706052138528"}]}, "139706052138528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706052138080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027200624"}, {"nodeId": "139706027200848"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "139706027200624": {"type": "Union", "items": [{"nodeId": "139706027200512"}, {"nodeId": "139706052133152"}]}, "139706027200512": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706052133152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}], "returnType": {"nodeId": "139706027200736"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706027200736": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027200848": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027200064": {"type": "Overloaded", "items": [{"nodeId": "139706081634432"}, {"nodeId": "139706052136736"}]}, "139706081634432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027201072"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027201296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "139706027201072": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706052138304"}]}, "139706052138304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706027201296": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706052136736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027201520"}, {"nodeId": "139706027201744"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706027201968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "139706027201520": {"type": "Union", "items": [{"nodeId": "139706027201408"}, {"nodeId": "139706052137632"}]}, "139706027201408": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706052137632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}], "returnType": {"nodeId": "139706027201632"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706027201632": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027201744": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027201968": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706081635328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}], "returnType": {"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706081635776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043675168", "args": [{"nodeId": ".1.139706043675168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706081636224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706027007712": {"type": "Overloaded", "items": [{"nodeId": "139706081421440"}, {"nodeId": "139706052147488"}]}, "139706081421440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "139706052147488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027095456"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "139706027095456": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706027094560": {"type": "Overloaded", "items": [{"nodeId": "139706081422336"}, {"nodeId": "139706081422784"}, {"nodeId": "139706081423232"}]}, "139706081422336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139706043674832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706081422784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027095792"}], "returnType": {"nodeId": "139706027096016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706027095792": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706027096016": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": "A"}]}, "139706081423232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027096128"}, {"nodeId": "139706027096240"}, {"nodeId": "139706027096352"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706027096576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}, "139706027096128": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706027096240": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706027096352": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706027096576": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": "A"}]}, "139706027095344": {"type": "Overloaded", "items": [{"nodeId": "139706081423680"}, {"nodeId": "139706081424128"}]}, "139706081423680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706027096912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027096912": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": "A"}]}, "139706081424128": {"type": "Function", "typeVars": [".-1.139706081424128"], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": ".-1.139706081424128"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706027097024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.139706081424128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081424128", "variance": "INVARIANT"}, "139706027097024": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": ".-1.139706081424128"}]}, "139706027095568": {"type": "Overloaded", "items": [{"nodeId": "139706081424576"}, {"nodeId": "139706081425024"}]}, "139706081424576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706027097360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027097360": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": "A"}]}, "139706081425024": {"type": "Function", "typeVars": [".-1.139706081425024"], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": ".-1.139706081425024"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706027097472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.139706081425024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706081425024", "variance": "INVARIANT"}, "139706027097472": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": ".-1.139706081425024"}]}, "139706081425472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027097584"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706027097584": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706081425920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027097696"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706027097696": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706081426368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027097808"}], "returnType": {"nodeId": "139706027196480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706027097808": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706027196480": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706001807552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706027196704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027196704": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706027096688": {"type": "Overloaded", "items": [{"nodeId": "139706081624128"}, {"nodeId": "139706081624576"}]}, "139706081624128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139706043674832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706081624576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "139706027197040"}], "returnType": {"nodeId": "139706027197264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706027197040": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706027197264": {"type": "Union", "items": [{"nodeId": ".1.139706043674832"}, {"nodeId": "A"}]}, "139706081625024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}], "returnType": {"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706081625472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043674832", "args": [{"nodeId": ".1.139706043674832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706081625920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706031006976": {"type": "Concrete", "module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039498928"}], "isAbstract": false}, "139706043662400": {"type": "Concrete", "module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706009746592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043662736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043512448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010398816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706010106816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102636704"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102637152"}, "name": "__call__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026420688"}, "items": [{"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706009746592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}], "returnType": {"nodeId": "139706026423152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026423152": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706039238128"}]}, {"nodeId": "N"}]}, "139706043512448": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706010398816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706010106816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102636704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}, {"nodeId": "139706043662736"}, {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, {"nodeId": "139706026423600"}, {"nodeId": "139706026423712"}, {"nodeId": "139706026423824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}, "139706026423600": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706026423712": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}, {"nodeId": "N"}]}, "139706026423824": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706039238128"}]}, {"nodeId": "N"}]}, "139706102637152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706026420688": {"type": "Overloaded", "items": [{"nodeId": "139706102637600"}, {"nodeId": "139706102638048"}]}, "139706102637600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}, {"nodeId": "N"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "139706043662400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "139706102638048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043662400"}, {"nodeId": "139706131780928"}, {"nodeId": "139706026424384"}], "returnType": {"nodeId": "139706043665760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "139706026424384": {"type": "Union", "items": [{"nodeId": "139706038878272"}, {"nodeId": "N"}]}, "139706043665760": {"type": "Concrete", "module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005685408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005685856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005686080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005686304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005686528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005686752"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097693216"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097693664"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005685408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706026724704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026724704": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706039238128"}]}, {"nodeId": "N"}]}, "139706005685856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706026724928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026724928": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706005686080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706043665424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043665424": {"type": "Concrete", "module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097690080"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706097690080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665424"}, {"nodeId": "139706026724480"}, {"nodeId": "139706026724592"}], "returnType": {"nodeId": "139706043662400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "139706026724480": {"type": "Union", "items": [{"nodeId": "139706131780928"}, {"nodeId": "N"}]}, "139706026724592": {"type": "Union", "items": [{"nodeId": "139706038878272"}, {"nodeId": "N"}]}, "139706005686304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005686528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005686752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097693216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}, {"nodeId": "139706052082400"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706052082400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706097693664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665760"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706043663408": {"type": "Concrete", "module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101870688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101871136"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101871584"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706101872032"}, "name": "__delattr__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706101870688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663408"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "139706101871136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663408"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706101871584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663408"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706101872032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043663408"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706043664416": {"type": "Concrete", "module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005543328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097681120"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097681568"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097682016"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026421360"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}], "bases": [{"nodeId": "139706131785968", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}], "isAbstract": false}, "139706005543328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}], "returnType": {"nodeId": "139706026721344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043664416": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043664416", "variance": "COVARIANT"}, ".2.139706043664416": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043664416", "variance": "CONTRAVARIANT"}, ".3.139706043664416": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043664416", "variance": "COVARIANT"}, "139706026721344": {"type": "Union", "items": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706097681120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}], "returnType": {"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706097681568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}], "returnType": {"nodeId": ".1.139706043664416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097682016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}, {"nodeId": ".2.139706043664416"}], "returnType": {"nodeId": ".1.139706043664416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026421360": {"type": "Overloaded", "items": [{"nodeId": "139706097682464"}, {"nodeId": "139706097682912"}]}, "139706097682464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}, {"nodeId": "0"}, {"nodeId": "139706026721568"}, {"nodeId": "139706026721680"}], "returnType": {"nodeId": ".1.139706043664416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026721568": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026721680": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706097682912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664416", "args": [{"nodeId": ".1.139706043664416"}, {"nodeId": ".2.139706043664416"}, {"nodeId": ".3.139706043664416"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026721792"}], "returnType": {"nodeId": ".1.139706043664416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026721792": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706043664752": {"type": "Concrete", "module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005547360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097683808"}, "name": "__aiter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097684256"}, "name": "__anext__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097684704"}, "name": "asend"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026424272"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097686048"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097686496"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}], "bases": [{"nodeId": "139706131787648", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}], "isAbstract": false}, "139706005547360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}], "returnType": {"nodeId": "139706026722016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043664752": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043664752", "variance": "COVARIANT"}, ".2.139706043664752": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043664752", "variance": "CONTRAVARIANT"}, "139706026722016": {"type": "Union", "items": [{"nodeId": "139706131786304", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706097683808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}], "returnType": {"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097684256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706043664752"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097684704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}, {"nodeId": ".2.139706043664752"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706043664752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026424272": {"type": "Overloaded", "items": [{"nodeId": "139706052076352"}, {"nodeId": "139706097685152"}]}, "139706052076352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}, {"nodeId": "0"}, {"nodeId": "139706026722688"}, {"nodeId": "139706026722800"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706043664752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026722688": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026722800": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706097685152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026723024"}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139706043664752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026723024": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706097686048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664752", "args": [{"nodeId": ".1.139706043664752"}, {"nodeId": ".2.139706043664752"}]}], "returnType": {"nodeId": "139706131786640", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097686496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "139706043665088": {"type": "Concrete", "module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005550720"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097687840"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097688288"}, "name": "__await__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097688736"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026722912"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}], "bases": [{"nodeId": "139706131786640", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}], "isAbstract": false}, "139706005550720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}], "returnType": {"nodeId": "139706026723808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043665088": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043665088", "variance": "COVARIANT"}, ".2.139706043665088": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043665088", "variance": "CONTRAVARIANT"}, ".3.139706043665088": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043665088", "variance": "COVARIANT"}, "139706026723808": {"type": "Union", "items": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706026723696"}]}, {"nodeId": "N"}]}, "139706026723696": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706097687840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097688288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.139706043665088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097688736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}, {"nodeId": ".2.139706043665088"}], "returnType": {"nodeId": ".1.139706043665088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706026722912": {"type": "Overloaded", "items": [{"nodeId": "139706097689184"}, {"nodeId": "139706097689632"}]}, "139706097689184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}, {"nodeId": "0"}, {"nodeId": "139706026724144"}, {"nodeId": "139706026724256"}], "returnType": {"nodeId": ".1.139706043665088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026724144": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "139706131780928"}]}, "139706026724256": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706097689632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043665088", "args": [{"nodeId": ".1.139706043665088"}, {"nodeId": ".2.139706043665088"}, {"nodeId": ".3.139706043665088"}]}, {"nodeId": "139706038886336"}, {"nodeId": "N"}, {"nodeId": "139706026724368"}], "returnType": {"nodeId": ".1.139706043665088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "139706026724368": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706043666096": {"type": "Concrete", "module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005687872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005688320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005688544"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097695456"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005687872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666096"}], "returnType": {"nodeId": "139706026725600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706026725600": {"type": "Union", "items": [{"nodeId": "139706131780928"}, {"nodeId": "139706043664080"}]}, "139706005688320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666096"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005688544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666096"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097695456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666096"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706043666432": {"type": "Concrete", "module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005689664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005690336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005690560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097500896"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097501344"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005689664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666432"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005690336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666432"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005690560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666432"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097500896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666432"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706097501344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666432"}, {"nodeId": "A"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706043666768": {"type": "Concrete", "module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005691680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005692128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005692352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005692576"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097503584"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097504032"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097504480"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005691680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005692128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005692352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005692576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097503584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706097504032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706097504480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043666768"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706043667104": {"type": "Concrete", "module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005694592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005695040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005695264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097506272"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097506720"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005694592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667104"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005695040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667104"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005695264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667104"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097506272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667104"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706097506720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667104"}, {"nodeId": "A"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "139706043667440": {"type": "Concrete", "module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005696384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005696832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005697056"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097508512"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097508960"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005696384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667440"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005696832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667440"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005697056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667440"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097508512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667440"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706097508960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043667440"}, {"nodeId": "A"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "139706043668448": {"type": "Concrete", "module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005752288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005752512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005752736"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097516128"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097828128"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097828576"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005752288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005752512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005752736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097516128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}, {"nodeId": "A"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706097828128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706097828576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668448"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706043668784": {"type": "Concrete", "module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005753856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005754304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706005754528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097830368"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097830816"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097831264"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706005753856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005754304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706005754528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}], "returnType": {"nodeId": "139706038878272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706097830368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}, {"nodeId": "A"}, {"nodeId": "139706038878272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706097830816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706097831264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043668784"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706043669456": {"type": "Concrete", "module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097837536"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706097837536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043669456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039235776": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097840000"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097840448"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097840896"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706097840000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235776"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706097840448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235776"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039235776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706097840896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039235776"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039235776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039236112": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039230736", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097842688"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097843136"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706097843584"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102448192"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102448640"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102449088"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102449536"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102449984"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102450432"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102450880"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}], "isAbstract": true}, "139706097842688": {"type": "Function", "typeVars": [".-1.139706097842688"], "argTypes": [{"nodeId": ".-1.139706097842688"}], "returnType": {"nodeId": ".-1.139706097842688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706097842688": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706097842688", "variance": "INVARIANT"}, "139706097843136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236112"}, {"nodeId": "0"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "139706097843584": {"type": "Function", "typeVars": [".-1.139706097843584"], "argTypes": [{"nodeId": "139706039236112"}, {"nodeId": "0"}, {"nodeId": ".-1.139706097843584"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.139706097843584": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706097843584", "variance": "INVARIANT"}, "139706102448192": {"type": "Function", "typeVars": [".-1.139706102448192"], "argTypes": [{"nodeId": ".-1.139706102448192"}, {"nodeId": ".-1.139706102448192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.139706102448192": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706102448192", "variance": "INVARIANT"}, "139706102448640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236112"}], "returnType": {"nodeId": "139706039229392", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102449088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236112"}], "returnType": {"nodeId": "139706039228720", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102449536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236112"}], "returnType": {"nodeId": "139706039229056", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706131780928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102449984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236112"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102450432": {"type": "Function", "typeVars": [".-1.139706102450432"], "argTypes": [{"nodeId": ".-1.139706102450432"}, {"nodeId": ".-1.139706102450432"}], "returnType": {"nodeId": ".-1.139706102450432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706102450432": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706102450432", "variance": "INVARIANT"}, "139706102450880": {"type": "Function", "typeVars": [".-1.139706102450880"], "argTypes": [{"nodeId": ".-1.139706102450880"}, {"nodeId": ".-1.139706102450880"}], "returnType": {"nodeId": ".-1.139706102450880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706102450880": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706102450880", "variance": "INVARIANT"}, "139706039236784": {"type": "Concrete", "module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706031397840"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706009429248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102458496"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102459392"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "139706031397840": {"type": "Overloaded", "items": [{"nodeId": "139706102457152"}, {"nodeId": "139706102457600"}]}, "139706102457152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236784"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706026244720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "139706026244720": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "139706102457600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236784"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "139706009429248": {"type": "Function", "typeVars": [".-1.139706009429248"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139706009429248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.139706009429248": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706009429248", "variance": "INVARIANT"}, "139706102458496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039236784"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706102459392": {"type": "Function", "typeVars": [".-1.139706102459392"], "argTypes": [{"nodeId": ".-1.139706102459392"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706102459392"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.139706102459392": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706102459392", "variance": "INVARIANT"}, "139706039237120": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043696848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043697520"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102459840"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102460288"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102460736"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043696848": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706043697520": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706102459840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237120"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}, {"nodeId": "139706026236432"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706026240576"}, {"nodeId": "139706131781264"}], "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"]}, "139706026236432": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706026240576": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706102460288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237120"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039235776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706102460736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237120"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039235776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039237792": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043695616"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102462976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706102463424"}, "name": "__iter__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043695616": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706102462976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237792"}, {"nodeId": "139706038880624"}, {"nodeId": "139706026241360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}, "139706026241360": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706102463424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039237792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706031282816": {"type": "Concrete", "module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705959573072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959785952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959785504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959785280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959785056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959784832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959784160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959783488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959779008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959783712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959783264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705959783040"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139705959925680"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705959573072": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705959785952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959774384"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959774384": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959785504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959773488"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959773488": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959785280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959773824"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959773824": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959785056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959774160"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959774160": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959784832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959774048"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959774048": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959784160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959773264"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959773264": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959783488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959773040"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959773040": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959779008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959772816"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959772816": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959783712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959772592"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959772592": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959783264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959772480"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959772480": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959783040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705959772256"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705959772256": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705959925680": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "139706038878944"}]}, "139706031283152": {"type": "Protocol", "module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038879280"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}, "139706030553936": {"type": "Concrete", "module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967863600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098060192"}, "name": "__init__"}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031395376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030737440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030737552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705967863600": {"type": "Tuple", "items": []}, "139706098060192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030553936"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "139706031395376": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706030737440": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706030737552": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030554272": {"type": "Concrete", "module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030554608": {"type": "Concrete", "module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030800960": {"type": "Concrete", "module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967868080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030554608"}], "isAbstract": false}, "139705967868080": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030801296": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705967869088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030554272"}], "isAbstract": false}, "139705967869088": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030811376": {"type": "Concrete", "module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030801632": {"type": "Concrete", "module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968050464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030800960"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030554272"}], "isAbstract": false}, "139705968050464": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030802640": {"type": "Concrete", "module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030801968": {"type": "Concrete", "module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968051808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030554272"}], "isAbstract": false}, "139705968051808": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030802304": {"type": "Concrete", "module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968052704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030554272"}], "isAbstract": false}, "139705968052704": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030802976": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968054720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030998576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031398848"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968054720": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030998576": {"type": "Concrete", "module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968490784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030998912"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030998912"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030998912"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030744496"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031395040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705968490784": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030998912": {"type": "Concrete", "module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968492016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031395152"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705968492016": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031395152": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030744272": {"type": "Union", "items": [{"nodeId": "139706030998912"}, {"nodeId": "N"}]}, "139706030744496": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706031395040": {"type": "Union", "items": [{"nodeId": "139706030998912"}, {"nodeId": "N"}]}, "139706031398848": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030803312": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968056176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030998576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031391680"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968056176": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031391680": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030803648": {"type": "Concrete", "module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968057408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999248"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968057408": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030999248": {"type": "Concrete", "module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963495936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705963495936": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030744608": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030803984": {"type": "Concrete", "module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968057856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031392128"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968057856": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706031392128": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030804320": {"type": "Concrete", "module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968058752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968058752": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030804656": {"type": "Concrete", "module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968060096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968060096": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030804992": {"type": "Concrete", "module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968061216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030921696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968061216": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031394256": {"type": "Union", "items": [{"nodeId": "139706030918336"}, {"nodeId": "139706030916992"}, {"nodeId": "139706030917664"}]}, "139706030918336": {"type": "Concrete", "module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968483168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968483168": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030919344": {"type": "Concrete", "module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030916992": {"type": "Concrete", "module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968477904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968477904": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030917664": {"type": "Concrete", "module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968481264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968481264": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030921696": {"type": "Concrete", "module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030805328": {"type": "Concrete", "module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968062560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031391568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968062560": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031391568": {"type": "Union", "items": [{"nodeId": "139706030918336"}, {"nodeId": "139706030916992"}, {"nodeId": "139706030917664"}]}, "139706031394368": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030805664": {"type": "Concrete", "module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968064016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968064016": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030806000": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968065360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968065360": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030806336": {"type": "Concrete", "module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968066256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968066256": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030806672": {"type": "Concrete", "module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968182208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968182208": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030807008": {"type": "Concrete", "module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968183328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999920"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968183328": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030999920": {"type": "Concrete", "module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963497952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744720"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705963497952": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030744720": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030807344": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968184448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999920"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968184448": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030807680": {"type": "Concrete", "module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968185344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394704"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968185344": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031394480": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706031394704": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030808016": {"type": "Concrete", "module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968186800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030998240"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968186800": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030998240": {"type": "Concrete", "module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968488768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030997904"}], "isAbstract": false}, "139705968488768": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030744048": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030744160": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030997904": {"type": "Concrete", "module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030808352": {"type": "Concrete", "module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968188144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394816"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968188144": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031394816": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030808688": {"type": "Concrete", "module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968188928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968188928": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030999584": {"type": "Concrete", "module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963496944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744384"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705963496944": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030744384": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030809024": {"type": "Concrete", "module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968190272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031394928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968190272": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031394928": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030809360": {"type": "Concrete", "module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968190944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968190944": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030809696": {"type": "Concrete", "module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968191840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968191840": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030810032": {"type": "Concrete", "module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968192736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705968192736": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030810368": {"type": "Concrete", "module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139706030810704": {"type": "Concrete", "module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139706030811040": {"type": "Concrete", "module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139706030811712": {"type": "Concrete", "module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968193856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030920688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968193856": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030920688": {"type": "Concrete", "module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030812048": {"type": "Concrete", "module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968195088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030921696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968195088": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030812384": {"type": "Concrete", "module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968195984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030926400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968195984": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030926400": {"type": "Concrete", "module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030812720": {"type": "Concrete", "module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968196992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030998576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968196992": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030813056": {"type": "Concrete", "module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968329440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968329440": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030813392": {"type": "Concrete", "module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968330336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030738224"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968330336": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030738224": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030813728": {"type": "Concrete", "module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968331120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968331120": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030814064": {"type": "Concrete", "module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968332240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030997568"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968332240": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030997568": {"type": "Concrete", "module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968487760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705968487760": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030814400": {"type": "Concrete", "module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968333248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030997568"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968333248": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030814736": {"type": "Concrete", "module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968334480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030997568"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968334480": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030815072": {"type": "Concrete", "module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968335376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030997568"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968335376": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030815408": {"type": "Concrete", "module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968336160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968336160": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030815744": {"type": "Concrete", "module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968337056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031392912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968337056": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706031392912": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030816080": {"type": "Concrete", "module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968337952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968337952": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030816416": {"type": "Concrete", "module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968339296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030928080"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968339296": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030928080": {"type": "Concrete", "module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030816752": {"type": "Concrete", "module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968340416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030999248"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968340416": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030915648": {"type": "Concrete", "module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968341536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030738000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968341536": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030738000": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030915984": {"type": "Concrete", "module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968342208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968342208": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030916320": {"type": "Concrete", "module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968343888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030737776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030743488"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968343888": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030737776": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030743488": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879616"}]}, "139706030916656": {"type": "Concrete", "module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968476672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030918336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968476672": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030917328": {"type": "Concrete", "module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968479584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030743712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030743824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030743936"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968479584": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030743712": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030743824": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030743936": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706030918000": {"type": "Concrete", "module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968482160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968482160": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030918672": {"type": "Concrete", "module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968484176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968484176": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030919008": {"type": "Concrete", "module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705968485184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030919344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030811376"}], "isAbstract": false}, "139705968485184": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030919680": {"type": "Concrete", "module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030919344"}], "isAbstract": false}, "139706030920016": {"type": "Concrete", "module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030919344"}], "isAbstract": false}, "139706030920352": {"type": "Concrete", "module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030919344"}], "isAbstract": false}, "139706030921024": {"type": "Concrete", "module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030920688"}], "isAbstract": false}, "139706030921360": {"type": "Concrete", "module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030920688"}], "isAbstract": false}, "139706030922032": {"type": "Concrete", "module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030922368": {"type": "Concrete", "module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030922704": {"type": "Concrete", "module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030923040": {"type": "Concrete", "module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030923376": {"type": "Concrete", "module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030923712": {"type": "Concrete", "module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030924048": {"type": "Concrete", "module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030924384": {"type": "Concrete", "module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030924720": {"type": "Concrete", "module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030925056": {"type": "Concrete", "module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030925392": {"type": "Concrete", "module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030925728": {"type": "Concrete", "module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030926064": {"type": "Concrete", "module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030921696"}], "isAbstract": false}, "139706030926736": {"type": "Concrete", "module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030926400"}], "isAbstract": false}, "139706030927072": {"type": "Concrete", "module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030926400"}], "isAbstract": false}, "139706030927408": {"type": "Concrete", "module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030926400"}], "isAbstract": false}, "139706030927744": {"type": "Concrete", "module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030926400"}], "isAbstract": false}, "139706030928416": {"type": "Concrete", "module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030928752": {"type": "Concrete", "module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030929088": {"type": "Concrete", "module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030929424": {"type": "Concrete", "module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030929760": {"type": "Concrete", "module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030930096": {"type": "Concrete", "module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030930432": {"type": "Concrete", "module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030930768": {"type": "Concrete", "module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030931104": {"type": "Concrete", "module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706030931440": {"type": "Concrete", "module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030928080"}], "isAbstract": false}, "139706031000256": {"type": "Concrete", "module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963498960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000928"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030802640"}], "isAbstract": false}, "139705963498960": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031000928": {"type": "Concrete", "module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963499632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031000592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030802640"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139705963499632": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031000592": {"type": "Concrete", "module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030553936"}], "isAbstract": false}, "139706030744832": {"type": "Union", "items": [{"nodeId": "139706030811376"}, {"nodeId": "N"}]}, "139706031001264": {"type": "Concrete", "module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963499744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963499744": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706031001600": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963500080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030744944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963500080": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030744944": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "139706031001936": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963500416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000592"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963500416": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706031002272": {"type": "Concrete", "module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963500752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030745280"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963500752": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706030745280": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706031002608": {"type": "Concrete", "module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963501536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706030811376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000592"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030745392"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963501536": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030745392": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706031002944": {"type": "Concrete", "module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963502320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030811376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000592"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000592"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963502320": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031003280": {"type": "Concrete", "module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963502544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030745504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030745616"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963502544": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706030745504": {"type": "Union", "items": [{"nodeId": "139706031000592"}, {"nodeId": "N"}]}, "139706030745616": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706031003616": {"type": "Concrete", "module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705963502768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031000592"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031000592"}], "isAbstract": false}, "139705963502768": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706039484816": {"type": "Concrete", "module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038888352"}, {"nodeId": "139706038893728"}], "isAbstract": false}, "139706039485152": {"type": "Concrete", "module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098061760"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098062208"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098062656"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098063104"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098063552"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098064000"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098064448"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098064896"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098065344"}, "name": "readable"}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706052080832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098065792"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098066240"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098066688"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098067136"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098067584"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098068032"}, "name": "writable"}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043379808"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098068480"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098068928"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098069376"}, "name": "__del__"}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705988565696"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098070272"}, "name": "_checkClosed"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706098061760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706098062208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098062656": {"type": "Function", "typeVars": [".-1.139706098062656"], "argTypes": [{"nodeId": ".-1.139706098062656"}], "returnType": {"nodeId": ".-1.139706098062656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098062656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098062656", "variance": "INVARIANT"}, "139706098063104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706022528832"}, {"nodeId": "139706022528944"}, {"nodeId": "139706022529056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706022528832": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706022528944": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706022529056": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706098063552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098064000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098064448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098064896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098065344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706052080832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706098065792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706098066240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706098066688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098067136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098067584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706022529168"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022529168": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706098068032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043379808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706098068480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706022529280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022529280": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706098068928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706022529392"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022529392": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706098069376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139705988565696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098070272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485152"}, {"nodeId": "139706022529504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "139706022529504": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706039485488": {"type": "Concrete", "module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098070720"}, "name": "readall"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098071168"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098071616"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098072064"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "139706039485152"}], "isAbstract": false}, "139706098070720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485488"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098071168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485488"}, {"nodeId": "139706022529616"}], "returnType": {"nodeId": "139706022529728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022529616": {"type": "TypeAlias", "target": {"nodeId": "139706030739008"}}, "139706022529728": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706098071616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485488"}, {"nodeId": "139706022529840"}], "returnType": {"nodeId": "139706022529952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022529840": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706022529952": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706098072064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485488"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706022530064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022530064": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706039485824": {"type": "Concrete", "module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039485488"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098072512"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098072960"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098335808"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098336256"}, "name": "readinto1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098336704"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098337152"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "139706039485152"}], "isAbstract": false}, "139706098072512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}], "returnType": {"nodeId": "139706039485488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098072960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}, {"nodeId": "139706022530176"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022530176": {"type": "TypeAlias", "target": {"nodeId": "139706030739008"}}, "139706098335808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}, {"nodeId": "139706022530288"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022530288": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706098336256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}, {"nodeId": "139706022530400"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022530400": {"type": "TypeAlias", "target": {"nodeId": "139706030739008"}}, "139706098336704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}, {"nodeId": "139706022530512"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022530512": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706098337152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039485824"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706039486160": {"type": "Concrete", "module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031205040"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098337600"}, "name": "__init__"}, {"kind": "Variable", "name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705988492288"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098338496"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098338944"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098339392"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "139706039485488"}, {"nodeId": "139706039227040"}], "isAbstract": false}, "139706031205040": {"type": "TypeAlias", "target": {"nodeId": "139706030601072"}}, "139706030601072": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706030601296"}]}, "139706030601296": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706030591552": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706031007648", "args": [{"nodeId": "139706039229728"}]}]}, "139706031007648": {"type": "Protocol", "module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705992771200"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.139706031007648"}], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__fspath__"]}, "139705992771200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031007648", "args": [{"nodeId": ".1.139706031007648"}]}], "returnType": {"nodeId": ".1.139706031007648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706031007648": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706031007648", "variance": "COVARIANT"}, "139706098337600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486160"}, {"nodeId": "139706022530624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022530848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}, "139706022530624": {"type": "TypeAlias", "target": {"nodeId": "139706030601072"}}, "139706022530848": {"type": "Union", "items": [{"nodeId": "139706022530736"}, {"nodeId": "N"}]}, "139706022530736": {"type": "TypeAlias", "target": {"nodeId": "139706047693312"}}, "139706047693312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705988492288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486160"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098338496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486160"}, {"nodeId": "139706022530960"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022530960": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706098338944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486160"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706098339392": {"type": "Function", "typeVars": [".-1.139706098339392"], "argTypes": [{"nodeId": ".-1.139706098339392"}], "returnType": {"nodeId": ".-1.139706098339392"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098339392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098339392", "variance": "INVARIANT"}, "139706039486496": {"type": "Concrete", "module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098339840"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098340288"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098340736"}, "name": "getvalue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098341184"}, "name": "getbuffer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098341632"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "139706039485824"}, {"nodeId": "139706039227040"}], "isAbstract": false}, "139706098339840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486496"}, {"nodeId": "139706022531072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}, "139706022531072": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706098340288": {"type": "Function", "typeVars": [".-1.139706098340288"], "argTypes": [{"nodeId": ".-1.139706098340288"}], "returnType": {"nodeId": ".-1.139706098340288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098340288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098340288", "variance": "INVARIANT"}, "139706098340736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486496"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098341184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486496"}], "returnType": {"nodeId": "139706038880960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098341632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486496"}, {"nodeId": "139706022531184"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022531184": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706039486832": {"type": "Concrete", "module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098342080"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098342528"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098342976"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "139706039485824"}, {"nodeId": "139706039227040"}], "isAbstract": false}, "139706098342080": {"type": "Function", "typeVars": [".-1.139706098342080"], "argTypes": [{"nodeId": ".-1.139706098342080"}], "returnType": {"nodeId": ".-1.139706098342080"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098342080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098342080", "variance": "INVARIANT"}, "139706098342528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486832"}, {"nodeId": "139706039485488"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "139706098342976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039486832"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706039487168": {"type": "Concrete", "module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098343424"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098343872"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098344320"}, "name": "write"}], "typeVars": [], "bases": [{"nodeId": "139706039485824"}, {"nodeId": "139706039227040"}], "isAbstract": false}, "139706098343424": {"type": "Function", "typeVars": [".-1.139706098343424"], "argTypes": [{"nodeId": ".-1.139706098343424"}], "returnType": {"nodeId": ".-1.139706098343424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098343424": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098343424", "variance": "INVARIANT"}, "139706098343872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039487168"}, {"nodeId": "139706039485488"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "139706098344320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039487168"}, {"nodeId": "139706022531296"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022531296": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706039487504": {"type": "Concrete", "module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098344768"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098345216"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "139706039486832"}, {"nodeId": "139706039487168"}], "isAbstract": false}, "139706098344768": {"type": "Function", "typeVars": [".-1.139706098344768"], "argTypes": [{"nodeId": ".-1.139706098344768"}], "returnType": {"nodeId": ".-1.139706098344768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706098344768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706098344768", "variance": "INVARIANT"}, "139706098345216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039487504"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706039487840": {"type": "Concrete", "module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098345664"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098346112"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "139706039485824"}], "isAbstract": false}, "139706098345664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039487840"}, {"nodeId": "139706039485488"}, {"nodeId": "139706039485488"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}, "139706098346112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039487840"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706039488176": {"type": "Concrete", "module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706026232736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031204704"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098346560"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098347008"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098347456"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098347904"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098348352"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098348800"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098349248"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098349696"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "139706039485152"}], "isAbstract": false}, "139706026232736": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706031204704": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706098346560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706098347008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098347456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706098347904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706098348352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706098348800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706098349248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706098349696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488176"}, {"nodeId": "139706022531408"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706022531408": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706039488512": {"type": "Concrete", "module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706098350144"}, "name": "__init__"}, {"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705988971008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705988970336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705988970112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989120064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076938752"}, "name": "reconfigure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076939200"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076939648"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076940096"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076940544"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076940992"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076941440"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076941888"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "139706039488176"}, {"nodeId": "139706039227376"}], "isAbstract": false}, "139706098350144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706039226704", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706022531520"}, {"nodeId": "139706022531632"}, {"nodeId": "139706022531744"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "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"]}, "139706022531520": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022531632": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022531744": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705988971008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705988970336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705988970112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705989120064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706076938752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706022531856"}, {"nodeId": "139706022531968"}, {"nodeId": "139706022532080"}, {"nodeId": "139706022532192"}, {"nodeId": "139706022532304"}], "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"]}, "139706022531856": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022531968": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022532080": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022532192": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706022532304": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706076939200": {"type": "Function", "typeVars": [".-1.139706076939200"], "argTypes": [{"nodeId": ".-1.139706076939200"}], "returnType": {"nodeId": ".-1.139706076939200"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706076939200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706076939200", "variance": "INVARIANT"}, "139706076939648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706076940096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706076940544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706076940992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706076941440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706076941888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488512"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "139706039488848": {"type": "Concrete", "module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076942336"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076942784"}, "name": "getvalue"}], "typeVars": [], "bases": [{"nodeId": "139706039488512"}], "isAbstract": false}, "139706076942336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488848"}, {"nodeId": "139706022532416"}, {"nodeId": "139706022532528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}, "139706022532416": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022532528": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706076942784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039488848"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031282144": {"type": "Concrete", "module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076943232"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076943680"}, "name": "decode"}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989131264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706076944576"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "139706030543184"}], "isAbstract": false}, "139706076943232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282144"}, {"nodeId": "139706022532640"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}, "139706022532640": {"type": "Union", "items": [{"nodeId": "139706030543184"}, {"nodeId": "N"}]}, "139706030543184": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068856704"}, "name": "__init__"}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976711296"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068857600"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068858048"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068858496"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139706068856704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543184"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139705976711296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543184"}, {"nodeId": "139706018388944"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "139706018388944": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706068857600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068858048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543184"}], "returnType": {"nodeId": "139706018389168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018389168": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706068858496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543184"}, {"nodeId": "139706018389392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "139706018389392": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706076943680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282144"}, {"nodeId": "139706022532864"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "139706022532864": {"type": "Union", "items": [{"nodeId": "139706022532752"}, {"nodeId": "139706038880624"}]}, "139706022532752": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139705989131264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282144"}], "returnType": {"nodeId": "139706022532976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022532976": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706076944576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282144"}, {"nodeId": "139706022533200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706022533200": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706039724608": {"type": "Concrete", "module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039724272"}], "isAbstract": false}, "139706031276768": {"type": "Concrete", "module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077082816"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077083264"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077083712"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077084160"}, "name": "LoadLibrary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077084608"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706031276768"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706077082816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276768", "args": [{"nodeId": ".1.139706031276768"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}, ".1.139706031276768": {"type": "TypeVar", "varName": "_DLLT", "values": [], "upperBound": {"nodeId": "139706039724272"}, "def": "139706031276768", "variance": "INVARIANT"}, "139706077083264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276768", "args": [{"nodeId": ".1.139706031276768"}]}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".1.139706031276768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077083712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276768", "args": [{"nodeId": ".1.139706031276768"}]}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".1.139706031276768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077084160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276768", "args": [{"nodeId": ".1.139706031276768"}]}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".1.139706031276768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "139706077084608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706039724944": {"type": "Concrete", "module": "ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077085056"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077364288"}, "name": "__rmul__"}], "typeVars": [], "bases": [{"nodeId": "139706038878272"}], "isAbstract": false}, "139706077085056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077364288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706039726960": {"type": "Concrete", "module": "ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706039727968": {"type": "Concrete", "module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706039728304": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077514880"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706039229728"}]}], "isAbstract": false}, "139706077514880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039728304"}, {"nodeId": "139706017819872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "139706017819872": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706039728640": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077515328"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039725952"}, {"nodeId": "139706039727632", "args": [{"nodeId": "139706031209856"}]}], "isAbstract": false}, "139706077515328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039728640"}, {"nodeId": "139706017819984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "139706017819984": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706031209856": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706039728976": {"type": "Concrete", "module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038879280"}]}], "isAbstract": false}, "139706039729312": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038879280"}]}], "isAbstract": false}, "139706039729648": {"type": "Concrete", "module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038879280"}]}], "isAbstract": false}, "139706030408080": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030408416": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030408752": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030409088": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030409424": {"type": "Concrete", "module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030409760": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030410096": {"type": "Concrete", "module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030410432": {"type": "Concrete", "module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030410768": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030411104": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030411440": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030411776": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030412112": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030412448": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030412784": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030413120": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030413456": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030413792": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139706030414128": {"type": "Concrete", "module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039725952"}, {"nodeId": "139706039727632", "args": [{"nodeId": "139706031309312"}]}], "isAbstract": false}, "139706031309312": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706030414464": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": false}, "139706030414800": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077515776"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039725952"}, {"nodeId": "139706039727632", "args": [{"nodeId": "139706051940352"}]}], "isAbstract": false}, "139706077515776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030414800"}, {"nodeId": "139706017820096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "139706017820096": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706051940352": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706030415136": {"type": "Concrete", "module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077516224"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039727632", "args": [{"nodeId": "139706131781264"}]}], "isAbstract": false}, "139706077516224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030415136"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "139706030415472": {"type": "Concrete", "module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.139706030415472"}], "bases": [{"nodeId": "139706039725616"}, {"nodeId": "139706039727632", "args": [{"nodeId": ".1.139706030415472"}]}], "isAbstract": false}, ".1.139706030415472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706030415472", "variance": "INVARIANT"}, "139706030415808": {"type": "Concrete", "module": "ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706030416144": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131788656", "args": [{"nodeId": "139706051940800"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077516672"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706039724944"}], "isAbstract": false}, "139706051940800": {"type": "Union", "items": [{"nodeId": "139706051940576"}, {"nodeId": "139706051940016"}]}, "139706051940576": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "0"}]}, "139706051940016": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "0"}, {"nodeId": "139706038878944"}]}, "139706077516672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030416144"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706030415808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706030416480": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077517120"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077517568"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077518016"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "139706039725280"}], "isAbstract": false}, "139706077517120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030416480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}, "139706077517568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030416480"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077518016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030416480"}, {"nodeId": "139706038880624"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706030416816": {"type": "Concrete", "module": "ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030416480"}], "isAbstract": false}, "139706030417152": {"type": "Concrete", "module": "ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030416480"}], "isAbstract": false}, "139706030417488": {"type": "Concrete", "module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030417152"}], "isAbstract": false}, "139706030417824": {"type": "Concrete", "module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030417152"}], "isAbstract": false}, "139706031277440": {"type": "Concrete", "module": "ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017818976"}, "items": [{"kind": "Variable", "name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705980444384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_length_"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017819088"}, "items": [{"kind": "Variable", "name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705980444832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_type_"}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039229728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077520256"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017820656"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706017820768"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077522496"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077522944"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077523392"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706031277440"}], "bases": [{"nodeId": "139706039725280"}], "isAbstract": true}, "139706017818976": {"type": "Overloaded", "items": [{"nodeId": "139706077518464"}]}, "139706077518464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706031277440": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "139706039725280"}, "def": "139706031277440", "variance": "INVARIANT"}, "139705980444384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706017819088": {"type": "Overloaded", "items": [{"nodeId": "139706077519360"}]}, "139706077519360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705980444832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706077520256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "139706017820656": {"type": "Overloaded", "items": [{"nodeId": "139706077520704"}, {"nodeId": "139706077521152"}]}, "139706077520704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706077521152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}, {"nodeId": "139706038881296"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706017820768": {"type": "Overloaded", "items": [{"nodeId": "139706077521600"}, {"nodeId": "139706077522048"}]}, "139706077521600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}, {"nodeId": "139706038878944"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706077522048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}, {"nodeId": "139706038881296"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706077522496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706077522944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031277440", "args": [{"nodeId": ".1.139706031277440"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706077523392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706043675504": {"type": "Protocol", "module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077193920"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077194368"}, "name": "readline"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["read", "readline"]}, "139706077193920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675504"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706077194368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675504"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043676176": {"type": "Concrete", "module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706043676512": {"type": "Concrete", "module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706043676176"}], "isAbstract": false}, "139706043676848": {"type": "Concrete", "module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706043676176"}], "isAbstract": false}, "139706043677184": {"type": "Concrete", "module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131790000", "args": [{"nodeId": "139706038878272"}, {"nodeId": "139706047697120"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878272"}, {"nodeId": "139706055599360"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706077199744"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068156480"}, "name": "reducer_override"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068157376"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068157824"}, "name": "clear_memo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068158272"}, "name": "persistent_id"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706047697120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "139706043072576"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706043072576": {"type": "TypeAlias", "target": {"nodeId": "139706047557616"}}, "139706047557616": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706047560528"}, {"nodeId": "139706047558960"}, {"nodeId": "139706047558848"}, {"nodeId": "139706047558176"}]}, "139706047560528": {"type": "Tuple", "items": [{"nodeId": "139706048142848"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}]}, "139706048142848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706047558960": {"type": "Tuple", "items": [{"nodeId": "139706048143296"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}, "139706048143296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706047558848": {"type": "Tuple", "items": [{"nodeId": "139706047696448"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139706047559408"}]}, "139706047696448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706047559408": {"type": "Union", "items": [{"nodeId": "139706131785296", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706047558176": {"type": "Tuple", "items": [{"nodeId": "139706047696672"}, {"nodeId": "139706038881632", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139706047558512"}, {"nodeId": "139706047558736"}]}, "139706047696672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706047558512": {"type": "Union", "items": [{"nodeId": "139706131785296", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706047558736": {"type": "Union", "items": [{"nodeId": "139706131785296", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706055599360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706043677520": {"type": "Concrete", "module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038878944"}, {"nodeId": "139706047696000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068158720"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068159616"}, "name": "load"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068160064"}, "name": "find_class"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068160512"}, "name": "persistent_load"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706047696000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706068158720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}, {"nodeId": "139706043675504"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022057392"}], "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"]}, "139706022057392": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "139706068159616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068160064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706068160512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677520"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}, "139706077199744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677184"}, {"nodeId": "139706030552928", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706022056496"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022056608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}, "139706022056496": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706022056608": {"type": "TypeAlias", "target": {"nodeId": "139706043078848"}}, "139706043078848": {"type": "Union", "items": [{"nodeId": "139706043381600"}, {"nodeId": "N"}]}, "139706043381600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043675840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706068156480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677184"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "139706068157376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677184"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706068157824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068158272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677184"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "139706043677856": {"type": "Concrete", "module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068162528"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068163424"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068163872"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068164320"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068164768"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068165216"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068165664"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068166112"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068166560"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068167008"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022053920"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.139706043677856"}], "bases": [{"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}]}], "isAbstract": false}, "139706068162528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": "139706131790336", "args": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}]}, {"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"]}, ".1.139706043677856": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043677856", "variance": "INVARIANT"}, "139706068163424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}], "returnType": {"nodeId": ".1.139706043677856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}, "139706068163872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068164320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": ".1.139706043677856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706068164768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": ".1.139706043677856"}], "returnType": {"nodeId": ".1.139706043677856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706068165216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706068165664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": ".1.139706043677856"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706068166112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706068166560": {"type": "Function", "typeVars": [".-1.139706068166560", ".-2.139706068166560"], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706068166560"}, {"nodeId": ".-2.139706068166560"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706022063776"}, {"nodeId": "139706022063888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706068166560": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068166560", "variance": "INVARIANT"}, ".-2.139706068166560": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068166560", "variance": "INVARIANT"}, "139706022063776": {"type": "Union", "items": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".-1.139706068166560"}]}, "139706022063888": {"type": "Union", "items": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".-2.139706068166560"}]}, "139706068167008": {"type": "Function", "typeVars": [".-1.139706068167008", ".-2.139706068167008"], "argTypes": [{"nodeId": "139706043677856", "args": [{"nodeId": ".1.139706043677856"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": ".-1.139706068167008"}, {"nodeId": ".-2.139706068167008"}]}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706022064000"}, {"nodeId": "139706022064336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706068167008": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068167008", "variance": "INVARIANT"}, ".-2.139706068167008": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068167008", "variance": "INVARIANT"}, "139706022064000": {"type": "Union", "items": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".-1.139706068167008"}]}, "139706022064336": {"type": "Union", "items": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".-2.139706068167008"}]}, "139706022053920": {"type": "Overloaded", "items": [{"nodeId": "139706068167456"}, {"nodeId": "139706068167904"}]}, "139706068167456": {"type": "Function", "typeVars": [".-1.139706068167456"], "argTypes": [{"nodeId": ".-1.139706068167456"}, {"nodeId": "139706131790000", "args": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}]}], "returnType": {"nodeId": ".-1.139706068167456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706068167456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068167456", "variance": "INVARIANT"}, "139706068167904": {"type": "Function", "typeVars": [".-1.139706068167904"], "argTypes": [{"nodeId": ".-1.139706068167904"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706022064672"}]}], "returnType": {"nodeId": ".-1.139706068167904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706068167904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068167904", "variance": "INVARIANT"}, "139706022064672": {"type": "Tuple", "items": [{"nodeId": ".1.139706043677856"}, {"nodeId": ".1.139706043677856"}]}, "139706031007312": {"type": "Concrete", "module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993043568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992777728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992775488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992775712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992773696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992775040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992774592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992774816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992774144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992774368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992773920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992772992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992773216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992772768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992770528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992771648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992772096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038879280"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}], "isAbstract": false}, "139705993043568": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992777728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065120"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065120": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992775488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065232"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065232": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992775712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065344"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065344": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992773696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065456"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065456": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992775040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065568"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065568": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992774592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065680"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065680": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992774816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065792"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065792": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992774144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022065904"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022065904": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992774368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066016"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066016": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992773920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066128"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066128": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992772992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066240"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066240": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992773216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066352"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066352": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992772768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066464"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066464": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992770528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066576"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066576": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992771648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066688"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066688": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992772096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022066800"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022066800": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139706043678192": {"type": "Concrete", "module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992767392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992767616"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064396000"}, "name": "inode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064396448"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064396896"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064397344"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064397792"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064398240"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064398688"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043678192"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705992767392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}], "returnType": {"nodeId": ".1.139706043678192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706043678192": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043678192", "variance": "INVARIANT"}, "139705992767616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}], "returnType": {"nodeId": ".1.139706043678192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706064396000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706064396448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "139706064396896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "139706064397344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706064397792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706022067248"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "139706022067248": {"type": "TypeAlias", "target": {"nodeId": "139706026229824"}}, "139706026229824": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139706064398240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706043678192"}]}], "returnType": {"nodeId": ".1.139706043678192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706064398688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706031007984": {"type": "Concrete", "module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993051072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992761344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992760000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992759776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992759552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992759328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992759104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992758880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992758656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992758432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992758208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992757984"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705993051072": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992761344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022067584"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022067584": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992760000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022067696"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022067696": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992759776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022067808"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022067808": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992759552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022067920"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022067920": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992759328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022068032"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022068032": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992759104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022297664"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022297664": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992758880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022297776"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022297776": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992758656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022297888"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022297888": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992758432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022298000"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022298000": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992758208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022298112"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022298112": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992757984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022298224"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022298224": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031008320": {"type": "Concrete", "module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993265888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992723392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992722944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992718240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992722272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992721600"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": false}, "139705993265888": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992723392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022298784"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022298784": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992722944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022298896"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022298896": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992718240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022299008"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022299008": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992722272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022299120"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022299120": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992721600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022299232"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022299232": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706031008656": {"type": "Concrete", "module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993269360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992716000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992715552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705993269360": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992716000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022307744"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022307744": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992715552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022307856"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022307856": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031008992": {"type": "Concrete", "module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064923424"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064923872"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064924320"}, "name": "close"}], "typeVars": [{"nodeId": ".1.139706031008992"}], "bases": [{"nodeId": "139706131785296", "args": [{"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706031008992"}]}]}, {"nodeId": "139706030418160", "args": [{"nodeId": "139706031008992", "args": [{"nodeId": ".1.139706031008992"}]}]}], "isAbstract": false}, "139706064923424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031008992", "args": [{"nodeId": ".1.139706031008992"}]}], "returnType": {"nodeId": "139706043678192", "args": [{"nodeId": ".1.139706031008992"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.139706031008992": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706031008992", "variance": "INVARIANT"}, "139706064923872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031008992", "args": [{"nodeId": ".1.139706031008992"}]}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "139706064924320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031008992", "args": [{"nodeId": ".1.139706031008992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031009328": {"type": "Concrete", "module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706059828000"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706059828448"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "139706039488512"}], "isAbstract": false}, "139706059828000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031009328"}, {"nodeId": "139706039488512"}, {"nodeId": "139706043672480", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}, "139706043672480": {"type": "Concrete", "module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031404112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031402208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031078784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043082880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043082992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706026872944"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043892672"}, "name": "poll"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043893120"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043893568"}, "name": "communicate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043894016"}, "name": "send_signal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043894464"}, "name": "terminate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043894912"}, "name": "kill"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043895360"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043895808"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043896256"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043672480"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031404112": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706031064672": {"type": "Union", "items": [{"nodeId": "139706031070272"}, {"nodeId": "139706131788656", "args": [{"nodeId": "139706031070384"}]}]}, "139706031070272": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706031070384": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706031402208": {"type": "Union", "items": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "N"}]}, ".1.139706043672480": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043672480", "variance": "INVARIANT"}, "139706031078784": {"type": "Union", "items": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "N"}]}, "139706043082880": {"type": "Union", "items": [{"nodeId": "139706039226704", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "N"}]}, "139706043082992": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "A"}]}, "139706026872944": {"type": "Overloaded", "items": [{"nodeId": "139706052145472"}, {"nodeId": "139706043376896"}, {"nodeId": "139706043377344"}, {"nodeId": "139706043377792"}, {"nodeId": "139706043378240"}, {"nodeId": "139706043378688"}]}, "139706052145472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027007824"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027008048"}, {"nodeId": "139706027008272"}, {"nodeId": "139706027008496"}, {"nodeId": "139706027008720"}, {"nodeId": "139706027008832"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027009168"}, {"nodeId": "139706027009392"}, {"nodeId": "139706027009504"}, {"nodeId": "139706027009728"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706027009840"}, {"nodeId": "139706038880624"}, {"nodeId": "139706027009952"}, {"nodeId": "139706027010064"}, {"nodeId": "139706027010176"}, {"nodeId": "139706027010400"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027007824": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027008048": {"type": "Union", "items": [{"nodeId": "139706027007936"}, {"nodeId": "N"}]}, "139706027007936": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027008272": {"type": "Union", "items": [{"nodeId": "139706027008160"}, {"nodeId": "N"}]}, "139706027008160": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706043083776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "139706038878944"}, {"nodeId": "139706039226704", "args": [{"nodeId": "A"}]}]}, "139706027008496": {"type": "Union", "items": [{"nodeId": "139706027008384"}, {"nodeId": "N"}]}, "139706027008384": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027008720": {"type": "Union", "items": [{"nodeId": "139706027008608"}, {"nodeId": "N"}]}, "139706027008608": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027008832": {"type": "Union", "items": [{"nodeId": "139706052145920"}, {"nodeId": "N"}]}, "139706052145920": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027009168": {"type": "Union", "items": [{"nodeId": "139706027009056"}, {"nodeId": "N"}]}, "139706027009056": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027009392": {"type": "Union", "items": [{"nodeId": "139706027009280"}, {"nodeId": "N"}]}, "139706027009280": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706031079120": {"type": "Union", "items": [{"nodeId": "139706131790000", "args": [{"nodeId": "139706039229728"}, {"nodeId": "139706031078672"}]}, {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706031074080"}]}]}, "139706031078672": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706031074080": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027009504": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027009728": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027009840": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027009952": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027010064": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027010176": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027010400": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027010288"}]}, {"nodeId": "N"}]}, "139706027010288": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043376896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027010512"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027010736"}, {"nodeId": "139706027010960"}, {"nodeId": "139706027011184"}, {"nodeId": "139706027011408"}, {"nodeId": "139706027011520"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027011856"}, {"nodeId": "139706027012080"}, {"nodeId": "139706027012192"}, {"nodeId": "139706027012416"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706027012528"}, {"nodeId": "139706027012640"}, {"nodeId": "139706038880624"}, {"nodeId": "139706027012752"}, {"nodeId": "139706027012864"}, {"nodeId": "139706027013088"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027010512": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027010736": {"type": "Union", "items": [{"nodeId": "139706027010624"}, {"nodeId": "N"}]}, "139706027010624": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027010960": {"type": "Union", "items": [{"nodeId": "139706027010848"}, {"nodeId": "N"}]}, "139706027010848": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027011184": {"type": "Union", "items": [{"nodeId": "139706027011072"}, {"nodeId": "N"}]}, "139706027011072": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027011408": {"type": "Union", "items": [{"nodeId": "139706027011296"}, {"nodeId": "N"}]}, "139706027011296": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027011520": {"type": "Union", "items": [{"nodeId": "139706052146816"}, {"nodeId": "N"}]}, "139706052146816": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027011856": {"type": "Union", "items": [{"nodeId": "139706027011744"}, {"nodeId": "N"}]}, "139706027011744": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027012080": {"type": "Union", "items": [{"nodeId": "139706027011968"}, {"nodeId": "N"}]}, "139706027011968": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706027012192": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027012416": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027012528": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027012640": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027012752": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027012864": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027013088": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027012976"}]}, {"nodeId": "N"}]}, "139706027012976": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043377344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027013200"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027013424"}, {"nodeId": "139706027013648"}, {"nodeId": "139706027013872"}, {"nodeId": "139706027014096"}, {"nodeId": "139706027014208"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027014544"}, {"nodeId": "139706027014768"}, {"nodeId": "0"}, {"nodeId": "139706027015104"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706027015216"}, {"nodeId": "139706027015328"}, {"nodeId": "139706027015440"}, {"nodeId": "139706027015552"}, {"nodeId": "139706027015664"}, {"nodeId": "139706027015888"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027013200": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027013424": {"type": "Union", "items": [{"nodeId": "139706027013312"}, {"nodeId": "N"}]}, "139706027013312": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027013648": {"type": "Union", "items": [{"nodeId": "139706027013536"}, {"nodeId": "N"}]}, "139706027013536": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027013872": {"type": "Union", "items": [{"nodeId": "139706027013760"}, {"nodeId": "N"}]}, "139706027013760": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027014096": {"type": "Union", "items": [{"nodeId": "139706027013984"}, {"nodeId": "N"}]}, "139706027013984": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027014208": {"type": "Union", "items": [{"nodeId": "139706052145024"}, {"nodeId": "N"}]}, "139706052145024": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027014544": {"type": "Union", "items": [{"nodeId": "139706027014432"}, {"nodeId": "N"}]}, "139706027014432": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027014768": {"type": "Union", "items": [{"nodeId": "139706027014656"}, {"nodeId": "N"}]}, "139706027014656": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706027015104": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027015216": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027015328": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027015440": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027015552": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027015664": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027015888": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027015776"}]}, {"nodeId": "N"}]}, "139706027015776": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043377792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "139706027016000"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027081904"}, {"nodeId": "139706027082128"}, {"nodeId": "139706027082352"}, {"nodeId": "139706027082576"}, {"nodeId": "139706027082688"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027083024"}, {"nodeId": "139706027083248"}, {"nodeId": "139706027083360"}, {"nodeId": "139706027083584"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "0"}, {"nodeId": "139706027083808"}, {"nodeId": "139706027083920"}, {"nodeId": "139706027084032"}, {"nodeId": "139706027084144"}, {"nodeId": "139706027084368"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027016000": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027081904": {"type": "Union", "items": [{"nodeId": "139706027081792"}, {"nodeId": "N"}]}, "139706027081792": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027082128": {"type": "Union", "items": [{"nodeId": "139706027082016"}, {"nodeId": "N"}]}, "139706027082016": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027082352": {"type": "Union", "items": [{"nodeId": "139706027082240"}, {"nodeId": "N"}]}, "139706027082240": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027082576": {"type": "Union", "items": [{"nodeId": "139706027082464"}, {"nodeId": "N"}]}, "139706027082464": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027082688": {"type": "Union", "items": [{"nodeId": "139706052144576"}, {"nodeId": "N"}]}, "139706052144576": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027083024": {"type": "Union", "items": [{"nodeId": "139706027082912"}, {"nodeId": "N"}]}, "139706027082912": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027083248": {"type": "Union", "items": [{"nodeId": "139706027083136"}, {"nodeId": "N"}]}, "139706027083136": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706027083360": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027083584": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027083808": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027083920": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027084032": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027084144": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027084368": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027084256"}]}, {"nodeId": "N"}]}, "139706027084256": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043378240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "139706039229728"}]}, {"nodeId": "139706027084480"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027084704"}, {"nodeId": "139706027084928"}, {"nodeId": "139706027085152"}, {"nodeId": "139706027085376"}, {"nodeId": "139706027085488"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027085824"}, {"nodeId": "139706027086048"}, {"nodeId": "139706027086272"}, {"nodeId": "139706027086496"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706027086720"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139706027086832"}, {"nodeId": "139706027086944"}, {"nodeId": "139706027087168"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027084480": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027084704": {"type": "Union", "items": [{"nodeId": "139706027084592"}, {"nodeId": "N"}]}, "139706027084592": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027084928": {"type": "Union", "items": [{"nodeId": "139706027084816"}, {"nodeId": "N"}]}, "139706027084816": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027085152": {"type": "Union", "items": [{"nodeId": "139706027085040"}, {"nodeId": "N"}]}, "139706027085040": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027085376": {"type": "Union", "items": [{"nodeId": "139706027085264"}, {"nodeId": "N"}]}, "139706027085264": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027085488": {"type": "Union", "items": [{"nodeId": "139706052144128"}, {"nodeId": "N"}]}, "139706052144128": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027085824": {"type": "Union", "items": [{"nodeId": "139706027085712"}, {"nodeId": "N"}]}, "139706027085712": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027086048": {"type": "Union", "items": [{"nodeId": "139706027085936"}, {"nodeId": "N"}]}, "139706027085936": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706027086272": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706027086496": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027086720": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "139706027086832": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027086944": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027087168": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027087056"}]}, {"nodeId": "N"}]}, "139706027087056": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043378688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": "A"}]}, {"nodeId": "139706027087392"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027087616"}, {"nodeId": "139706027087840"}, {"nodeId": "139706027088064"}, {"nodeId": "139706027088288"}, {"nodeId": "139706027088400"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706027088736"}, {"nodeId": "139706027088960"}, {"nodeId": "139706027089072"}, {"nodeId": "139706027089296"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131788320", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706027089408"}, {"nodeId": "139706027089520"}, {"nodeId": "139706027089632"}, {"nodeId": "139706027089744"}, {"nodeId": "139706027089856"}, {"nodeId": "139706027090080"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "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"]}, "139706027087392": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027087616": {"type": "Union", "items": [{"nodeId": "139706027087504"}, {"nodeId": "N"}]}, "139706027087504": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027087840": {"type": "Union", "items": [{"nodeId": "139706027087728"}, {"nodeId": "N"}]}, "139706027087728": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027088064": {"type": "Union", "items": [{"nodeId": "139706027087952"}, {"nodeId": "N"}]}, "139706027087952": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027088288": {"type": "Union", "items": [{"nodeId": "139706027088176"}, {"nodeId": "N"}]}, "139706027088176": {"type": "TypeAlias", "target": {"nodeId": "139706043083776"}}, "139706027088400": {"type": "Union", "items": [{"nodeId": "139706052143680"}, {"nodeId": "N"}]}, "139706052143680": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "139706027088736": {"type": "Union", "items": [{"nodeId": "139706027088624"}, {"nodeId": "N"}]}, "139706027088624": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706027088960": {"type": "Union", "items": [{"nodeId": "139706027088848"}, {"nodeId": "N"}]}, "139706027088848": {"type": "TypeAlias", "target": {"nodeId": "139706031079120"}}, "139706027089072": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027089296": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "139706027089408": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, "139706027089520": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027089632": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706027089744": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027089856": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706027090080": {"type": "Union", "items": [{"nodeId": "139706131784960", "args": [{"nodeId": "139706027089968"}]}, {"nodeId": "N"}]}, "139706027089968": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706043892672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}], "returnType": {"nodeId": "139706027090192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027090192": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706043893120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "139706027090304"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "139706027090304": {"type": "Union", "items": [{"nodeId": "139706038879280"}, {"nodeId": "N"}]}, "139706043893568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "139706027090416"}, {"nodeId": "139706027090528"}], "returnType": {"nodeId": "139706027090752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}, "139706027090416": {"type": "Union", "items": [{"nodeId": ".1.139706043672480"}, {"nodeId": "N"}]}, "139706027090528": {"type": "Union", "items": [{"nodeId": "139706038879280"}, {"nodeId": "N"}]}, "139706027090752": {"type": "Tuple", "items": [{"nodeId": ".1.139706043672480"}, {"nodeId": ".1.139706043672480"}]}, "139706043894016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}, "139706043894464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043894912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043895360": {"type": "Function", "typeVars": [".-1.139706043895360"], "argTypes": [{"nodeId": ".-1.139706043895360"}], "returnType": {"nodeId": ".-1.139706043895360"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706043895360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043895360", "variance": "INVARIANT"}, "139706043895808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672480", "args": [{"nodeId": ".1.139706043672480"}]}, {"nodeId": "139706027090864"}, {"nodeId": "139706027090976"}, {"nodeId": "139706027091088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706027090864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706027090976": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706027091088": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706043896256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706059828448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031009328"}], "returnType": {"nodeId": "139706022435456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022435456": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706031009664": {"type": "Concrete", "module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993278544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992705664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992704768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992704544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992704096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992704320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038879280"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038879280"}]}], "isAbstract": false}, "139705993278544": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992705664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022437248"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022437248": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992704768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022437136"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022437136": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992704544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022437472"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022437472": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992704096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022437808"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022437808": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139705992704320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022437920"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022437920": {"type": "Tuple", "items": [{"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}, {"nodeId": "139706038879280"}]}, "139706031010000": {"type": "Concrete", "module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993280784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992914400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992915520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992915744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992915968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992916192"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705993280784": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705992914400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022439376"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022439376": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992915520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022439712"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022439712": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992915744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022440048"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022440048": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992915968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022440160"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022440160": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139705992916192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022440272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022440272": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706031010336": {"type": "Concrete", "module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705993462944"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706059994080"}, "name": "__new__"}, {"kind": "Variable", "name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705992917536"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706030553264", "args": [{"nodeId": "139706038878944"}]}, {"nodeId": "139706038881632", "args": [{"nodeId": "139706038878944"}]}], "isAbstract": false}, "139705993462944": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}]}, "139706059994080": {"type": "Function", "typeVars": [".-1.139706059994080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": ".-1.139706059994080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}, ".-1.139706059994080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706059994080", "variance": "INVARIANT"}, "139705992917536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022443520"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022443520": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}]}, "139706039493216": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706039493888": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984682912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039493552"}], "isAbstract": true}, "139705984682912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039493888"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706039494224": {"type": "Concrete", "module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060124480"}, "name": "is_package"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060124928"}, "name": "get_code"}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984682016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060125824"}, "name": "exec_module"}, {"kind": "Variable", "name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984681568"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039493552"}], "isAbstract": true}, "139706060124480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494224"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706060124928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494224"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022822400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706022822400": {"type": "Union", "items": [{"nodeId": "139706043662736"}, {"nodeId": "N"}]}, "139705984682016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494224"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022822512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706022822512": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706060125824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494224"}, {"nodeId": "139706043664080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "139705984681568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022822736"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706043662736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}, "139706022822736": {"type": "Union", "items": [{"nodeId": "139706022822624"}, {"nodeId": "139706038880624"}]}, "139706022822624": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706039494560": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984680672"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039494224"}], "isAbstract": true}, "139705984680672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494560"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706039494896": {"type": "Concrete", "module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060127168"}, "name": "path_mtime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060127616"}, "name": "set_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063945792"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063946240"}, "name": "path_stats"}], "typeVars": [], "bases": [{"nodeId": "139706039493888"}, {"nodeId": "139706039494560"}], "isAbstract": true}, "139706060127168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494896"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038879280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706060127616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494896"}, {"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}, "139706063945792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494896"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022822848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706022822848": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706063946240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039494896"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131790000", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706039495232": {"type": "Concrete", "module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063946688"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063947136"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063947584"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "139706039493216"}], "isAbstract": false}, "139706063946688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495232"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022823072"}], "returnType": {"nodeId": "139706022823184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "139706022823072": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022823184": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706063947136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706063947584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495232"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022823296"}, {"nodeId": "139706022823408"}], "returnType": {"nodeId": "139706022823520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "139706022823296": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022823408": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022823520": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139706039495568": {"type": "Concrete", "module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063948032"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063948480"}, "name": "find_loader"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063948928"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063949376"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "139706039493216"}], "isAbstract": false}, "139706063948032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495568"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022823632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706022823632": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706063948480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495568"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022823968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706022823968": {"type": "Tuple", "items": [{"nodeId": "139706022823744"}, {"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}]}, "139706022823744": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706063948928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706063949376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495568"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022824080"}], "returnType": {"nodeId": "139706022824192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}, "139706022824080": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022824192": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139706039495904": {"type": "Concrete", "module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063949824"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063950272"}, "name": "get_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063950720"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063951168"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "139706039493888"}, {"nodeId": "139706039494560"}], "isAbstract": true}, "139706063949824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495904"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "139706063950272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495904"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706063950720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495904"}, {"nodeId": "139706022824304"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "139706022824304": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706063951168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039495904"}, {"nodeId": "139706022824416"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "139706022824416": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706039496240": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984462944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984462496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984461824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984462720"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139705984462944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496240"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039226704", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "139705984462496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496240"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "139705984461824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496240"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139705984462720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496240"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039496576": {"type": "Protocol", "module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984460928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984460480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984460256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984459584"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022822064"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705984460032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984459360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984459136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984458912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}, "139705984460928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984460480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984460256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706039496576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984459584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039496576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}, "139706022822064": {"type": "Overloaded", "items": [{"nodeId": "139706063956096"}, {"nodeId": "139706063956544"}, {"nodeId": "139706063956992"}, {"nodeId": "139706063957440"}, {"nodeId": "139706063957888"}, {"nodeId": "139706063958336"}, {"nodeId": "139706063958784"}]}, "139706063956096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022824640"}, {"nodeId": "139706038878944"}, {"nodeId": "139706022824752"}, {"nodeId": "139706022824864"}, {"nodeId": "139706022824976"}], "returnType": {"nodeId": "139706039488512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022824640": {"type": "TypeAlias", "target": {"nodeId": "139706030596704"}}, "139706030596704": {"type": "Union", "items": [{"nodeId": "139706030598608"}, {"nodeId": "139706030598720"}, {"nodeId": "139706030596592"}]}, "139706030598608": {"type": "TypeAlias", "target": {"nodeId": "139706030596144"}}, "139706030596144": {"type": "Union", "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"}]}, "139706030598720": {"type": "TypeAlias", "target": {"nodeId": "139706030598272"}}, "139706030598272": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "139706030596592": {"type": "TypeAlias", "target": {"nodeId": "139706030600288"}}, "139706030600288": {"type": "Union", "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"}]}, "139706022824752": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022824864": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022824976": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706063956544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022825088"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039486160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022825088": {"type": "TypeAlias", "target": {"nodeId": "139706030602416"}}, "139706030602416": {"type": "Union", "items": [{"nodeId": "139706030602640"}, {"nodeId": "139706030602752"}, {"nodeId": "139706030601408"}]}, "139706030602640": {"type": "TypeAlias", "target": {"nodeId": "139706030596816"}}, "139706030596816": {"type": "Union", "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"}]}, "139706030602752": {"type": "TypeAlias", "target": {"nodeId": "139706030736096"}}, "139706030736096": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "139706030601408": {"type": "TypeAlias", "target": {"nodeId": "139706030602304"}}, "139706030602304": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "139706063956992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022825312"}, {"nodeId": "139706022826656"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039487504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022825312": {"type": "TypeAlias", "target": {"nodeId": "139706030596816"}}, "139706022826656": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706063957440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022827888"}, {"nodeId": "139706022828000"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039487168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022827888": {"type": "TypeAlias", "target": {"nodeId": "139706030602304"}}, "139706022828000": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706063957888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022829008"}, {"nodeId": "139706022825760"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039486832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022829008": {"type": "TypeAlias", "target": {"nodeId": "139706030736096"}}, "139706022825760": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706063958336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022826768"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022826768": {"type": "TypeAlias", "target": {"nodeId": "139706030602416"}}, "139706063958784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706022826320"}, {"nodeId": "139706022828112"}, {"nodeId": "139706022828896"}], "returnType": {"nodeId": "139706039226704", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022826320": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022828112": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022828896": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705984460032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984459360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039496576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139705984459136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984458912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496576"}, {"nodeId": "139706022826992"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "139706022826992": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706039496912": {"type": "Concrete", "module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984457792"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706063961472"}, "name": "open_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064126016"}, "name": "resource_path"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064126464"}, "name": "is_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706064126912"}, "name": "contents"}], "typeVars": [], "bases": [{"nodeId": "139706039496240"}], "isAbstract": true}, "139705984457792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496912"}], "returnType": {"nodeId": "139706039496576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706063961472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496912"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039486832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "139706064126016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496912"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "139706064126464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496912"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706064126912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039496912"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031011680": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984409984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984410432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984409536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984409088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984408640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984406624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984407968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984406848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984405056"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039495232"}, {"nodeId": "139706039494224"}], "isAbstract": false}, "139705984409984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022540256"}], "returnType": {"nodeId": "139706022540368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "139706022540256": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022540368": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139705984410432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022540480"}, {"nodeId": "139706022540592"}], "returnType": {"nodeId": "139706022540704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "139706022540480": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022540592": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022540704": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139705984409536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984409088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984408640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984406624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984407968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "139705984406848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492544"}], "returnType": {"nodeId": "139706022540816"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "139706022540816": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139705984405056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "139706031012016": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984405280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984404384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984403488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984403936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984403040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984402592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984402144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984401472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984384160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039495232"}, {"nodeId": "139706039494224"}], "isAbstract": false}, "139705984405280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022540928"}], "returnType": {"nodeId": "139706022541040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "139706022540928": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022541040": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139705984404384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022541152"}, {"nodeId": "139706022541264"}], "returnType": {"nodeId": "139706022541376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "139706022541152": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022541264": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022541376": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139705984403488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984403936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984403040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984402592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "139705984402144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}, "139705984401472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492544"}], "returnType": {"nodeId": "139706022541488"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "139706022541488": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139705984384160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043664080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "139706031012352": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984383040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984382592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039495232"}], "isAbstract": false}, "139705984383040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022541600"}], "returnType": {"nodeId": "139706022541712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "139706022541600": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022541712": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139705984382592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022541824"}, {"nodeId": "139706022541936"}], "returnType": {"nodeId": "139706022542048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "139706022541824": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022541936": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022542048": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139706039492880": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984381024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984380576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984381472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984380128"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139705984381024": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}, "139705984380576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031011008"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706039492208"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}, "139706031011008": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706026233072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068282368"}, "name": "__init__"}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989264128"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706026233072": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706068282368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031011008"}, {"nodeId": "139706022537232"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}, "139706022537232": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705989264128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031011008"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039492208": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068284608"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068285056"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068285504"}, "name": "locate_file"}], "typeVars": [], "bases": [{"nodeId": "139706039491872"}], "isAbstract": false}, "139706068284608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492208"}, {"nodeId": "139706031281136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706031281136": {"type": "Concrete", "module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022072544"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051803200"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051803648"}, "name": "__exit__"}, {"kind": "Variable", "name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705997696064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051804544"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051477568"}, "name": "chmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051478912"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051479360"}, "name": "glob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051479808"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051480256"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051480704"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051481152"}, "name": "is_socket"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051481600"}, "name": "is_fifo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051482048"}, "name": "is_block_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051482496"}, "name": "is_char_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051482944"}, "name": "iterdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051483392"}, "name": "lchmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051483840"}, "name": "lstat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051484288"}, "name": "mkdir"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022053360"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051487872"}, "name": "owner"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051488320"}, "name": "group"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051488768"}, "name": "is_mount"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051489216"}, "name": "readlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051489664"}, "name": "rename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051490112"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051491456"}, "name": "resolve"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051491904"}, "name": "rglob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051492352"}, "name": "rmdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051492800"}, "name": "symlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051493248"}, "name": "hardlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051362880"}, "name": "touch"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051363328"}, "name": "unlink"}, {"kind": "Variable", "name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705997698528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051364672"}, "name": "absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051365120"}, "name": "expanduser"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051365568"}, "name": "read_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051366016"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051366464"}, "name": "samefile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051366912"}, "name": "write_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051367360"}, "name": "write_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051368256"}, "name": "link_to"}], "typeVars": [], "bases": [{"nodeId": "139706031280128"}], "isAbstract": false}, "139706022072544": {"type": "Function", "typeVars": [".-1.139706022072544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706022058960"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706022072544"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, "139706022058960": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706030589088": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}]}, ".-1.139706022072544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022072544", "variance": "INVARIANT"}, "139706051803200": {"type": "Function", "typeVars": [".-1.139706051803200"], "argTypes": [{"nodeId": ".-1.139706051803200"}], "returnType": {"nodeId": ".-1.139706051803200"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706051803200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051803200", "variance": "INVARIANT"}, "139706051803648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022059184"}, {"nodeId": "139706022059296"}, {"nodeId": "139706022059408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706022059184": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706022059296": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706022059408": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139705997696064": {"type": "Function", "typeVars": [".-1.139705997696064"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139705997696064"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139705997696064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705997696064", "variance": "INVARIANT"}, "139706051804544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706022059520"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "139706022059520": {"type": "TypeAlias", "target": {"nodeId": "139706026229824"}}, "139706051477568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}, "139706051478912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051479360": {"type": "Function", "typeVars": [".-1.139706051479360"], "argTypes": [{"nodeId": ".-1.139706051479360"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".-1.139706051479360"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.139706051479360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051479360", "variance": "INVARIANT"}, "139706051479808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051480256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051480704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051481152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051481600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051482048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051482496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051482944": {"type": "Function", "typeVars": [".-1.139706051482944"], "argTypes": [{"nodeId": ".-1.139706051482944"}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".-1.139706051482944"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706051482944": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051482944", "variance": "INVARIANT"}, "139706051483392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}, "139706051483840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706022059632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022059632": {"type": "TypeAlias", "target": {"nodeId": "139706026229824"}}, "139706051484288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}, "139706022053360": {"type": "Overloaded", "items": [{"nodeId": "139706051484736"}, {"nodeId": "139706051485184"}, {"nodeId": "139706051485632"}, {"nodeId": "139706051486080"}, {"nodeId": "139706051486528"}, {"nodeId": "139706051486976"}, {"nodeId": "139706051487424"}]}, "139706051484736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022059856"}, {"nodeId": "139706038878944"}, {"nodeId": "139706022059968"}, {"nodeId": "139706022060080"}, {"nodeId": "139706022060192"}], "returnType": {"nodeId": "139706039488512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022059856": {"type": "TypeAlias", "target": {"nodeId": "139706030596704"}}, "139706022059968": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022060080": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022060192": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706051485184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022060304"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039486160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022060304": {"type": "TypeAlias", "target": {"nodeId": "139706030602416"}}, "139706051485632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022060528"}, {"nodeId": "139706022061872"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039487504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022060528": {"type": "TypeAlias", "target": {"nodeId": "139706030596816"}}, "139706022061872": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706051486080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022063104"}, {"nodeId": "139706022063216"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039487168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022063104": {"type": "TypeAlias", "target": {"nodeId": "139706030602304"}}, "139706022063216": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706051486528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022064224"}, {"nodeId": "139706022060976"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039486832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022064224": {"type": "TypeAlias", "target": {"nodeId": "139706030736096"}}, "139706022060976": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "139706051486976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022061984"}, {"nodeId": "139706038878944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139706039227040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022061984": {"type": "TypeAlias", "target": {"nodeId": "139706030602416"}}, "139706051487424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}, {"nodeId": "139706022061536"}, {"nodeId": "139706022063328"}, {"nodeId": "139706022064112"}], "returnType": {"nodeId": "139706039226704", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "139706022061536": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022063328": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022064112": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706051487872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051488320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051488768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051489216": {"type": "Function", "typeVars": [".-1.139706051489216"], "argTypes": [{"nodeId": ".-1.139706051489216"}], "returnType": {"nodeId": ".-1.139706051489216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706051489216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051489216", "variance": "INVARIANT"}, "139706051489664": {"type": "Function", "typeVars": [".-1.139706051489664"], "argTypes": [{"nodeId": ".-1.139706051489664"}, {"nodeId": "139706022062208"}], "returnType": {"nodeId": ".-1.139706051489664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.139706051489664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051489664", "variance": "INVARIANT"}, "139706022062208": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706031280128"}]}, "139706031280128": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997672960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997672512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997639264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997639040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997638816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997638592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997638368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997638144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022070752"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051792448"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051792896"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051793344"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051793792"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051794240"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051794688"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022071424"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022071648"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051796032"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051796480"}, "name": "as_posix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051796928"}, "name": "as_uri"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051797376"}, "name": "is_absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051797824"}, "name": "is_reserved"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051798272"}, "name": "is_relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051798720"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022071200"}, "name": "relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051799616"}, "name": "with_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051800064"}, "name": "with_stem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051800512"}, "name": "with_suffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706022072320"}, "name": "joinpath"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997634560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705997635008"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706051802304"}, "name": "__class_getitem__"}], "typeVars": [], "bases": [{"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": false}, "139705997672960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997672512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997639264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997639040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997638816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997638592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997638368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705997638144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022070752": {"type": "Function", "typeVars": [".-1.139706022070752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706022058176"}], "returnType": {"nodeId": ".-1.139706022070752"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "139706022058176": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, ".-1.139706022070752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022070752", "variance": "INVARIANT"}, "139706051792448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706051792896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051793344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706051793792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706051794240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706051794688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706022071424": {"type": "Function", "typeVars": [".-1.139706022071424"], "argTypes": [{"nodeId": ".-1.139706022071424"}, {"nodeId": "139706022058288"}], "returnType": {"nodeId": ".-1.139706022071424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706022071424": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022071424", "variance": "INVARIANT"}, "139706022058288": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706022071648": {"type": "Function", "typeVars": [".-1.139706022071648"], "argTypes": [{"nodeId": ".-1.139706022071648"}, {"nodeId": "139706022058400"}], "returnType": {"nodeId": ".-1.139706022071648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.139706022071648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022071648", "variance": "INVARIANT"}, "139706022058400": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706051796032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051796480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051796928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051797376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051797824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051798272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706022058512"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, "139706022058512": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706051798720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031280128"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}, "139706022071200": {"type": "Function", "typeVars": [".-1.139706022071200"], "argTypes": [{"nodeId": ".-1.139706022071200"}, {"nodeId": "139706022058624"}], "returnType": {"nodeId": ".-1.139706022071200"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.139706022071200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022071200", "variance": "INVARIANT"}, "139706022058624": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706051799616": {"type": "Function", "typeVars": [".-1.139706051799616"], "argTypes": [{"nodeId": ".-1.139706051799616"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706051799616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, ".-1.139706051799616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051799616", "variance": "INVARIANT"}, "139706051800064": {"type": "Function", "typeVars": [".-1.139706051800064"], "argTypes": [{"nodeId": ".-1.139706051800064"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706051800064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}, ".-1.139706051800064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051800064", "variance": "INVARIANT"}, "139706051800512": {"type": "Function", "typeVars": [".-1.139706051800512"], "argTypes": [{"nodeId": ".-1.139706051800512"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706051800512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}, ".-1.139706051800512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051800512", "variance": "INVARIANT"}, "139706022072320": {"type": "Function", "typeVars": [".-1.139706022072320"], "argTypes": [{"nodeId": ".-1.139706022072320"}, {"nodeId": "139706022058736"}], "returnType": {"nodeId": ".-1.139706022072320"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.139706022072320": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706022072320", "variance": "INVARIANT"}, "139706022058736": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139705997634560": {"type": "Function", "typeVars": [".-1.139705997634560"], "argTypes": [{"nodeId": ".-1.139705997634560"}], "returnType": {"nodeId": "139706131788656", "args": [{"nodeId": ".-1.139705997634560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705997634560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705997634560", "variance": "INVARIANT"}, "139705997635008": {"type": "Function", "typeVars": [".-1.139705997635008"], "argTypes": [{"nodeId": ".-1.139705997635008"}], "returnType": {"nodeId": ".-1.139705997635008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139705997635008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705997635008", "variance": "INVARIANT"}, "139706051802304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}, "139706051490112": {"type": "Function", "typeVars": [".-1.139706051490112"], "argTypes": [{"nodeId": ".-1.139706051490112"}, {"nodeId": "139706022064896"}], "returnType": {"nodeId": ".-1.139706051490112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.139706051490112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051490112", "variance": "INVARIANT"}, "139706022064896": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706031280128"}]}, "139706051491456": {"type": "Function", "typeVars": [".-1.139706051491456"], "argTypes": [{"nodeId": ".-1.139706051491456"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": ".-1.139706051491456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}, ".-1.139706051491456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051491456", "variance": "INVARIANT"}, "139706051491904": {"type": "Function", "typeVars": [".-1.139706051491904"], "argTypes": [{"nodeId": ".-1.139706051491904"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".-1.139706051491904"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.139706051491904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051491904", "variance": "INVARIANT"}, "139706051492352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051492800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022062096"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}, "139706022062096": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706031281136"}]}, "139706051493248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022062432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "139706022062432": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706031281136"}]}, "139706051362880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}, "139706051363328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}, "139705997698528": {"type": "Function", "typeVars": [".-1.139705997698528"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.139705997698528"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.139705997698528": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705997698528", "variance": "INVARIANT"}, "139706051364672": {"type": "Function", "typeVars": [".-1.139706051364672"], "argTypes": [{"nodeId": ".-1.139706051364672"}], "returnType": {"nodeId": ".-1.139706051364672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706051364672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051364672", "variance": "INVARIANT"}, "139706051365120": {"type": "Function", "typeVars": [".-1.139706051365120"], "argTypes": [{"nodeId": ".-1.139706051365120"}], "returnType": {"nodeId": ".-1.139706051365120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706051365120": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706051365120", "variance": "INVARIANT"}, "139706051365568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706051366016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022065008"}, {"nodeId": "139706022060864"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "139706022065008": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022060864": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706051366464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022061312"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}, "139706022061312": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706051366912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022061424"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "139706022061424": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706051367360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022062320"}, {"nodeId": "139706022062544"}, {"nodeId": "139706022062656"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}, "139706022062320": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022062544": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706022062656": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706051368256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031281136"}, {"nodeId": "139706022062768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "139706022062768": {"type": "TypeAlias", "target": {"nodeId": "139706030591552"}}, "139706068285056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492208"}, {"nodeId": "139706022537456"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "139706022537456": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706068285504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039492208"}, {"nodeId": "139706022537568"}], "returnType": {"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706022537568": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139706039491872": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989300736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989300512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989266368"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022534544"}, "items": [{"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "discover"}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989266592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989265920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989266816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989265696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989265472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989265248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989265024"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139705989300736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022536336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "139706022536336": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705989300512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}, {"nodeId": "139706022536448"}], "returnType": {"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "139706022536448": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139705989266368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039491872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}, "139706022534544": {"type": "Overloaded", "items": [{"nodeId": "139706068277440"}, {"nodeId": "139706068277888"}]}, "139706068277440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706031011008"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706039491872"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}, "139706068277888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "139706022536672"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706039491872"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}, "139706022536672": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139705989266592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022536896"}], "returnType": {"nodeId": "139706039492208"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}, "139706022536896": {"type": "TypeAlias", "target": {"nodeId": "139706030589088"}}, "139705989265920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706039489184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039489184": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060601856"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060602304"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060602752"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056261696"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056262144"}, "name": "get_all"}, {"kind": "Variable", "name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989370752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}, "139706060601856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489184"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706060602304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489184"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706060602752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489184"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706056261696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489184"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706056262144": {"type": "Function", "typeVars": [".-1.139706056262144"], "argTypes": [{"nodeId": "139706039489184"}, {"nodeId": "139706038880624"}, {"nodeId": ".-1.139706056262144"}], "returnType": {"nodeId": "139706022533984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.139706056262144": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706056262144", "variance": "INVARIANT"}, "139706022533984": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.139706056262144"}]}, "139705989370752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489184"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706022534096"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022534096": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}, "139705989266816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706039490864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039490864": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043907008"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043907456"}, "name": "select"}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989305216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989307232"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706047550672"}]}], "isAbstract": false}, "139706043907008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039490864"}, {"nodeId": "139706022535216"}], "returnType": {"nodeId": "139706022536000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706022535216": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706022536000": {"type": "TypeAlias", "target": {"nodeId": "139706031203136"}}, "139706031203136": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706043907456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039490864"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706039490864"}, "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"]}, "139705989305216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039490864"}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705989307232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039490864"}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706047550672": {"type": "TypeAlias", "target": {"nodeId": "139706031203136"}}, "139705989265696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705989265472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706022537008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022537008": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706031282480"}]}, {"nodeId": "N"}]}, "139706031282480": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068274304"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068274752"}, "name": "read_binary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068275200"}, "name": "locate"}, {"kind": "Variable", "name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031202912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031204928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039491872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706031280464"}], "isAbstract": false}, "139706068274304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282480"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "139706068274752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282480"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068275200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031282480"}], "returnType": {"nodeId": "139706031007648", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031202912": {"type": "Union", "items": [{"nodeId": "139706039491536"}, {"nodeId": "N"}]}, "139706039491536": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068275648"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706068275648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491536"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "139706031204928": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706031280464": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139706031280128"}], "isAbstract": false}, "139705989265248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706022537120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022537120": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139705989265024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491872"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705984381472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022542160"}, {"nodeId": "139706022542272"}], "returnType": {"nodeId": "139706022542384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "139706022542160": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022542272": {"type": "Union", "items": [{"nodeId": "139706043664080"}, {"nodeId": "N"}]}, "139706022542384": {"type": "Union", "items": [{"nodeId": "139706039492544"}, {"nodeId": "N"}]}, "139705984380128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022542496"}], "returnType": {"nodeId": "139706022542608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "139706022542496": {"type": "Union", "items": [{"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}, {"nodeId": "N"}]}, "139706022542608": {"type": "Union", "items": [{"nodeId": "139706039493552"}, {"nodeId": "N"}]}, "139706031012688": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068566752"}, "name": "__init__"}, {"kind": "Variable", "name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705984379456"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039495568"}], "isAbstract": false}, "139706068566752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031012688"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022542832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}, "139706022542832": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}, "139705984379456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706022543056"}], "returnType": {"nodeId": "139706022445344"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}, "139706022543056": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}, "139706022445344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039495568"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706031013024": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068567648"}, "name": "set_data"}], "typeVars": [], "bases": [{"nodeId": "139706039495904"}, {"nodeId": "139706039494896"}], "isAbstract": false}, "139706068567648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031013024"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022543168"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}, "139706022543168": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706031013360": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039495904"}, {"nodeId": "139706039494896"}], "isAbstract": false}, "139706031276096": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068568096"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068568544"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068568992"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068569440"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068569888"}, "name": "exec_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068570336"}, "name": "get_code"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068570784"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "139706039494560"}], "isAbstract": false}, "139706068568096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}, "139706068568544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706022821952"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "139706022821952": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706068568992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706068569440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706039492544"}], "returnType": {"nodeId": "139706043664080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "139706068569888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706043664080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "139706068570336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "139706068570784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031276096"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706043674160": {"type": "Concrete", "module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043081648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043077952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068573920"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706043081648": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706043077952": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706068573920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043674160"}, {"nodeId": "139706038880624"}, {"nodeId": "139706027094672"}, {"nodeId": "139706027094336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}, "139706027094672": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706027094336": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706043674496": {"type": "Concrete", "module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068574368"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "139706038878944"}], "isAbstract": false}, "139706068574368": {"type": "Function", "typeVars": [".-1.139706068574368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706068574368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}, ".-1.139706068574368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068574368", "variance": "INVARIANT"}, "139706030539824": {"type": "Protocol", "module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068575488"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068575936"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068576384"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["close", "seek", "write"]}, "139706068575488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030539824"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "139706068575936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030539824"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706068576384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030539824"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706030540160": {"type": "Protocol", "module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068576832"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068577280"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068577728"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["close", "read", "seek"]}, "139706068576832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030540160"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "139706068577280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030540160"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "139706068577728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030540160"}], "returnType": {"nodeId": "139706131780928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706031277776": {"type": "Protocol", "module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "139706030539824"}, {"nodeId": "139706030540160"}], "protocolMembers": ["close", "read", "seek", "write"]}, "139706030540496": {"type": "Protocol", "module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068578176"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068578176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030540496"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706018384352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "139706018384352": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706030540832": {"type": "Protocol", "module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068578624"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068578624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030540832"}, {"nodeId": "139706039229728"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706018384576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "139706018384576": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706030541168": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068579072"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068579072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030541168"}, {"nodeId": "139706030540160"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706031279456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "139706031279456": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030540160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060361728"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060362176"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060362624"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060363072"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060363520"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060363968"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060364416"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060364864"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060365312"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060365760"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706030542512"}], "isAbstract": false}, "139706060361728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706030540160"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "139706060362176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}, "139706060362624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706018390512"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}, "139706018390512": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060363072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706018390624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}, "139706018390624": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060363520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060363968": {"type": "Function", "typeVars": [".-1.139706060363968"], "argTypes": [{"nodeId": ".-1.139706060363968"}], "returnType": {"nodeId": ".-1.139706060363968"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060363968": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060363968", "variance": "INVARIANT"}, "139706060364416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706018390736"}, {"nodeId": "139706018390848"}, {"nodeId": "139706018390960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706018390736": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018390848": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706018390960": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706060364864": {"type": "Function", "typeVars": [".-1.139706060364864"], "argTypes": [{"nodeId": ".-1.139706060364864"}], "returnType": {"nodeId": ".-1.139706060364864"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060364864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060364864", "variance": "INVARIANT"}, "139706060365312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060365760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279456"}, {"nodeId": "139706038880624"}, {"nodeId": "139706023011360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706023011360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706030542512": {"type": "Concrete", "module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068853568"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068854016"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706068853568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542512"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706018388384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "139706018388384": {"type": "Tuple", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706038878944"}]}, "139706068854016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542512"}, {"nodeId": "139706039229728"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706018388608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "139706018388608": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706030541504": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068579520"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068579520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030541504"}, {"nodeId": "139706030539824"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706031279120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "139706031279120": {"type": "Concrete", "module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706030539824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060358592"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060359040"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060359488"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060359936"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060360384"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060360832"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060361280"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "139706030542512"}], "isAbstract": false}, "139706060358592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}, {"nodeId": "139706030539824"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "139706060359040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}, "139706060359488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "139706060359936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060360384": {"type": "Function", "typeVars": [".-1.139706060360384"], "argTypes": [{"nodeId": ".-1.139706060360384"}], "returnType": {"nodeId": ".-1.139706060360384"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060360384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060360384", "variance": "INVARIANT"}, "139706060360832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}, {"nodeId": "139706018389952"}, {"nodeId": "139706018390064"}, {"nodeId": "139706018390176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706018389952": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018390064": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706018390176": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706060361280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279120"}, {"nodeId": "139706038880624"}, {"nodeId": "139706023010688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "139706023010688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706030541840": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068579968"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068579968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030541840"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706030542848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139706030542848": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068854464"}, "name": "__init__"}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976712192"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068855360"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068855808"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068856256"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139706068854464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542848"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139705976712192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542848"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "139706068855360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706068855808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542848"}], "returnType": {"nodeId": "139706018388720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018388720": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706068856256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542848"}, {"nodeId": "139706018388832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "139706018388832": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038880624"}]}, "139706030542176": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068580416"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__call__"]}, "139706068580416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030542176"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706030543184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139706031278112": {"type": "Concrete", "module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976716672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976715328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976715552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976714880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976714656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705976714432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068845952"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706131780928"}]}], "isAbstract": false}, "139705976716672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018384800"}], "returnType": {"nodeId": "139706030540496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018384800": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139705976715328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018384912"}], "returnType": {"nodeId": "139706030540832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018384912": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139705976715552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018385024"}], "returnType": {"nodeId": "139706030541168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018385024": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139705976714880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018385136"}], "returnType": {"nodeId": "139706030541504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018385136": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139705976714656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018385248"}], "returnType": {"nodeId": "139706030541840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018385248": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139705976714432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706018385360"}], "returnType": {"nodeId": "139706030542176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706018385360": {"type": "Tuple", "items": [{"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}]}, "139706068845952": {"type": "Function", "typeVars": [".-1.139706068845952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706018384688"}, {"nodeId": "139706018385472"}, {"nodeId": "139706018385584"}, {"nodeId": "139706018385696"}, {"nodeId": "139706018385808"}, {"nodeId": "139706018385920"}], "returnType": {"nodeId": ".-1.139706068845952"}, "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"]}, "139706018384688": {"type": "Union", "items": [{"nodeId": "139706030541168"}, {"nodeId": "N"}]}, "139706018385472": {"type": "Union", "items": [{"nodeId": "139706030541504"}, {"nodeId": "N"}]}, "139706018385584": {"type": "Union", "items": [{"nodeId": "139706030541840"}, {"nodeId": "N"}]}, "139706018385696": {"type": "Union", "items": [{"nodeId": "139706030542176"}, {"nodeId": "N"}]}, "139706018385808": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706018385920": {"type": "Union", "items": [{"nodeId": "139706131781264"}, {"nodeId": "N"}]}, ".-1.139706068845952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068845952", "variance": "INVARIANT"}, "139706031278448": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068858944"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976710400"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068859840"}, "name": "encode"}], "typeVars": [], "bases": [{"nodeId": "139706030542848"}], "isAbstract": true}, "139706068858944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278448"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139705976710400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278448"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "139706068859840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278448"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "139706031278784": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039229728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068860288"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705976709280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060358144"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "139706030543184"}], "isAbstract": true}, "139706068860288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278784"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "139705976709280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278784"}, {"nodeId": "139706018389504"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706018389728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "139706018389504": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706018389728": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "139706060358144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031278784"}, {"nodeId": "139706018389840"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "139706018389840": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}, "139706031279792": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031277776"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060366208"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060366656"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060367104"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060367552"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060368000"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060368448"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060368896"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060369344"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060369792"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060370240"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060370688"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060371136"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060371584"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060372032"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060372480"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060372928"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060373376"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060456000"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060456448"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060456896"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060457344"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060457792"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "139706039227376"}], "isAbstract": false}, "139706060366208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706031277776"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}, "139706060366656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706060367104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706018391296"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706018391296": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060367552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706018391408"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "139706018391408": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060368000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060368448": {"type": "Function", "typeVars": [".-1.139706060368448"], "argTypes": [{"nodeId": ".-1.139706060368448"}], "returnType": {"nodeId": ".-1.139706060368448"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060368448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060368448", "variance": "INVARIANT"}, "139706060368896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "139706060369344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "139706060369792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060370240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "139706060370688": {"type": "Function", "typeVars": [".-1.139706060370688"], "argTypes": [{"nodeId": ".-1.139706060370688"}], "returnType": {"nodeId": ".-1.139706060370688"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060370688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060370688", "variance": "INVARIANT"}, "139706060371136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706018391520"}, {"nodeId": "139706018391632"}, {"nodeId": "139706018391744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706018391520": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018391632": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706018391744": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706060371584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706060372032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060372480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060372928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060373376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060456000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060456448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}, {"nodeId": "139706018391968"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706018391968": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060456896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060457344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060457792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031279792"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706030543520": {"type": "Concrete", "module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060458240"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060458688"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060459136"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060459584"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060460032"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060460480"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060460928"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060461376"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060461824"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060462272"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060462720"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060463168"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060463616"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060464064"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060464512"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060464960"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060465408"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060465856"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060466304"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060466752"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060467200"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060467648"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "139706039227040"}], "isAbstract": false}, "139706060458240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706031277776"}, {"nodeId": "139706030540496"}, {"nodeId": "139706030540832"}, {"nodeId": "139706030541168"}, {"nodeId": "139706030541504"}, {"nodeId": "139706038880624"}], "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"]}, "139706060458688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706060459136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706018392080"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706018392080": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060459584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706018392192"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039229728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "139706018392192": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060460032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060460480": {"type": "Function", "typeVars": [".-1.139706060460480"], "argTypes": [{"nodeId": ".-1.139706060460480"}], "returnType": {"nodeId": ".-1.139706060460480"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060460480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060460480", "variance": "INVARIANT"}, "139706060460928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706039229728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "139706060461376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706039229728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "139706060461824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060462272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706060462720": {"type": "Function", "typeVars": [".-1.139706060462720"], "argTypes": [{"nodeId": ".-1.139706060462720"}], "returnType": {"nodeId": ".-1.139706060462720"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.139706060462720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706060462720", "variance": "INVARIANT"}, "139706060463168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706018392416"}, {"nodeId": "139706018392528"}, {"nodeId": "139706018392640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "139706018392416": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "139706018392528": {"type": "Union", "items": [{"nodeId": "139706038886336"}, {"nodeId": "N"}]}, "139706018392640": {"type": "Union", "items": [{"nodeId": "139706043667776"}, {"nodeId": "N"}]}, "139706060463616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "139706060464064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060464512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060464960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060465408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060465856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060466304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}, {"nodeId": "139706018392752"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "139706018392752": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060466752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060467200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706060467648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030543520"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706043671136": {"type": "Concrete", "module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706043671136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139706043671136"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060471232"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060471680"}, "name": "check_returncode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055589952"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.139706043671136"}], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, ".1.139706043671136": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706043671136", "variance": "INVARIANT"}, "139706060471232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043671136", "args": [{"nodeId": ".1.139706043671136"}]}, {"nodeId": "139706026872496"}, {"nodeId": "139706038878944"}, {"nodeId": "139706026872608"}, {"nodeId": "139706026872720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}, "139706026872496": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706026872608": {"type": "Union", "items": [{"nodeId": ".1.139706043671136"}, {"nodeId": "N"}]}, "139706026872720": {"type": "Union", "items": [{"nodeId": ".1.139706043671136"}, {"nodeId": "N"}]}, "139706060471680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043671136", "args": [{"nodeId": ".1.139706043671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055589952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706043669120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "139706043671472": {"type": "Concrete", "module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706043671808": {"type": "Concrete", "module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706048147328"}, "name": "__init__"}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038879280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031400416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031078896"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706043671472"}], "isAbstract": false}, "139706048147328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043671808"}, {"nodeId": "139706027007040"}, {"nodeId": "139706038879280"}, {"nodeId": "139706027007152"}, {"nodeId": "139706027007264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}, "139706027007040": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027007152": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706027007264": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706031400416": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706031078896": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706043672144": {"type": "Concrete", "module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706048147776"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706043671472"}], "isAbstract": false}, "139706048147776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043672144"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027007376"}, {"nodeId": "139706027007488"}, {"nodeId": "139706027007600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}, "139706027007376": {"type": "TypeAlias", "target": {"nodeId": "139706031064672"}}, "139706027007488": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706027007600": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "N"}]}, "139706039489856": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989315520"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039075552"}], "isAbstract": false}, "139705989315520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489856"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039490528": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043675168", "args": [{"nodeId": "139706038880624"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043904768"}, "name": "load"}, {"kind": "Variable", "name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989311712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989311040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989311488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047550560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706043906560"}, "name": "matches"}], "typeVars": [], "bases": [{"nodeId": "139706039490192"}], "isAbstract": false}, "139706043904768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022535328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022535328": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705989311712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022535552"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022535552": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705989311040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022535664"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022535664": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705989311488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022535776"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022535776": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706047550560": {"type": "Union", "items": [{"nodeId": "139706039491872"}, {"nodeId": "N"}]}, "139706043906560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706022535888"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706131781264"}, "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"]}, "139706022535888": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706039490192": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047549328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047551904"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047693984"}, "name": "_replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047694880"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047693760"}, "name": "_asdict"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706047693536"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "139706038881632", "args": [{"nodeId": "139706038880624"}]}], "isAbstract": false}, "139706047549328": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706047551904": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "139706047693984": {"type": "Function", "typeVars": [".-1.139706047693984"], "argTypes": [{"nodeId": ".-1.139706047693984"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706047693984"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}, ".-1.139706047693984": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "139706047551456"}, "def": "139706047693984", "variance": "INVARIANT"}, "139706047551456": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706047694880": {"type": "Function", "typeVars": [".-1.139706047694880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": ".-1.139706047694880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}, ".-1.139706047694880": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "139706047551456"}, "def": "139706047694880", "variance": "INVARIANT"}, "139706047693760": {"type": "Function", "typeVars": [".-1.139706047693760"], "argTypes": [{"nodeId": ".-1.139706047693760"}], "returnType": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}, ".-1.139706047693760": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "139706047551456"}, "def": "139706047693760", "variance": "INVARIANT"}, "139706047693536": {"type": "Function", "typeVars": [".-1.139706047693536"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139706047693536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_cls", "iterable", "new", "len"]}, ".-1.139706047693536": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "139706047551456"}, "def": "139706047693536", "variance": "INVARIANT"}, "139706039491200": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989304096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989303424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139705989302752"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022534656"}, "items": [{"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "select"}], "typeVars": [], "bases": [{"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706039490864"}]}], "isAbstract": false}, "139705989304096": {"type": "Function", "typeVars": [".-1.139705989304096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706022536112"}]}], "returnType": {"nodeId": ".-1.139705989304096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}, "139706022536112": {"type": "TypeAlias", "target": {"nodeId": "139706031203136"}}, ".-1.139705989304096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139705989304096", "variance": "INVARIANT"}, "139705989303424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491200"}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139705989302752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491200"}], "returnType": {"nodeId": "139706039230400", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022534656": {"type": "Overloaded", "items": [{"nodeId": "139706068273408"}, {"nodeId": "139706068273856"}]}, "139706068273408": {"type": "Function", "typeVars": [".-1.139706068273408"], "argTypes": [{"nodeId": ".-1.139706068273408"}], "returnType": {"nodeId": ".-1.139706068273408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706068273408": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706068273408", "variance": "INVARIANT"}, "139706068273856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039491200"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706039490864"}, "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"]}, "139706031010672": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "type": {"nodeId": "139706031011008"}}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989264352"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706039495232"}], "isAbstract": true}, "139705989264352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031010672"}, {"nodeId": "139706031011008"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706039491872"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}, "139706031011344": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705989262112"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706068284160"}, "name": "invalidate_caches"}], "typeVars": [], "bases": [{"nodeId": "139706031010672"}], "isAbstract": false}, "139705989262112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139706031011008"}], "returnType": {"nodeId": "139706131784960", "args": [{"nodeId": "139706039492208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}, "139706068284160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706031011344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "139706043672816": {"type": "Concrete", "module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706043673152": {"type": "Concrete", "module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706043084000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031399856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001609600"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047222432"}, "name": "opengroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047222880"}, "name": "closegroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047223328"}, "name": "checkgroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047223776"}, "name": "checklookbehindgroup"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706043084000": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706031399856": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706001609600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673152"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706047222432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673152"}, {"nodeId": "139706027091872"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "139706027091872": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706047222880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673152"}, {"nodeId": "139706038878944"}, {"nodeId": "139706043673488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}, "139706043673488": {"type": "Concrete", "module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706031404000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031391792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706043673152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047224224"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047225120"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047225568"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047226016"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047226464"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047226912"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047227360"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047227808"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047228256"}, "name": "getwidth"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031404000": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706031401648": {"type": "Tuple", "items": [{"nodeId": "139706043674496"}, {"nodeId": "139706031400640"}]}, "139706031400640": {"type": "TypeAlias", "target": {"nodeId": "139706031401200"}}, "139706031401200": {"type": "Union", "items": [{"nodeId": "139706031403216"}, {"nodeId": "139706031403776"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706043673488"}]}, {"nodeId": "139706031400976"}, {"nodeId": "139706031401088"}]}, "139706031403216": {"type": "TypeAlias", "target": {"nodeId": "139706038881968", "args": [{"nodeId": "139706043081200"}]}}, "139706043081200": {"type": "Tuple", "items": [{"nodeId": "139706043674496"}, {"nodeId": "139706038878944"}]}, "139706031403776": {"type": "TypeAlias", "target": {"nodeId": "139706031195072"}}, "139706031195072": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706043673488"}]}]}, "139706031400976": {"type": "TypeAlias", "target": {"nodeId": "139706031194960"}}, "139706031194960": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706043673488"}, {"nodeId": "139706043673488"}]}, "139706031401088": {"type": "TypeAlias", "target": {"nodeId": "139706031405680"}}, "139706031405680": {"type": "Tuple", "items": [{"nodeId": "139706031064784"}, {"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}, {"nodeId": "139706043673488"}]}, "139706031064784": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706031391792": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706047224224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706043673152"}, {"nodeId": "139706027092096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}, "139706027092096": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706027091984"}]}, {"nodeId": "N"}]}, "139706027091984": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706047225120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}, "139706047225568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706047226016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706027092320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706027092320": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038881296"}]}, "139706047226464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706027092656"}], "returnType": {"nodeId": "139706027092432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706027092656": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038881296"}]}, "139706027092432": {"type": "Union", "items": [{"nodeId": "139706043673488"}, {"nodeId": "139706027092208"}]}, "139706027092208": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706047226912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706027092768"}, {"nodeId": "139706027093104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706027092768": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038881296"}]}, "139706027093104": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706047227360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706038878944"}, {"nodeId": "139706027092880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}, "139706027092880": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706047227808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}, {"nodeId": "139706027092544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}, "139706027092544": {"type": "TypeAlias", "target": {"nodeId": "139706031401648"}}, "139706047228256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673488"}], "returnType": {"nodeId": "139706027093552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027093552": {"type": "Tuple", "items": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}, "139706047223328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673152"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}, "139706047223776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673152"}, {"nodeId": "139706038878944"}, {"nodeId": "139706043673824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}, "139706043673824": {"type": "Concrete", "module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031404784"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047228704"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047229152"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047229600"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047230048"}, "name": "getwhile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047230496"}, "name": "getuntil"}, {"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139706001604896"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047231840"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047232288"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706047232736"}, "name": "error"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706031404784": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706047228704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "139706047229152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}, "139706047229600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}], "returnType": {"nodeId": "139706027092992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706027092992": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706047230048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "139706038878944"}, {"nodeId": "139706131784960", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}, "139706047230496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}, "139706001604896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706047231840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706047232288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}, "139706047232736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706043673824"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038878944"}], "returnType": {"nodeId": "139706043674160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}, "139706030553600": {"type": "Concrete", "module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706060574720"}, "name": "size"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706060574720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706030553600"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039489520": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056263040"}, "name": "joinpath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056263488"}, "name": "parent"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056263936"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056264384"}, "name": "__truediv__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}, "139706056263040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489520"}], "returnType": {"nodeId": "139706039489520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056263488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489520"}], "returnType": {"nodeId": "139706039489520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056263936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489520"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056264384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039489520"}], "returnType": {"nodeId": "139706039489520"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706039500272": {"type": "Concrete", "module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039499264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706026232960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706031209184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038881968", "args": [{"nodeId": "139706039716880"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056265504"}, "name": "is_multipart"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056265952"}, "name": "set_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056266400"}, "name": "get_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056266848"}, "name": "attach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056267296"}, "name": "get_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056267744"}, "name": "set_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056268192"}, "name": "set_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056268640"}, "name": "get_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056269088"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056269536"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056269984"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056270432"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056270880"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056271328"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056271776"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056272224"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056272672"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056273120"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056273568"}, "name": "get_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056274016"}, "name": "add_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056274464"}, "name": "replace_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056274912"}, "name": "get_content_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056275360"}, "name": "get_content_maintype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056275808"}, "name": "get_content_subtype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056276256"}, "name": "get_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056276704"}, "name": "set_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056277152"}, "name": "get_params"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706056277600"}, "name": "get_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055950624"}, "name": "del_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055951072"}, "name": "set_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055951520"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055951968"}, "name": "get_boundary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055952416"}, "name": "set_boundary"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "139706022826208"}, "items": [{"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get_content_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055953760"}, "name": "get_charsets"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055954208"}, "name": "walk"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055954656"}, "name": "get_content_disposition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055955104"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055955552"}, "name": "as_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055956000"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055956448"}, "name": "set_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055956896"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055957344"}, "name": "set_raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055957792"}, "name": "raw_items"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706039499264": {"type": "Concrete", "module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706060527024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706060525456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052208768"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052209216"}, "name": "clone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052209664"}, "name": "handle_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052210112"}, "name": "register_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052210560"}, "name": "header_max_count"}, {"kind": "Variable", "name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985140768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985139872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985138976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985139424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "139705985138752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": true}, "139706060527024": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706060525456": {"type": "Union", "items": [{"nodeId": "139706080693376"}, {"nodeId": "N"}]}, "139706080693376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}], "returnType": {"nodeId": "139706039500272"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706052208768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706022832032"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022832144"}], "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"]}, "139706022832032": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706022832144": {"type": "Union", "items": [{"nodeId": "139706022454080"}, {"nodeId": "N"}]}, "139706022454080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}], "returnType": {"nodeId": "139706039500272"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706052209216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "A"}], "returnType": {"nodeId": "139706039499264"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}, "139706052209664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706039500272"}, {"nodeId": "139706039716880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "139706039716880": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052207424"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706038893728"}], "isAbstract": false}, "139706052207424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039716880"}, {"nodeId": "139706017813376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}, "139706017813376": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706052210112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706039500272"}, {"nodeId": "139706039716880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "139706052210560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022832368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "139706022832368": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139705985140768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706022832592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "139706022832592": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705985139872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022832816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706022832816": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139705985138976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139705985139424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139705985138752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706026232960": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706031209184": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706056265504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056265952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}, "139706056266400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706022834160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022834160": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706056266848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706039500272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}, "139706056267296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706022834272"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}, "139706022834272": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706056267744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706022834496"}, {"nodeId": "139706022834608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}, "139706022834496": {"type": "TypeAlias", "target": {"nodeId": "139706047546528"}}, "139706047546528": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706039500272"}]}, {"nodeId": "139706038880624"}, {"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}]}, "139706022834608": {"type": "TypeAlias", "target": {"nodeId": "139706031208960"}}, "139706031208960": {"type": "Union", "items": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706039723936": {"type": "Concrete", "module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038878944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706102398336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706102398224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706097809136"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052199136"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052199584"}, "name": "get_body_encoding"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052200032"}, "name": "get_output_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052200480"}, "name": "header_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052200928"}, "name": "header_encode_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052201376"}, "name": "body_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052201824"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052202272"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706102398336": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706102398224": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706097809136": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706052199136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}, "139706052199584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706052200032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}], "returnType": {"nodeId": "139706017814944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706017814944": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706052200480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "139706052200928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131785296", "args": [{"nodeId": "139706038878944"}]}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}, "139706052201376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "139706052201824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706052202272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723936"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706056268192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706022834720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}, "139706022834720": {"type": "TypeAlias", "target": {"nodeId": "139706031208960"}}, "139706056268640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706022834832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022834832": {"type": "TypeAlias", "target": {"nodeId": "139706031208960"}}, "139706056269088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038878944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706056269536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706056269984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706056270432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022834944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706022834944": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056270880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022835056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "139706022835056": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056271328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706056271776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056272224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706022835168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022835168": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056272672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038881968", "args": [{"nodeId": "139706022835504"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022835504": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706022835280"}]}, "139706022835280": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056273120": {"type": "Function", "typeVars": [".-1.139706056273120"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": ".-1.139706056273120"}], "returnType": {"nodeId": "139706022835728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.139706056273120": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706056273120", "variance": "INVARIANT"}, "139706022835728": {"type": "Union", "items": [{"nodeId": "139706022835616"}, {"nodeId": ".-1.139706056273120"}]}, "139706022835616": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056273568": {"type": "Function", "typeVars": [".-1.139706056273568"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": ".-1.139706056273568"}], "returnType": {"nodeId": "139706022835952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.139706056273568": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706056273568", "variance": "INVARIANT"}, "139706022835952": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706022835840"}]}, {"nodeId": ".-1.139706056273568"}]}, "139706022835840": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056274016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022836064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}, "139706022836064": {"type": "TypeAlias", "target": {"nodeId": "139706105965456"}}, "139706105965456": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}, {"nodeId": "139706080981536"}]}, "139706080981536": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706085684528"}, {"nodeId": "139706038880624"}]}, "139706085684528": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706056274464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022836176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}, "139706022836176": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706056274912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056275360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056275808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056276256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706056276704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}, "139706056277152": {"type": "Function", "typeVars": [".-1.139706056277152"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": ".-1.139706056277152"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706022836512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}, ".-1.139706056277152": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706056277152", "variance": "INVARIANT"}, "139706022836512": {"type": "Union", "items": [{"nodeId": "139706038881968", "args": [{"nodeId": "139706022836400"}]}, {"nodeId": ".-1.139706056277152"}]}, "139706022836400": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706056277600": {"type": "Function", "typeVars": [".-1.139706056277600"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": ".-1.139706056277600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "139706022836736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}, ".-1.139706056277600": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706056277600", "variance": "INVARIANT"}, "139706022836736": {"type": "Union", "items": [{"nodeId": ".-1.139706056277600"}, {"nodeId": "139706022836624"}]}, "139706022836624": {"type": "TypeAlias", "target": {"nodeId": "139706106263056"}}, "139706106263056": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706093548736"}]}, "139706093548736": {"type": "Tuple", "items": [{"nodeId": "139706076870048"}, {"nodeId": "139706093547504"}, {"nodeId": "139706038880624"}]}, "139706076870048": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706093547504": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055950624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}, "139706055951072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}, "139706055951520": {"type": "Function", "typeVars": [".-1.139706055951520"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": ".-1.139706055951520"}], "returnType": {"nodeId": "139706022836960"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.139706055951520": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706055951520", "variance": "INVARIANT"}, "139706022836960": {"type": "Union", "items": [{"nodeId": ".-1.139706055951520"}, {"nodeId": "139706038880624"}]}, "139706055951968": {"type": "Function", "typeVars": [".-1.139706055951968"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": ".-1.139706055951968"}], "returnType": {"nodeId": "139706022836288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.139706055951968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706055951968", "variance": "INVARIANT"}, "139706022836288": {"type": "Union", "items": [{"nodeId": ".-1.139706055951968"}, {"nodeId": "139706038880624"}]}, "139706055952416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}, "139706022826208": {"type": "Overloaded", "items": [{"nodeId": "139706055952864"}, {"nodeId": "139706055953312"}]}, "139706055952864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706022837184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022837184": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055953312": {"type": "Function", "typeVars": [".-1.139706055953312"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": ".-1.139706055953312"}], "returnType": {"nodeId": "139706022837296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}, ".-1.139706055953312": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706055953312", "variance": "INVARIANT"}, "139706022837296": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": ".-1.139706055953312"}]}, "139706055953760": {"type": "Function", "typeVars": [".-1.139706055953760"], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": ".-1.139706055953760"}], "returnType": {"nodeId": "139706022837408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.139706055953760": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706055953760", "variance": "INVARIANT"}, "139706022837408": {"type": "Union", "items": [{"nodeId": ".-1.139706055953760"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}]}, "139706055954208": {"type": "Function", "typeVars": [".-1.139706055954208"], "argTypes": [{"nodeId": ".-1.139706055954208"}], "returnType": {"nodeId": "139706131785968", "args": [{"nodeId": ".-1.139706055954208"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.139706055954208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "139706131780928"}, "def": "139706055954208", "variance": "INVARIANT"}, "139706055954656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706022837520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706022837520": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055955104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038878944"}, {"nodeId": "139706022837632"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "139706022837632": {"type": "Union", "items": [{"nodeId": "139706039499264"}, {"nodeId": "N"}]}, "139706055955552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022837744"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}, "139706022837744": {"type": "Union", "items": [{"nodeId": "139706039499264"}, {"nodeId": "N"}]}, "139706055956000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055956448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022837856"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}], "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"]}, "139706022837856": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055956896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706039499264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "139706055957344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022837968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706022837968": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706055957792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039500272"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706017808560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706017808560": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706022838080"}]}, "139706022838080": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "139706039713856": {"type": "Concrete", "module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055958240"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055958688"}, "name": "get_body"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055959136"}, "name": "iter_attachments"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055959584"}, "name": "iter_parts"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055960032"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055960480"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055960928"}, "name": "make_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055961376"}, "name": "make_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055961824"}, "name": "make_mixed"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055962272"}, "name": "add_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055962720"}, "name": "add_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055963168"}, "name": "add_attachment"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055963616"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055964064"}, "name": "clear_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055964512"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706055964960"}, "name": "is_attachment"}], "typeVars": [], "bases": [{"nodeId": "139706039500272"}], "isAbstract": false}, "139706055958240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706017808672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "139706017808672": {"type": "Union", "items": [{"nodeId": "139706039499264"}, {"nodeId": "N"}]}, "139706055958688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706131788656", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706017808784"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}, "139706017808784": {"type": "Union", "items": [{"nodeId": "139706039500272"}, {"nodeId": "N"}]}, "139706055959136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706039500272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055959584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}], "returnType": {"nodeId": "139706131785296", "args": [{"nodeId": "139706039500272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055960032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "A"}, {"nodeId": "139706017809008"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "139706017809008": {"type": "Union", "items": [{"nodeId": "139706039723600"}, {"nodeId": "N"}]}, "139706039723600": {"type": "Concrete", "module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052204736"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052205184"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052205632"}, "name": "add_get_handler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052206080"}, "name": "add_set_handler"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706052204736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723600"}, {"nodeId": "139706039500272"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}, "139706052205184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723600"}, {"nodeId": "139706039500272"}, {"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"]}, "139706052205632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706023003072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}, "139706023003072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706052206080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039723600"}, {"nodeId": "139706038878272"}, {"nodeId": "139706023002176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}, "139706023002176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "139706055960480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "A"}, {"nodeId": "139706017809456"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "139706017809456": {"type": "Union", "items": [{"nodeId": "139706039723600"}, {"nodeId": "N"}]}, "139706055960928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706017809680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "139706017809680": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055961376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706017809792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "139706017809792": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055961824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706017809904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "139706017809904": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706055962272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "A"}, {"nodeId": "139706017810128"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "139706017810128": {"type": "Union", "items": [{"nodeId": "139706039723600"}, {"nodeId": "N"}]}, "139706055962720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "A"}, {"nodeId": "139706017810464"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "139706017810464": {"type": "Union", "items": [{"nodeId": "139706039723600"}, {"nodeId": "N"}]}, "139706055963168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "A"}, {"nodeId": "139706017810800"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "139706017810800": {"type": "Union", "items": [{"nodeId": "139706039723600"}, {"nodeId": "N"}]}, "139706055963616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055964064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706055964512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}, {"nodeId": "139706131781264"}, {"nodeId": "139706017811024"}, {"nodeId": "139706017811136"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "139706017811024": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017811136": {"type": "Union", "items": [{"nodeId": "139706039499264"}, {"nodeId": "N"}]}, "139706055964960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039713856"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "139706039714192": {"type": "Concrete", "module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039713856"}], "isAbstract": false}, "139706031280800": {"type": "Concrete", "module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139706031280128"}], "isAbstract": false}, "139706031281472": {"type": "Concrete", "module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139706031281136"}, {"nodeId": "139706031280464"}], "isAbstract": false}, "139706031281808": {"type": "Concrete", "module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139706031281136"}, {"nodeId": "139706031280800"}], "isAbstract": false}, "139706039714864": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706038887680"}], "isAbstract": false}, "139706039715200": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039714864"}], "isAbstract": false}, "139706039715536": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039715200"}], "isAbstract": false}, "139706039715872": {"type": "Concrete", "module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039715200"}], "isAbstract": false}, "139706039716208": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039714864"}, {"nodeId": "139706038893392"}], "isAbstract": false}, "139706039716544": {"type": "Concrete", "module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039714864"}], "isAbstract": false}, "139706039717216": {"type": "Concrete", "module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039717552": {"type": "Concrete", "module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039717888": {"type": "Concrete", "module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039718224": {"type": "Concrete", "module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039718560": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039718896": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039719232": {"type": "Concrete", "module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039719568": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039719904": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039720240": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039720576": {"type": "Concrete", "module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039720912": {"type": "Concrete", "module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039721248": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039716880"}], "isAbstract": false}, "139706039721584": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706039721920": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706039722256": {"type": "Concrete", "module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052207872"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706052207872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039722256"}, {"nodeId": "139706017813488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}, "139706017813488": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706039722592": {"type": "Concrete", "module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706039722928": {"type": "Concrete", "module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706039723264": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139706039721248"}], "isAbstract": false}, "139706039499600": {"type": "Concrete", "module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052213248"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052213696"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052214144"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052067392"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052067840"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "139706039499264"}], "isAbstract": false}, "139706052213248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499600"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706022833040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "139706022833040": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706052213696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022833264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706022833264": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706052214144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022833376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706022833376": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706039714528"}]}, "139706039714528": {"type": "Concrete", "module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052071648"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052072096"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052072544"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052072992"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052073440"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "139706131780928"}], "isAbstract": false}, "139706052071648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039714528"}, {"nodeId": "139706017811248"}, {"nodeId": "139706017811360"}, {"nodeId": "139706017811472"}, {"nodeId": "139706017811584"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "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"]}, "139706017811248": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706017811360": {"type": "Union", "items": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706017811472": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706017811584": {"type": "Union", "items": [{"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706052072096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039714528"}, {"nodeId": "139706017811696"}, {"nodeId": "139706017811808"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}, "139706017811696": {"type": "Union", "items": [{"nodeId": "139706039229728"}, {"nodeId": "139706039230064"}, {"nodeId": "139706038880624"}]}, "139706017811808": {"type": "Union", "items": [{"nodeId": "139706039723936"}, {"nodeId": "139706038880624"}, {"nodeId": "N"}]}, "139706052072544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039714528"}, {"nodeId": "139706038880624"}, {"nodeId": "139706017811920"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}, "139706017811920": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706052072992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039714528"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706052073440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039714528"}, {"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706131781264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706052067392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706052067840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499600"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706039499936": {"type": "Concrete", "module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706131781264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706055596672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706039723600"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052068288"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052068736"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052069184"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052069632"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052070080"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706052070528"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "139706039499264"}], "isAbstract": false}, "139706055596672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706052068288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706022833488"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}, {"nodeId": "139706131781264"}, {"nodeId": "139706131781264"}, {"nodeId": "139706022833600"}, {"nodeId": "139706131781264"}, {"nodeId": "139706038880624"}, {"nodeId": "139706022458784"}, {"nodeId": "139706039723600"}], "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"]}, "139706022833488": {"type": "Union", "items": [{"nodeId": "139706038878944"}, {"nodeId": "N"}]}, "139706022833600": {"type": "Union", "items": [{"nodeId": "139706022458560"}, {"nodeId": "N"}]}, "139706022458560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499264"}], "returnType": {"nodeId": "139706039500272"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139706022458784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "139706052068736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706038881968", "args": [{"nodeId": "139706038880624"}]}], "returnType": {"nodeId": "139706022833824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "139706022833824": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706052069184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706022834048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706022834048": {"type": "Tuple", "items": [{"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}]}, "139706052069632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706052070080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139706052070528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706039499936"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706039229728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "139705976354880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131784288", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "139705964209632": {"type": "Overloaded", "items": [{"nodeId": "139705976738464"}, {"nodeId": "139705976738688"}]}, "139705976738464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139706131780928"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_OPT"], "argNames": ["object"]}, "139705976738688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "139705964209296"}, {"nodeId": "139706038880624"}, {"nodeId": "139706038880624"}], "returnType": {"nodeId": "139706038880624"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["object", "encoding", "errors"]}, "139705964209296": {"type": "TypeAlias", "target": {"nodeId": "139706030739232"}}}, "types": {"annotation_tests": [{"startOffset": 140, "endOffset": 144, "line": 11, "type": {"nodeId": "0"}}, {"startOffset": 553, "endOffset": 553, "line": 34, "type": {"nodeId": "139706038878944"}}, {"startOffset": 557, "endOffset": 557, "line": 34, "type": {"nodeId": "139706038878944"}}, {"startOffset": 604, "endOffset": 604, "line": 38, "type": {"nodeId": "139705959091552"}}, {"startOffset": 654, "endOffset": 654, "line": 42, "type": {"nodeId": "139705959090320"}}, {"startOffset": 681, "endOffset": 683, "line": 46, "type": {"nodeId": "139706038878944"}}, {"startOffset": 693, "endOffset": 697, "line": 47, "type": {"nodeId": "139706038878944"}}, {"startOffset": 707, "endOffset": 710, "line": 48, "type": {"nodeId": "139706038878944"}}, {"startOffset": 783, "endOffset": 783, "line": 52, "type": {"nodeId": "139705959090544"}}, {"startOffset": 837, "endOffset": 837, "line": 56, "type": {"nodeId": "139706131789328", "args": [{"nodeId": "139706038878944"}]}}, {"startOffset": 887, "endOffset": 887, "line": 60, "type": {"nodeId": "139706131790000", "args": [{"nodeId": "139706038878944"}, {"nodeId": "139706038878944"}]}}, {"startOffset": 937, "endOffset": 937, "line": 64, "type": {"nodeId": "139706131788656", "args": [{"nodeId": "139706131780928"}]}}, {"startOffset": 990, "endOffset": 990, "line": 68, "type": {"nodeId": "139706131784288", "args": [{"nodeId": "A"}]}}, {"startOffset": 986, "endOffset": 988, "line": 68, "type": {"nodeId": "139705976354880"}}, {"startOffset": 1038, "endOffset": 1038, "line": 72, "type": {"nodeId": "139705959088976"}}, {"startOffset": 1049, "endOffset": 1049, "line": 72, "type": {"nodeId": "139705959088976"}}, {"startOffset": 1045, "endOffset": 1047, "line": 72, "type": {"nodeId": "139705964209632"}}, {"startOffset": 1060, "endOffset": 1067, "line": 75, "type": {"nodeId": "139706038880624"}}]}, "definitions": {"annotation_tests": {"__name__": {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, "__doc__": {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, "__file__": {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, "__package__": {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038880624"}, "isInitializedInClass": false}, "__annotations__": {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139706038882304", "args": [{"nodeId": "139706038880624"}, {"nodeId": "A"}]}, "isInitializedInClass": false}, "A": {"kind": "ClassDef", "type": {"nodeId": "139706031285840"}}, "square": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "collection", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959790432"}, "name": "square"}, "not_annotated": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706135737424"}, "name": "not_annotated"}, "same_annotations": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705963427904"}, "name": "same_annotations"}, "optional": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959789312"}, "name": "optional"}, "literal": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959440320"}, "name": "literal"}, "Color": {"kind": "ClassDef", "type": {"nodeId": "139706031286176"}}, "enum_literal": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959441888"}, "name": "enum_literal"}, "abstract_set": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959440096"}, "name": "abstract_set"}, "mapping": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139705959443008"}, "name": "mapping"}, "sequence": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706122940736"}, "name": "sequence"}, "supports_abs": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706122939840"}, "name": "supports_abs"}, "tuple_": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "139706122941184"}, "name": "tuple_"}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "139706039237456"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "139706131781936"}}, "_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "139706131782272"}}, "ParamSpecArgs": {"kind": "ClassDef", "type": {"nodeId": "139706131782608"}}, "ParamSpecKwargs": {"kind": "ClassDef", "type": {"nodeId": "139706131782944"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "139706131783280"}}, "NewType": {"kind": "ClassDef", "type": {"nodeId": "139706131783616"}}, "_Alias": {"kind": "ClassDef", "type": {"nodeId": "139706131783952"}}, "_ProtocolMeta": {"kind": "ClassDef", "type": {"nodeId": "139706039222336"}}, "SupportsInt": {"kind": "ClassDef", "type": {"nodeId": "139706039222672"}}, "SupportsFloat": {"kind": "ClassDef", "type": {"nodeId": "139706039223008"}}, "SupportsComplex": {"kind": "ClassDef", "type": {"nodeId": "139706039223344"}}, "SupportsBytes": {"kind": "ClassDef", "type": {"nodeId": "139706039223680"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "139706039224016"}}, "SupportsAbs": {"kind": "ClassDef", "type": {"nodeId": "139706131784288"}}, "SupportsRound": {"kind": "ClassDef", "type": {"nodeId": "139706131784624"}}, "Sized": {"kind": "ClassDef", "type": {"nodeId": "139706039224352"}}, "Hashable": {"kind": "ClassDef", "type": {"nodeId": "139706039224688"}}, "Iterable": {"kind": "ClassDef", "type": {"nodeId": "139706131784960"}}, "Iterator": {"kind": "ClassDef", "type": {"nodeId": "139706131785296"}}, "Reversible": {"kind": "ClassDef", "type": {"nodeId": "139706131785632"}}, "Generator": {"kind": "ClassDef", "type": {"nodeId": "139706131785968"}}, "Awaitable": {"kind": "ClassDef", "type": {"nodeId": "139706131786304"}}, "Coroutine": {"kind": "ClassDef", "type": {"nodeId": "139706131786640"}}, "AwaitableGenerator": {"kind": "ClassDef", "type": {"nodeId": "139706039225024"}}, "AsyncIterable": {"kind": "ClassDef", "type": {"nodeId": "139706131786976"}}, "AsyncIterator": {"kind": "ClassDef", "type": {"nodeId": "139706131787312"}}, "AsyncGenerator": {"kind": "ClassDef", "type": {"nodeId": "139706131787648"}}, "Container": {"kind": "ClassDef", "type": {"nodeId": "139706131787984"}}, "Collection": {"kind": "ClassDef", "type": {"nodeId": "139706131788320"}}, "Sequence": {"kind": "ClassDef", "type": {"nodeId": "139706131788656"}}, "MutableSequence": {"kind": "ClassDef", "type": {"nodeId": "139706131788992"}}, "AbstractSet": {"kind": "ClassDef", "type": {"nodeId": "139706131789328"}}, "MutableSet": {"kind": "ClassDef", "type": {"nodeId": "139706131789664"}}, "MappingView": {"kind": "ClassDef", "type": {"nodeId": "139706039225360"}}, "ItemsView": {"kind": "ClassDef", "type": {"nodeId": "139706039225696"}}, "KeysView": {"kind": "ClassDef", "type": {"nodeId": "139706039226032"}}, "ValuesView": {"kind": "ClassDef", "type": {"nodeId": "139706039226368"}}, "Mapping": {"kind": "ClassDef", "type": {"nodeId": "139706131790000"}}, "MutableMapping": {"kind": "ClassDef", "type": {"nodeId": "139706131790336"}}, "IO": {"kind": "ClassDef", "type": {"nodeId": "139706039226704"}}, "BinaryIO": {"kind": "ClassDef", "type": {"nodeId": "139706039227040"}}, "TextIO": {"kind": "ClassDef", "type": {"nodeId": "139706039227376"}}, "ByteString": {"kind": "ClassDef", "type": {"nodeId": "139706039227712"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "139706039228048"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "139706039228384"}}, "ForwardRef": {"kind": "ClassDef", "type": {"nodeId": "139706131790672"}}}, "collections": {"UserDict": {"kind": "ClassDef", "type": {"nodeId": "139706039232752"}}, "UserList": {"kind": "ClassDef", "type": {"nodeId": "139706039233088"}}, "UserString": {"kind": "ClassDef", "type": {"nodeId": "139706039233424"}}, "deque": {"kind": "ClassDef", "type": {"nodeId": "139706039233760"}}, "Counter": {"kind": "ClassDef", "type": {"nodeId": "139706039090336"}}, "_OrderedDictKeysView": {"kind": "ClassDef", "type": {"nodeId": "139706030538816"}}, "_OrderedDictItemsView": {"kind": "ClassDef", "type": {"nodeId": "139706030539152"}}, "_OrderedDictValuesView": {"kind": "ClassDef", "type": {"nodeId": "139706030539488"}}, "_odict_keys": {"kind": "ClassDef", "type": {"nodeId": "139706039234096"}}, "_odict_items": {"kind": "ClassDef", "type": {"nodeId": "139706039234432"}}, "_odict_values": {"kind": "ClassDef", "type": {"nodeId": "139706039234768"}}, "OrderedDict": {"kind": "ClassDef", "type": {"nodeId": "139706039235104"}}, "defaultdict": {"kind": "ClassDef", "type": {"nodeId": "139706039090672"}}, "ChainMap": {"kind": "ClassDef", "type": {"nodeId": "139706039235440"}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "type": {"nodeId": "139706039497248"}}, "EnumMeta": {"kind": "ClassDef", "type": {"nodeId": "139706039497584"}}, "Enum": {"kind": "ClassDef", "type": {"nodeId": "139706039497920"}}, "IntEnum": {"kind": "ClassDef", "type": {"nodeId": "139706039498256"}}, "auto": {"kind": "ClassDef", "type": {"nodeId": "139706031276432"}}, "Flag": {"kind": "ClassDef", "type": {"nodeId": "139706039498592"}}, "IntFlag": {"kind": "ClassDef", "type": {"nodeId": "139706039498928"}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "type": {"nodeId": "139706031283488"}}, "timezone": {"kind": "ClassDef", "type": {"nodeId": "139706031283824"}}, "date": {"kind": "ClassDef", "type": {"nodeId": "139706031284496"}}, "time": {"kind": "ClassDef", "type": {"nodeId": "139706031284832"}}, "timedelta": {"kind": "ClassDef", "type": {"nodeId": "139706031285168"}}, "datetime": {"kind": "ClassDef", "type": {"nodeId": "139706031285504"}}}, "builtins": {"object": {"kind": "ClassDef", "type": {"nodeId": "139706131780928"}}, "bool": {"kind": "ClassDef", "type": {"nodeId": "139706131781264"}}, "function": {"kind": "ClassDef", "type": {"nodeId": "139706131781600"}}, "staticmethod": {"kind": "ClassDef", "type": {"nodeId": "139706131791008"}}, "classmethod": {"kind": "ClassDef", "type": {"nodeId": "139706131791344"}}, "type": {"kind": "ClassDef", "type": {"nodeId": "139706038878272"}}, "super": {"kind": "ClassDef", "type": {"nodeId": "139706038878608"}}, "int": {"kind": "ClassDef", "type": {"nodeId": "139706038878944"}}, "float": {"kind": "ClassDef", "type": {"nodeId": "139706038879280"}}, "complex": {"kind": "ClassDef", "type": {"nodeId": "139706038879616"}}, "_FormatMapMapping": {"kind": "ClassDef", "type": {"nodeId": "139706038879952"}}, "_TranslateTable": {"kind": "ClassDef", "type": {"nodeId": "139706038880288"}}, "str": {"kind": "ClassDef", "type": {"nodeId": "139706038880624"}}, "bytes": {"kind": "ClassDef", "type": {"nodeId": "139706039229728"}}, "bytearray": {"kind": "ClassDef", "type": {"nodeId": "139706039230064"}}, "memoryview": {"kind": "ClassDef", "type": {"nodeId": "139706038880960"}}, "slice": {"kind": "ClassDef", "type": {"nodeId": "139706038881296"}}, "tuple": {"kind": "ClassDef", "type": {"nodeId": "139706038881632"}}, "list": {"kind": "ClassDef", "type": {"nodeId": "139706038881968"}}, "dict": {"kind": "ClassDef", "type": {"nodeId": "139706038882304"}}, "set": {"kind": "ClassDef", "type": {"nodeId": "139706039230400"}}, "frozenset": {"kind": "ClassDef", "type": {"nodeId": "139706039230736"}}, "enumerate": {"kind": "ClassDef", "type": {"nodeId": "139706039231072"}}, "range": {"kind": "ClassDef", "type": {"nodeId": "139706038882640"}}, "property": {"kind": "ClassDef", "type": {"nodeId": "139706038882976"}}, "_NotImplementedType": {"kind": "ClassDef", "type": {"nodeId": "139706038883312"}}, "_PathLike": {"kind": "ClassDef", "type": {"nodeId": "139706031003952"}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "type": {"nodeId": "139706038883648"}}, "filter": {"kind": "ClassDef", "type": {"nodeId": "139706039231408"}}, "_GetItemIterable": {"kind": "ClassDef", "type": {"nodeId": "139706038883984"}}, "map": {"kind": "ClassDef", "type": {"nodeId": "139706039231744"}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "type": {"nodeId": "139706031004288"}}, "_SupportsPow2": {"kind": "ClassDef", "type": {"nodeId": "139706038884320"}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "type": {"nodeId": "139706038884656"}}, "_SupportsPow3": {"kind": "ClassDef", "type": {"nodeId": "139706038884992"}}, "reversed": {"kind": "ClassDef", "type": {"nodeId": "139706039232080"}}, "_SupportsRound1": {"kind": "ClassDef", "type": {"nodeId": "139706038885328"}}, "_SupportsRound2": {"kind": "ClassDef", "type": {"nodeId": "139706038885664"}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "type": {"nodeId": "139706031004624"}}, "zip": {"kind": "ClassDef", "type": {"nodeId": "139706039232416"}}, "ellipsis": {"kind": "ClassDef", "type": {"nodeId": "139706038886000"}}, "BaseException": {"kind": "ClassDef", "type": {"nodeId": "139706038886336"}}, "GeneratorExit": {"kind": "ClassDef", "type": {"nodeId": "139706038886672"}}, "KeyboardInterrupt": {"kind": "ClassDef", "type": {"nodeId": "139706038887008"}}, "SystemExit": {"kind": "ClassDef", "type": {"nodeId": "139706038887344"}}, "Exception": {"kind": "ClassDef", "type": {"nodeId": "139706038887680"}}, "StopIteration": {"kind": "ClassDef", "type": {"nodeId": "139706038888016"}}, "OSError": {"kind": "ClassDef", "type": {"nodeId": "139706038888352"}}, "ArithmeticError": {"kind": "ClassDef", "type": {"nodeId": "139706038888688"}}, "AssertionError": {"kind": "ClassDef", "type": {"nodeId": "139706038889024"}}, "AttributeError": {"kind": "ClassDef", "type": {"nodeId": "139706038889360"}}, "BufferError": {"kind": "ClassDef", "type": {"nodeId": "139706038889696"}}, "EOFError": {"kind": "ClassDef", "type": {"nodeId": "139706038890032"}}, "ImportError": {"kind": "ClassDef", "type": {"nodeId": "139706038890368"}}, "LookupError": {"kind": "ClassDef", "type": {"nodeId": "139706038890704"}}, "MemoryError": {"kind": "ClassDef", "type": {"nodeId": "139706038891040"}}, "NameError": {"kind": "ClassDef", "type": {"nodeId": "139706038891376"}}, "ReferenceError": {"kind": "ClassDef", "type": {"nodeId": "139706038891712"}}, "RuntimeError": {"kind": "ClassDef", "type": {"nodeId": "139706038892048"}}, "StopAsyncIteration": {"kind": "ClassDef", "type": {"nodeId": "139706038892384"}}, "SyntaxError": {"kind": "ClassDef", "type": {"nodeId": "139706038892720"}}, "SystemError": {"kind": "ClassDef", "type": {"nodeId": "139706038893056"}}, "TypeError": {"kind": "ClassDef", "type": {"nodeId": "139706038893392"}}, "ValueError": {"kind": "ClassDef", "type": {"nodeId": "139706038893728"}}, "FloatingPointError": {"kind": "ClassDef", "type": {"nodeId": "139706038894064"}}, "OverflowError": {"kind": "ClassDef", "type": {"nodeId": "139706039074880"}}, "ZeroDivisionError": {"kind": "ClassDef", "type": {"nodeId": "139706039075216"}}, "ModuleNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "139706039075552"}}, "IndexError": {"kind": "ClassDef", "type": {"nodeId": "139706039075888"}}, "KeyError": {"kind": "ClassDef", "type": {"nodeId": "139706039076224"}}, "UnboundLocalError": {"kind": "ClassDef", "type": {"nodeId": "139706039076560"}}, "BlockingIOError": {"kind": "ClassDef", "type": {"nodeId": "139706039076896"}}, "ChildProcessError": {"kind": "ClassDef", "type": {"nodeId": "139706039077232"}}, "ConnectionError": {"kind": "ClassDef", "type": {"nodeId": "139706039077568"}}, "BrokenPipeError": {"kind": "ClassDef", "type": {"nodeId": "139706039077904"}}, "ConnectionAbortedError": {"kind": "ClassDef", "type": {"nodeId": "139706039078240"}}, "ConnectionRefusedError": {"kind": "ClassDef", "type": {"nodeId": "139706039078576"}}, "ConnectionResetError": {"kind": "ClassDef", "type": {"nodeId": "139706039078912"}}, "FileExistsError": {"kind": "ClassDef", "type": {"nodeId": "139706039079248"}}, "FileNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "139706039079584"}}, "InterruptedError": {"kind": "ClassDef", "type": {"nodeId": "139706039079920"}}, "IsADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "139706039080256"}}, "NotADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "139706039080592"}}, "PermissionError": {"kind": "ClassDef", "type": {"nodeId": "139706039080928"}}, "ProcessLookupError": {"kind": "ClassDef", "type": {"nodeId": "139706039081264"}}, "TimeoutError": {"kind": "ClassDef", "type": {"nodeId": "139706039081600"}}, "NotImplementedError": {"kind": "ClassDef", "type": {"nodeId": "139706039081936"}}, "RecursionError": {"kind": "ClassDef", "type": {"nodeId": "139706039082272"}}, "IndentationError": {"kind": "ClassDef", "type": {"nodeId": "139706039082608"}}, "TabError": {"kind": "ClassDef", "type": {"nodeId": "139706039082944"}}, "UnicodeError": {"kind": "ClassDef", "type": {"nodeId": "139706039083280"}}, "UnicodeDecodeError": {"kind": "ClassDef", "type": {"nodeId": "139706039083616"}}, "UnicodeEncodeError": {"kind": "ClassDef", "type": {"nodeId": "139706039083952"}}, "UnicodeTranslateError": {"kind": "ClassDef", "type": {"nodeId": "139706039084288"}}, "Warning": {"kind": "ClassDef", "type": {"nodeId": "139706039084624"}}, "UserWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039084960"}}, "DeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039085296"}}, "SyntaxWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039085632"}}, "RuntimeWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039085968"}}, "FutureWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039086304"}}, "PendingDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039086640"}}, "ImportWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039086976"}}, "UnicodeWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039087312"}}, "BytesWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039087648"}}, "ResourceWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039087984"}}, "EncodingWarning": {"kind": "ClassDef", "type": {"nodeId": "139706039088320"}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "type": {"nodeId": "139706030544192"}}, "SupportsNext": {"kind": "ClassDef", "type": {"nodeId": "139706030544528"}}, "SupportsAnext": {"kind": "ClassDef", "type": {"nodeId": "139706030544864"}}, "SupportsDunderLT": {"kind": "ClassDef", "type": {"nodeId": "139706030545200"}}, "SupportsDunderGT": {"kind": "ClassDef", "type": {"nodeId": "139706030545536"}}, "SupportsDunderLE": {"kind": "ClassDef", "type": {"nodeId": "139706030545872"}}, "SupportsDunderGE": {"kind": "ClassDef", "type": {"nodeId": "139706030546208"}}, "SupportsAllComparisons": {"kind": "ClassDef", "type": {"nodeId": "139706030546544"}}, "SupportsAdd": {"kind": "ClassDef", "type": {"nodeId": "139706030546880"}}, "SupportsRAdd": {"kind": "ClassDef", "type": {"nodeId": "139706030547216"}}, "SupportsSub": {"kind": "ClassDef", "type": {"nodeId": "139706030547552"}}, "SupportsRSub": {"kind": "ClassDef", "type": {"nodeId": "139706030547888"}}, "SupportsDivMod": {"kind": "ClassDef", "type": {"nodeId": "139706030548224"}}, "SupportsRDivMod": {"kind": "ClassDef", "type": {"nodeId": "139706030548560"}}, "SupportsIter": {"kind": "ClassDef", "type": {"nodeId": "139706030548896"}}, "SupportsAiter": {"kind": "ClassDef", "type": {"nodeId": "139706030549232"}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "139706030549568"}}, "SupportsTrunc": {"kind": "ClassDef", "type": {"nodeId": "139706030549904"}}, "SupportsItems": {"kind": "ClassDef", "type": {"nodeId": "139706030550240"}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "139706030550576"}}, "SupportsGetItem": {"kind": "ClassDef", "type": {"nodeId": "139706030550912"}}, "SupportsItemAccess": {"kind": "ClassDef", "type": {"nodeId": "139706030551248"}}, "HasFileno": {"kind": "ClassDef", "type": {"nodeId": "139706030551584"}}, "SupportsRead": {"kind": "ClassDef", "type": {"nodeId": "139706030551920"}}, "SupportsReadline": {"kind": "ClassDef", "type": {"nodeId": "139706030552256"}}, "SupportsNoArgReadline": {"kind": "ClassDef", "type": {"nodeId": "139706030552592"}}, "SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "139706030552928"}}, "structseq": {"kind": "ClassDef", "type": {"nodeId": "139706030553264"}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "139706043670128"}}, "_flags": {"kind": "ClassDef", "type": {"nodeId": "139706031004960"}}, "_float_info": {"kind": "ClassDef", "type": {"nodeId": "139706031005296"}}, "_hash_info": {"kind": "ClassDef", "type": {"nodeId": "139706031005632"}}, "_implementation": {"kind": "ClassDef", "type": {"nodeId": "139706043670464"}}, "_int_info": {"kind": "ClassDef", "type": {"nodeId": "139706031005968"}}, "_version_info": {"kind": "ClassDef", "type": {"nodeId": "139706031006304"}}, "UnraisableHookArgs": {"kind": "ClassDef", "type": {"nodeId": "139706043670800"}}, "_asyncgen_hooks": {"kind": "ClassDef", "type": {"nodeId": "139706031006640"}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "type": {"nodeId": "139706039228720"}}, "dict_values": {"kind": "ClassDef", "type": {"nodeId": "139706039229056"}}, "dict_items": {"kind": "ClassDef", "type": {"nodeId": "139706039229392"}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "type": {"nodeId": "139706039088656"}}, "abstractclassmethod": {"kind": "ClassDef", "type": {"nodeId": "139706039088992"}}, "abstractstaticmethod": {"kind": "ClassDef", "type": {"nodeId": "139706039089328"}}, "abstractproperty": {"kind": "ClassDef", "type": {"nodeId": "139706039089664"}}, "ABC": {"kind": "ClassDef", "type": {"nodeId": "139706039090000"}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "type": {"nodeId": "139706030418160"}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "type": {"nodeId": "139706030418496"}}, "ContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "139706030418832"}}, "_GeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "139706030419168"}}, "AsyncContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "139706030419504"}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "139706030419840"}}, "_SupportsClose": {"kind": "ClassDef", "type": {"nodeId": "139706030420176"}}, "closing": {"kind": "ClassDef", "type": {"nodeId": "139706030420512"}}, "_SupportsAclose": {"kind": "ClassDef", "type": {"nodeId": "139706030420848"}}, "aclosing": {"kind": "ClassDef", "type": {"nodeId": "139706030421184"}}, "suppress": {"kind": "ClassDef", "type": {"nodeId": "139706030421520"}}, "_RedirectStream": {"kind": "ClassDef", "type": {"nodeId": "139706030421856"}}, "redirect_stdout": {"kind": "ClassDef", "type": {"nodeId": "139706030422192"}}, "redirect_stderr": {"kind": "ClassDef", "type": {"nodeId": "139706030422528"}}, "ExitStack": {"kind": "ClassDef", "type": {"nodeId": "139706030422864"}}, "AsyncExitStack": {"kind": "ClassDef", "type": {"nodeId": "139706030423200"}}, "nullcontext": {"kind": "ClassDef", "type": {"nodeId": "139706030423536"}}}, "re": {"Match": {"kind": "ClassDef", "type": {"nodeId": "139706043674832"}}, "Pattern": {"kind": "ClassDef", "type": {"nodeId": "139706043675168"}}, "RegexFlag": {"kind": "ClassDef", "type": {"nodeId": "139706031006976"}}}, "types": {"_Cell": {"kind": "ClassDef", "type": {"nodeId": "139706039238128"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "139706043662400"}}, "CodeType": {"kind": "ClassDef", "type": {"nodeId": "139706043662736"}}, "MappingProxyType": {"kind": "ClassDef", "type": {"nodeId": "139706043663072"}}, "SimpleNamespace": {"kind": "ClassDef", "type": {"nodeId": "139706043663408"}}, "_LoaderProtocol": {"kind": "ClassDef", "type": {"nodeId": "139706043663744"}}, "ModuleType": {"kind": "ClassDef", "type": {"nodeId": "139706043664080"}}, "GeneratorType": {"kind": "ClassDef", "type": {"nodeId": "139706043664416"}}, "AsyncGeneratorType": {"kind": "ClassDef", "type": {"nodeId": "139706043664752"}}, "CoroutineType": {"kind": "ClassDef", "type": {"nodeId": "139706043665088"}}, "_StaticFunctionType": {"kind": "ClassDef", "type": {"nodeId": "139706043665424"}}, "MethodType": {"kind": "ClassDef", "type": {"nodeId": "139706043665760"}}, "BuiltinFunctionType": {"kind": "ClassDef", "type": {"nodeId": "139706043666096"}}, "WrapperDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "139706043666432"}}, "MethodWrapperType": {"kind": "ClassDef", "type": {"nodeId": "139706043666768"}}, "MethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "139706043667104"}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "139706043667440"}}, "TracebackType": {"kind": "ClassDef", "type": {"nodeId": "139706043667776"}}, "FrameType": {"kind": "ClassDef", "type": {"nodeId": "139706043668112"}}, "GetSetDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "139706043668448"}}, "MemberDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "139706043668784"}}, "GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "139706043669120"}}, "NoneType": {"kind": "ClassDef", "type": {"nodeId": "139706043669456"}}, "UnionType": {"kind": "ClassDef", "type": {"nodeId": "139706043669792"}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "139706039235776"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "139706039236112"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "139706039236448"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "139706039236784"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "139706039237120"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "139706039237456"}}, "TypeVarTuple": {"kind": "ClassDef", "type": {"nodeId": "139706039237792"}}}, "time": {"struct_time": {"kind": "ClassDef", "type": {"nodeId": "139706031282816"}}, "_ClockInfo": {"kind": "ClassDef", "type": {"nodeId": "139706031283152"}}}, "_ast": {"AST": {"kind": "ClassDef", "type": {"nodeId": "139706030553936"}}, "mod": {"kind": "ClassDef", "type": {"nodeId": "139706030554272"}}, "type_ignore": {"kind": "ClassDef", "type": {"nodeId": "139706030554608"}}, "TypeIgnore": {"kind": "ClassDef", "type": {"nodeId": "139706030800960"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "139706030801296"}}, "Module": {"kind": "ClassDef", "type": {"nodeId": "139706030801632"}}, "Interactive": {"kind": "ClassDef", "type": {"nodeId": "139706030801968"}}, "Expression": {"kind": "ClassDef", "type": {"nodeId": "139706030802304"}}, "stmt": {"kind": "ClassDef", "type": {"nodeId": "139706030802640"}}, "FunctionDef": {"kind": "ClassDef", "type": {"nodeId": "139706030802976"}}, "AsyncFunctionDef": {"kind": "ClassDef", "type": {"nodeId": "139706030803312"}}, "ClassDef": {"kind": "ClassDef", "type": {"nodeId": "139706030803648"}}, "Return": {"kind": "ClassDef", "type": {"nodeId": "139706030803984"}}, "Delete": {"kind": "ClassDef", "type": {"nodeId": "139706030804320"}}, "Assign": {"kind": "ClassDef", "type": {"nodeId": "139706030804656"}}, "AugAssign": {"kind": "ClassDef", "type": {"nodeId": "139706030804992"}}, "AnnAssign": {"kind": "ClassDef", "type": {"nodeId": "139706030805328"}}, "For": {"kind": "ClassDef", "type": {"nodeId": "139706030805664"}}, "AsyncFor": {"kind": "ClassDef", "type": {"nodeId": "139706030806000"}}, "While": {"kind": "ClassDef", "type": {"nodeId": "139706030806336"}}, "If": {"kind": "ClassDef", "type": {"nodeId": "139706030806672"}}, "With": {"kind": "ClassDef", "type": {"nodeId": "139706030807008"}}, "AsyncWith": {"kind": "ClassDef", "type": {"nodeId": "139706030807344"}}, "Raise": {"kind": "ClassDef", "type": {"nodeId": "139706030807680"}}, "Try": {"kind": "ClassDef", "type": {"nodeId": "139706030808016"}}, "Assert": {"kind": "ClassDef", "type": {"nodeId": "139706030808352"}}, "Import": {"kind": "ClassDef", "type": {"nodeId": "139706030808688"}}, "ImportFrom": {"kind": "ClassDef", "type": {"nodeId": "139706030809024"}}, "Global": {"kind": "ClassDef", "type": {"nodeId": "139706030809360"}}, "Nonlocal": {"kind": "ClassDef", "type": {"nodeId": "139706030809696"}}, "Expr": {"kind": "ClassDef", "type": {"nodeId": "139706030810032"}}, "Pass": {"kind": "ClassDef", "type": {"nodeId": "139706030810368"}}, "Break": {"kind": "ClassDef", "type": {"nodeId": "139706030810704"}}, "Continue": {"kind": "ClassDef", "type": {"nodeId": "139706030811040"}}, "expr": {"kind": "ClassDef", "type": {"nodeId": "139706030811376"}}, "BoolOp": {"kind": "ClassDef", "type": {"nodeId": "139706030811712"}}, "BinOp": {"kind": "ClassDef", "type": {"nodeId": "139706030812048"}}, "UnaryOp": {"kind": "ClassDef", "type": {"nodeId": "139706030812384"}}, "Lambda": {"kind": "ClassDef", "type": {"nodeId": "139706030812720"}}, "IfExp": {"kind": "ClassDef", "type": {"nodeId": "139706030813056"}}, "Dict": {"kind": "ClassDef", "type": {"nodeId": "139706030813392"}}, "Set": {"kind": "ClassDef", "type": {"nodeId": "139706030813728"}}, "ListComp": {"kind": "ClassDef", "type": {"nodeId": "139706030814064"}}, "SetComp": {"kind": "ClassDef", "type": {"nodeId": "139706030814400"}}, "DictComp": {"kind": "ClassDef", "type": {"nodeId": "139706030814736"}}, "GeneratorExp": {"kind": "ClassDef", "type": {"nodeId": "139706030815072"}}, "Await": {"kind": "ClassDef", "type": {"nodeId": "139706030815408"}}, "Yield": {"kind": "ClassDef", "type": {"nodeId": "139706030815744"}}, "YieldFrom": {"kind": "ClassDef", "type": {"nodeId": "139706030816080"}}, "Compare": {"kind": "ClassDef", "type": {"nodeId": "139706030816416"}}, "Call": {"kind": "ClassDef", "type": {"nodeId": "139706030816752"}}, "FormattedValue": {"kind": "ClassDef", "type": {"nodeId": "139706030915648"}}, "JoinedStr": {"kind": "ClassDef", "type": {"nodeId": "139706030915984"}}, "Constant": {"kind": "ClassDef", "type": {"nodeId": "139706030916320"}}, "NamedExpr": {"kind": "ClassDef", "type": {"nodeId": "139706030916656"}}, "Attribute": {"kind": "ClassDef", "type": {"nodeId": "139706030916992"}}, "Slice": {"kind": "ClassDef", "type": {"nodeId": "139706030917328"}}, "Subscript": {"kind": "ClassDef", "type": {"nodeId": "139706030917664"}}, "Starred": {"kind": "ClassDef", "type": {"nodeId": "139706030918000"}}, "Name": {"kind": "ClassDef", "type": {"nodeId": "139706030918336"}}, "List": {"kind": "ClassDef", "type": {"nodeId": "139706030918672"}}, "Tuple": {"kind": "ClassDef", "type": {"nodeId": "139706030919008"}}, "expr_context": {"kind": "ClassDef", "type": {"nodeId": "139706030919344"}}, "Del": {"kind": "ClassDef", "type": {"nodeId": "139706030919680"}}, "Load": {"kind": "ClassDef", "type": {"nodeId": "139706030920016"}}, "Store": {"kind": "ClassDef", "type": {"nodeId": "139706030920352"}}, "boolop": {"kind": "ClassDef", "type": {"nodeId": "139706030920688"}}, "And": {"kind": "ClassDef", "type": {"nodeId": "139706030921024"}}, "Or": {"kind": "ClassDef", "type": {"nodeId": "139706030921360"}}, "operator": {"kind": "ClassDef", "type": {"nodeId": "139706030921696"}}, "Add": {"kind": "ClassDef", "type": {"nodeId": "139706030922032"}}, "BitAnd": {"kind": "ClassDef", "type": {"nodeId": "139706030922368"}}, "BitOr": {"kind": "ClassDef", "type": {"nodeId": "139706030922704"}}, "BitXor": {"kind": "ClassDef", "type": {"nodeId": "139706030923040"}}, "Div": {"kind": "ClassDef", "type": {"nodeId": "139706030923376"}}, "FloorDiv": {"kind": "ClassDef", "type": {"nodeId": "139706030923712"}}, "LShift": {"kind": "ClassDef", "type": {"nodeId": "139706030924048"}}, "Mod": {"kind": "ClassDef", "type": {"nodeId": "139706030924384"}}, "Mult": {"kind": "ClassDef", "type": {"nodeId": "139706030924720"}}, "MatMult": {"kind": "ClassDef", "type": {"nodeId": "139706030925056"}}, "Pow": {"kind": "ClassDef", "type": {"nodeId": "139706030925392"}}, "RShift": {"kind": "ClassDef", "type": {"nodeId": "139706030925728"}}, "Sub": {"kind": "ClassDef", "type": {"nodeId": "139706030926064"}}, "unaryop": {"kind": "ClassDef", "type": {"nodeId": "139706030926400"}}, "Invert": {"kind": "ClassDef", "type": {"nodeId": "139706030926736"}}, "Not": {"kind": "ClassDef", "type": {"nodeId": "139706030927072"}}, "UAdd": {"kind": "ClassDef", "type": {"nodeId": "139706030927408"}}, "USub": {"kind": "ClassDef", "type": {"nodeId": "139706030927744"}}, "cmpop": {"kind": "ClassDef", "type": {"nodeId": "139706030928080"}}, "Eq": {"kind": "ClassDef", "type": {"nodeId": "139706030928416"}}, "Gt": {"kind": "ClassDef", "type": {"nodeId": "139706030928752"}}, "GtE": {"kind": "ClassDef", "type": {"nodeId": "139706030929088"}}, "In": {"kind": "ClassDef", "type": {"nodeId": "139706030929424"}}, "Is": {"kind": "ClassDef", "type": {"nodeId": "139706030929760"}}, "IsNot": {"kind": "ClassDef", "type": {"nodeId": "139706030930096"}}, "Lt": {"kind": "ClassDef", "type": {"nodeId": "139706030930432"}}, "LtE": {"kind": "ClassDef", "type": {"nodeId": "139706030930768"}}, "NotEq": {"kind": "ClassDef", "type": {"nodeId": "139706030931104"}}, "NotIn": {"kind": "ClassDef", "type": {"nodeId": "139706030931440"}}, "comprehension": {"kind": "ClassDef", "type": {"nodeId": "139706030997568"}}, "excepthandler": {"kind": "ClassDef", "type": {"nodeId": "139706030997904"}}, "ExceptHandler": {"kind": "ClassDef", "type": {"nodeId": "139706030998240"}}, "arguments": {"kind": "ClassDef", "type": {"nodeId": "139706030998576"}}, "arg": {"kind": "ClassDef", "type": {"nodeId": "139706030998912"}}, "keyword": {"kind": "ClassDef", "type": {"nodeId": "139706030999248"}}, "alias": {"kind": "ClassDef", "type": {"nodeId": "139706030999584"}}, "withitem": {"kind": "ClassDef", "type": {"nodeId": "139706030999920"}}, "Match": {"kind": "ClassDef", "type": {"nodeId": "139706031000256"}}, "pattern": {"kind": "ClassDef", "type": {"nodeId": "139706031000592"}}, "match_case": {"kind": "ClassDef", "type": {"nodeId": "139706031000928"}}, "MatchValue": {"kind": "ClassDef", "type": {"nodeId": "139706031001264"}}, "MatchSingleton": {"kind": "ClassDef", "type": {"nodeId": "139706031001600"}}, "MatchSequence": {"kind": "ClassDef", "type": {"nodeId": "139706031001936"}}, "MatchStar": {"kind": "ClassDef", "type": {"nodeId": "139706031002272"}}, "MatchMapping": {"kind": "ClassDef", "type": {"nodeId": "139706031002608"}}, "MatchClass": {"kind": "ClassDef", "type": {"nodeId": "139706031002944"}}, "MatchAs": {"kind": "ClassDef", "type": {"nodeId": "139706031003280"}}, "MatchOr": {"kind": "ClassDef", "type": {"nodeId": "139706031003616"}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "type": {"nodeId": "139706039484816"}}, "IOBase": {"kind": "ClassDef", "type": {"nodeId": "139706039485152"}}, "RawIOBase": {"kind": "ClassDef", "type": {"nodeId": "139706039485488"}}, "BufferedIOBase": {"kind": "ClassDef", "type": {"nodeId": "139706039485824"}}, "FileIO": {"kind": "ClassDef", "type": {"nodeId": "139706039486160"}}, "BytesIO": {"kind": "ClassDef", "type": {"nodeId": "139706039486496"}}, "BufferedReader": {"kind": "ClassDef", "type": {"nodeId": "139706039486832"}}, "BufferedWriter": {"kind": "ClassDef", "type": {"nodeId": "139706039487168"}}, "BufferedRandom": {"kind": "ClassDef", "type": {"nodeId": "139706039487504"}}, "BufferedRWPair": {"kind": "ClassDef", "type": {"nodeId": "139706039487840"}}, "TextIOBase": {"kind": "ClassDef", "type": {"nodeId": "139706039488176"}}, "TextIOWrapper": {"kind": "ClassDef", "type": {"nodeId": "139706039488512"}}, "StringIO": {"kind": "ClassDef", "type": {"nodeId": "139706039488848"}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "type": {"nodeId": "139706031282144"}}}, "array": {"array": {"kind": "ClassDef", "type": {"nodeId": "139706030543856"}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "type": {"nodeId": "139706039724272"}}, "PyDLL": {"kind": "ClassDef", "type": {"nodeId": "139706039724608"}}, "LibraryLoader": {"kind": "ClassDef", "type": {"nodeId": "139706031276768"}}, "_CDataMeta": {"kind": "ClassDef", "type": {"nodeId": "139706039724944"}}, "_CData": {"kind": "ClassDef", "type": {"nodeId": "139706039725280"}}, "_CanCastTo": {"kind": "ClassDef", "type": {"nodeId": "139706039725616"}}, "_PointerLike": {"kind": "ClassDef", "type": {"nodeId": "139706039725952"}}, "_FuncPointer": {"kind": "ClassDef", "type": {"nodeId": "139706039726288"}}, "_NamedFuncPointer": {"kind": "ClassDef", "type": {"nodeId": "139706039726624"}}, "ArgumentError": {"kind": "ClassDef", "type": {"nodeId": "139706039726960"}}, "_CArgObject": {"kind": "ClassDef", "type": {"nodeId": "139706039727296"}}, "_Pointer": {"kind": "ClassDef", "type": {"nodeId": "139706031277104"}}, "_SimpleCData": {"kind": "ClassDef", "type": {"nodeId": "139706039727632"}}, "c_byte": {"kind": "ClassDef", "type": {"nodeId": "139706039727968"}}, "c_char": {"kind": "ClassDef", "type": {"nodeId": "139706039728304"}}, "c_char_p": {"kind": "ClassDef", "type": {"nodeId": "139706039728640"}}, "c_double": {"kind": "ClassDef", "type": {"nodeId": "139706039728976"}}, "c_longdouble": {"kind": "ClassDef", "type": {"nodeId": "139706039729312"}}, "c_float": {"kind": "ClassDef", "type": {"nodeId": "139706039729648"}}, "c_int": {"kind": "ClassDef", "type": {"nodeId": "139706030407744"}}, "c_int8": {"kind": "ClassDef", "type": {"nodeId": "139706030408080"}}, "c_int16": {"kind": "ClassDef", "type": {"nodeId": "139706030408416"}}, "c_int32": {"kind": "ClassDef", "type": {"nodeId": "139706030408752"}}, "c_int64": {"kind": "ClassDef", "type": {"nodeId": "139706030409088"}}, "c_long": {"kind": "ClassDef", "type": {"nodeId": "139706030409424"}}, "c_longlong": {"kind": "ClassDef", "type": {"nodeId": "139706030409760"}}, "c_short": {"kind": "ClassDef", "type": {"nodeId": "139706030410096"}}, "c_size_t": {"kind": "ClassDef", "type": {"nodeId": "139706030410432"}}, "c_ssize_t": {"kind": "ClassDef", "type": {"nodeId": "139706030410768"}}, "c_ubyte": {"kind": "ClassDef", "type": {"nodeId": "139706030411104"}}, "c_uint": {"kind": "ClassDef", "type": {"nodeId": "139706030411440"}}, "c_uint8": {"kind": "ClassDef", "type": {"nodeId": "139706030411776"}}, "c_uint16": {"kind": "ClassDef", "type": {"nodeId": "139706030412112"}}, "c_uint32": {"kind": "ClassDef", "type": {"nodeId": "139706030412448"}}, "c_uint64": {"kind": "ClassDef", "type": {"nodeId": "139706030412784"}}, "c_ulong": {"kind": "ClassDef", "type": {"nodeId": "139706030413120"}}, "c_ulonglong": {"kind": "ClassDef", "type": {"nodeId": "139706030413456"}}, "c_ushort": {"kind": "ClassDef", "type": {"nodeId": "139706030413792"}}, "c_void_p": {"kind": "ClassDef", "type": {"nodeId": "139706030414128"}}, "c_wchar": {"kind": "ClassDef", "type": {"nodeId": "139706030414464"}}, "c_wchar_p": {"kind": "ClassDef", "type": {"nodeId": "139706030414800"}}, "c_bool": {"kind": "ClassDef", "type": {"nodeId": "139706030415136"}}, "py_object": {"kind": "ClassDef", "type": {"nodeId": "139706030415472"}}, "_CField": {"kind": "ClassDef", "type": {"nodeId": "139706030415808"}}, "_StructUnionMeta": {"kind": "ClassDef", "type": {"nodeId": "139706030416144"}}, "_StructUnionBase": {"kind": "ClassDef", "type": {"nodeId": "139706030416480"}}, "Union": {"kind": "ClassDef", "type": {"nodeId": "139706030416816"}}, "Structure": {"kind": "ClassDef", "type": {"nodeId": "139706030417152"}}, "BigEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "139706030417488"}}, "LittleEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "139706030417824"}}, "Array": {"kind": "ClassDef", "type": {"nodeId": "139706031277440"}}}, "mmap": {"mmap": {"kind": "ClassDef", "type": {"nodeId": "139706039484480"}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "type": {"nodeId": "139706043675504"}}, "PickleBuffer": {"kind": "ClassDef", "type": {"nodeId": "139706043675840"}}, "PickleError": {"kind": "ClassDef", "type": {"nodeId": "139706043676176"}}, "PicklingError": {"kind": "ClassDef", "type": {"nodeId": "139706043676512"}}, "UnpicklingError": {"kind": "ClassDef", "type": {"nodeId": "139706043676848"}}, "Pickler": {"kind": "ClassDef", "type": {"nodeId": "139706043677184"}}, "Unpickler": {"kind": "ClassDef", "type": {"nodeId": "139706043677520"}}}, "os": {"_Environ": {"kind": "ClassDef", "type": {"nodeId": "139706043677856"}}, "stat_result": {"kind": "ClassDef", "type": {"nodeId": "139706031007312"}}, "PathLike": {"kind": "ClassDef", "type": {"nodeId": "139706031007648"}}, "DirEntry": {"kind": "ClassDef", "type": {"nodeId": "139706043678192"}}, "statvfs_result": {"kind": "ClassDef", "type": {"nodeId": "139706031007984"}}, "uname_result": {"kind": "ClassDef", "type": {"nodeId": "139706031008320"}}, "terminal_size": {"kind": "ClassDef", "type": {"nodeId": "139706031008656"}}, "_ScandirIterator": {"kind": "ClassDef", "type": {"nodeId": "139706031008992"}}, "_wrap_close": {"kind": "ClassDef", "type": {"nodeId": "139706031009328"}}, "times_result": {"kind": "ClassDef", "type": {"nodeId": "139706031009664"}}, "waitid_result": {"kind": "ClassDef", "type": {"nodeId": "139706031010000"}}, "sched_param": {"kind": "ClassDef", "type": {"nodeId": "139706031010336"}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "type": {"nodeId": "139706039493216"}}, "Loader": {"kind": "ClassDef", "type": {"nodeId": "139706039493552"}}, "ResourceLoader": {"kind": "ClassDef", "type": {"nodeId": "139706039493888"}}, "InspectLoader": {"kind": "ClassDef", "type": {"nodeId": "139706039494224"}}, "ExecutionLoader": {"kind": "ClassDef", "type": {"nodeId": "139706039494560"}}, "SourceLoader": {"kind": "ClassDef", "type": {"nodeId": "139706039494896"}}, "MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "139706039495232"}}, "PathEntryFinder": {"kind": "ClassDef", "type": {"nodeId": "139706039495568"}}, "FileLoader": {"kind": "ClassDef", "type": {"nodeId": "139706039495904"}}, "ResourceReader": {"kind": "ClassDef", "type": {"nodeId": "139706039496240"}}, "Traversable": {"kind": "ClassDef", "type": {"nodeId": "139706039496576"}}, "TraversableResources": {"kind": "ClassDef", "type": {"nodeId": "139706039496912"}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "type": {"nodeId": "139706039492544"}}, "BuiltinImporter": {"kind": "ClassDef", "type": {"nodeId": "139706031011680"}}, "FrozenImporter": {"kind": "ClassDef", "type": {"nodeId": "139706031012016"}}, "WindowsRegistryFinder": {"kind": "ClassDef", "type": {"nodeId": "139706031012352"}}, "PathFinder": {"kind": "ClassDef", "type": {"nodeId": "139706039492880"}}, "FileFinder": {"kind": "ClassDef", "type": {"nodeId": "139706031012688"}}, "SourceFileLoader": {"kind": "ClassDef", "type": {"nodeId": "139706031013024"}}, "SourcelessFileLoader": {"kind": "ClassDef", "type": {"nodeId": "139706031013360"}}, "ExtensionFileLoader": {"kind": "ClassDef", "type": {"nodeId": "139706031276096"}}}, "sre_constants": {"error": {"kind": "ClassDef", "type": {"nodeId": "139706043674160"}}, "_NamedIntConstant": {"kind": "ClassDef", "type": {"nodeId": "139706043674496"}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "type": {"nodeId": "139706030539824"}}, "_ReadableStream": {"kind": "ClassDef", "type": {"nodeId": "139706030540160"}}, "_Stream": {"kind": "ClassDef", "type": {"nodeId": "139706031277776"}}, "_Encoder": {"kind": "ClassDef", "type": {"nodeId": "139706030540496"}}, "_Decoder": {"kind": "ClassDef", "type": {"nodeId": "139706030540832"}}, "_StreamReader": {"kind": "ClassDef", "type": {"nodeId": "139706030541168"}}, "_StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "139706030541504"}}, "_IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "139706030541840"}}, "_IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "139706030542176"}}, "CodecInfo": {"kind": "ClassDef", "type": {"nodeId": "139706031278112"}}, "Codec": {"kind": "ClassDef", "type": {"nodeId": "139706030542512"}}, "IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "139706030542848"}}, "IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "139706030543184"}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "139706031278448"}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "139706031278784"}}, "StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "139706031279120"}}, "StreamReader": {"kind": "ClassDef", "type": {"nodeId": "139706031279456"}}, "StreamReaderWriter": {"kind": "ClassDef", "type": {"nodeId": "139706031279792"}}, "StreamRecoder": {"kind": "ClassDef", "type": {"nodeId": "139706030543520"}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "type": {"nodeId": "139706043671136"}}, "SubprocessError": {"kind": "ClassDef", "type": {"nodeId": "139706043671472"}}, "TimeoutExpired": {"kind": "ClassDef", "type": {"nodeId": "139706043671808"}}, "CalledProcessError": {"kind": "ClassDef", "type": {"nodeId": "139706043672144"}}, "Popen": {"kind": "ClassDef", "type": {"nodeId": "139706043672480"}}}, "importlib": {"Loader": {"kind": "ClassDef", "type": {"nodeId": "139706039493552"}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "139706039489184"}}, "PackageNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "139706039489856"}}, "EntryPoint": {"kind": "ClassDef", "type": {"nodeId": "139706039490528"}}, "EntryPoints": {"kind": "ClassDef", "type": {"nodeId": "139706039490864"}}, "SelectableGroups": {"kind": "ClassDef", "type": {"nodeId": "139706039491200"}}, "PackagePath": {"kind": "ClassDef", "type": {"nodeId": "139706031282480"}}, "FileHash": {"kind": "ClassDef", "type": {"nodeId": "139706039491536"}}, "Distribution": {"kind": "ClassDef", "type": {"nodeId": "139706039491872"}}, "DistributionFinder": {"kind": "ClassDef", "type": {"nodeId": "139706031010672"}}, "MetadataPathFinder": {"kind": "ClassDef", "type": {"nodeId": "139706031011344"}}, "PathDistribution": {"kind": "ClassDef", "type": {"nodeId": "139706039492208"}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "type": {"nodeId": "139706043672816"}}, "_State": {"kind": "ClassDef", "type": {"nodeId": "139706043673152"}}, "SubPattern": {"kind": "ClassDef", "type": {"nodeId": "139706043673488"}}, "Tokenizer": {"kind": "ClassDef", "type": {"nodeId": "139706043673824"}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "type": {"nodeId": "139706030553600"}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "139706039489184"}}, "SimplePath": {"kind": "ClassDef", "type": {"nodeId": "139706039489520"}}}, "email.message": {"Message": {"kind": "ClassDef", "type": {"nodeId": "139706039500272"}}, "MIMEPart": {"kind": "ClassDef", "type": {"nodeId": "139706039713856"}}, "EmailMessage": {"kind": "ClassDef", "type": {"nodeId": "139706039714192"}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "type": {"nodeId": "139706031280128"}}, "PurePosixPath": {"kind": "ClassDef", "type": {"nodeId": "139706031280464"}}, "PureWindowsPath": {"kind": "ClassDef", "type": {"nodeId": "139706031280800"}}, "Path": {"kind": "ClassDef", "type": {"nodeId": "139706031281136"}}, "PosixPath": {"kind": "ClassDef", "type": {"nodeId": "139706031281472"}}, "WindowsPath": {"kind": "ClassDef", "type": {"nodeId": "139706031281808"}}}, "email": {"Message": {"kind": "ClassDef", "type": {"nodeId": "139706039500272"}}, "Policy": {"kind": "ClassDef", "type": {"nodeId": "139706039499264"}}}, "email.charset": {"Charset": {"kind": "ClassDef", "type": {"nodeId": "139706039723936"}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "type": {"nodeId": "139706039723600"}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "type": {"nodeId": "139706039714864"}}, "MessageParseError": {"kind": "ClassDef", "type": {"nodeId": "139706039715200"}}, "HeaderParseError": {"kind": "ClassDef", "type": {"nodeId": "139706039715536"}}, "BoundaryError": {"kind": "ClassDef", "type": {"nodeId": "139706039715872"}}, "MultipartConversionError": {"kind": "ClassDef", "type": {"nodeId": "139706039716208"}}, "CharsetError": {"kind": "ClassDef", "type": {"nodeId": "139706039716544"}}, "MessageDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039716880"}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039717216"}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039717552"}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039717888"}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039718224"}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039718560"}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039718896"}}, "UndecodableBytesDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039719232"}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039719568"}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039719904"}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039720240"}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039720576"}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039720912"}}, "HeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039721248"}}, "InvalidHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039721584"}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "type": {"nodeId": "139706039721920"}}, "NonPrintableDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039722256"}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039722592"}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039722928"}}, "InvalidDateDefect": {"kind": "ClassDef", "type": {"nodeId": "139706039723264"}}}, "email.policy": {"Policy": {"kind": "ClassDef", "type": {"nodeId": "139706039499264"}}, "Compat32": {"kind": "ClassDef", "type": {"nodeId": "139706039499600"}}, "EmailPolicy": {"kind": "ClassDef", "type": {"nodeId": "139706039499936"}}}, "email.header": {"Header": {"kind": "ClassDef", "type": {"nodeId": "139706039714528"}}}}, "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": "ImportedType", "fullname": "typing.ByteString"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"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": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "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": "__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": "_V_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T_contra", "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": "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": "LocalType"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "Self", "kind": "Other"}, {"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": "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"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": "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": "auto", "kind": "LocalType"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "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": "Self", "kind": "Other"}, {"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": "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": "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"}], "_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": "array", "kind": "Module", "fullname": "array"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "pickle", "kind": "Module", "fullname": "pickle"}, {"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": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"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": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"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": "_BufferWithLen", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "Other"}, {"name": "IndexableBuffer", "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"}], "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": "overload", "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": "_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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "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": "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"}], "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "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": "Self", "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": "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": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_V_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": "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"}], "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"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": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "Any", "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": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Text", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"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": "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": "override", "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": "__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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "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": "Self", "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": "__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"}], "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": "Self", "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": "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"}], "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": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Self", "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_UnionT", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "_CT", "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": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "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": "get_errno", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "POINTER", "kind": "Other"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"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": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}], "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": "Self", "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": "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"}], "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": "Union", "kind": "Other"}, {"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"}], "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": "Self", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"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": "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": "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": "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"}], "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": "Self", "kind": "Other"}, {"name": "Any", "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": "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": "Self", "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": "__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"}], "_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": "_CArgObject", "kind": "ImportedType", "fullname": "ctypes._CArgObject"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "ctypes._PointerLike"}, {"name": "TypeAlias", "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"}], "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": "Self", "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": "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": "Self", "kind": "Other"}, {"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": "__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"}], "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"}], "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": "Self", "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": "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": "Self", "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": "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"}], "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": "Union", "kind": "Other"}, {"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": "__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": {"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 diff --git a/utbot-python-types/src/test/resources/boruvka.json b/utbot-python-types/src/test/resources/boruvka.json index 43800c0fda..5475959dce 100644 --- a/utbot-python-types/src/test/resources/boruvka.json +++ b/utbot-python-types/src/test/resources/boruvka.json @@ -1 +1 @@ -{"nodeStorage": {"140414016326000": {"type": "Concrete", "module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979120848"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062628416"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062628864"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062629312"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062629760"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062630208"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062630656"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062631104"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062632000"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062632448"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062632896"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062633344"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062633792"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062634240"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062634688"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062635136"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062635584"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062636032"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062636480"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062636928"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062637376"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062637824"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062638272"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062638720"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062639168"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062639616"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062640064"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062640512"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062755904"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062756352"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062756800"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062757248"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062757696"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062758144"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062758592"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062759040"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062759488"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062759936"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062760384"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062760832"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062761280"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062761728"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062762176"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062762624"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062763072"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062763520"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062763968"}, "name": "zfill"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979120960"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062765312"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062765760"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062766208"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062766656"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062767104"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062767552"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062768000"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062768448"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062768896"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062769344"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062769792"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062770240"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062770688"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062771136"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062771584"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": false}, "140413979120848": {"type": "Overloaded", "items": [{"nodeId": "140414062627520"}, {"nodeId": "140413979068224"}]}, "140414062627520": {"type": "Function", "typeVars": [".-1.140414062627520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414062627520"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}, "0": {"type": "Unknown"}, "140414092547392": {"type": "Concrete", "module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016353920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978606752"}, "items": [{"kind": "Variable", "name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924025600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__class__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083710336"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079762496"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079762944"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079763392"}, "name": "__delattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079763840"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079764288"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079764736"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079765184"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079765632"}, "name": "__hash__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079766080"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079766528"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079766976"}, "name": "__sizeof__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079767424"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079767872"}, "name": "__reduce_ex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079768768"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079769216"}, "name": "__init_subclass__"}], "typeVars": [], "bases": [], "isAbstract": false}, "140414016353920": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "N": {"type": "NoneType"}, "140414016327680": {"type": "Concrete", "module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979541792"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058510400"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058510848"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058511296"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058511744"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058643520"}, "name": "items"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979542016"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979542352"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979543136"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058646656"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058647104"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058647552"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058648000"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058648448"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058648896"}, "name": "__reversed__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058649344"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058649792"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058650240"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979543472"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}], "bases": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "isAbstract": false}, "140413979541792": {"type": "Overloaded", "items": [{"nodeId": "140414058507264"}, {"nodeId": "140414058507712"}, {"nodeId": "140414058508160"}, {"nodeId": "140414058508608"}, {"nodeId": "140414058509056"}, {"nodeId": "140414058509504"}, {"nodeId": "140414058509952"}]}, "140414058507264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414016327680": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016327680", "variance": "INVARIANT"}, ".2.140414016327680": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016327680", "variance": "INVARIANT"}, "140414058507712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".2.140414016327680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140414058508160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414000229936": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054907968"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054908416"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140414000229936"}, {"nodeId": ".2.140414000229936"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__getitem__", "keys"]}, "140414054907968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414000229936"}, {"nodeId": ".2.140414000229936"}]}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414000229936"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000229936": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000229936", "variance": "INVARIANT"}, ".2.140414000229936": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000229936", "variance": "COVARIANT"}, "140414092551424": {"type": "Protocol", "module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975252768"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092551424"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__iter__"]}, "140413975252768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092551424"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092551424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414092551424": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092551424", "variance": "COVARIANT"}, "140414092551760": {"type": "Protocol", "module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975255680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050170048"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140414092551760"}], "bases": [{"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092551760"}]}], "protocolMembers": ["__iter__", "__next__"]}, "140413975255680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092551760"}]}], "returnType": {"nodeId": ".1.140414092551760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092551760": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092551760", "variance": "COVARIANT"}, "140414050170048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092551760"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092551760"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "A": {"type": "Any"}, "140414054908416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414000229936"}, {"nodeId": ".2.140414000229936"}]}, {"nodeId": ".1.140414000229936"}], "returnType": {"nodeId": ".2.140414000229936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058508608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".2.140414016327680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414058509056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979542576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979542576": {"type": "Tuple", "items": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "140414058509504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979542800"}]}, {"nodeId": ".2.140414016327680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140413979542800": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016327680"}]}, "140414058509952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414016327344": {"type": "Concrete", "module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979392288"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058362496"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058362944"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058363392"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058363840"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058364288"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058496064"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058496512"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058496960"}, "name": "remove"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979392400"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058498304"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058498752"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979393632"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979393744"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058500992"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979541568"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058502336"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058502784"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058503232"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058503680"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058504128"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058504576"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058505024"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058505472"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058505920"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058506368"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058506816"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414016327344"}], "bases": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414016327344"}]}], "isAbstract": false}, "140413979392288": {"type": "Overloaded", "items": [{"nodeId": "140414058361600"}, {"nodeId": "140414058362048"}]}, "140414058361600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414016327344": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016327344", "variance": "INVARIANT"}, "140414058362048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058362496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058362944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058363392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058363840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414016327344"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414017156960": {"type": "Protocol", "module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413974860448"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__index__"]}, "140413974860448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016324320": {"type": "Concrete", "module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978917936"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075362816"}, "name": "as_integer_ratio"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924016192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413928913856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413928913184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413928913408"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075365056"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075365504"}, "name": "bit_length"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075365952"}, "name": "bit_count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075367296"}, "name": "to_bytes"}, {"kind": "Variable", "name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928912512"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075368192"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075368640"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075369088"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075369536"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075369984"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075370432"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075370880"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067523648"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067524096"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067524544"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067524992"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067525440"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067525888"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067526336"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979115808"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067529472"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067529920"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067530368"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067530816"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067531264"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067531712"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067532160"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067532608"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067533056"}, "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067533504"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067533952"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067534400"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067534848"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067535296"}, "name": "__invert__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067535744"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067536192"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067536640"}, "name": "__floor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067537088"}, "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067537536"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067537984"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067538432"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067538880"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067539328"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067621952"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067622400"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067622848"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067623296"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067623744"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067624192"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067624640"}, "name": "__index__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413978917936": {"type": "Overloaded", "items": [{"nodeId": "140413983340384"}, {"nodeId": "140413983341952"}]}, "140413983340384": {"type": "Function", "typeVars": [".-1.140413983340384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979116480"}], "returnType": {"nodeId": ".-1.140413983340384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140413979116480": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413979116368"}, {"nodeId": "140414017143184"}, {"nodeId": "140414017156960"}, {"nodeId": "140414000229264"}]}, "140413979116368": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414021319392": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414021318832"}]}, "140414017150240": {"type": "Concrete", "module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979122080"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062937472"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062937920"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062938368"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062938816"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062939264"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062939712"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062940608"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062941056"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062941952"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062942400"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062942848"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062943296"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062943744"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062944192"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062944640"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062945088"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062945536"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062945984"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062946432"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062946880"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062947328"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062947776"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062948224"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062948672"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062949120"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062949568"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062950016"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062950464"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062950912"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062951360"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062951808"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063034432"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063034880"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063035328"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063035776"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063036224"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063036672"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063037120"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063037568"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063038016"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924307936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924307488"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063039360"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063039808"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979125552"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063041152"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063041600"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063042048"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063042496"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063042944"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063043392"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063043840"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063044288"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063044736"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063045184"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063045632"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063046080"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140414017148224"}], "isAbstract": false}, "140413979122080": {"type": "Overloaded", "items": [{"nodeId": "140413979068672"}, {"nodeId": "140414062936576"}, {"nodeId": "140414062937024"}]}, "140413979068672": {"type": "Function", "typeVars": [".-1.140413979068672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979126784"}], "returnType": {"nodeId": ".-1.140413979068672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140413979126784": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414017156960"}]}, {"nodeId": "140414017156960"}, {"nodeId": "140414017144192"}, {"nodeId": "140413979126672"}]}, "140414017144192": {"type": "Protocol", "module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975160512"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__bytes__"]}, "140413975160512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017144192"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979126672": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, ".-1.140413979068672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413979068672", "variance": "INVARIANT"}, "140414062936576": {"type": "Function", "typeVars": [".-1.140414062936576"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414062936576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}, ".-1.140414062936576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062936576", "variance": "INVARIANT"}, "140414062937024": {"type": "Function", "typeVars": [".-1.140414062937024"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140414062937024"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140414062937024": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062937024", "variance": "INVARIANT"}, "140414062937472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062937920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414062938368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979127008"}, {"nodeId": "140413979127120"}, {"nodeId": "140413979127232"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979127008": {"type": "Union", "items": [{"nodeId": "140413979126896"}, {"nodeId": "140414017156960"}]}, "140413979126896": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979127120": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979127232": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062938816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140414062939264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979127568"}, {"nodeId": "140413979127680"}, {"nodeId": "140413979127792"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979127568": {"type": "Union", "items": [{"nodeId": "140413979127344"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413979127456"}]}]}, "140413979127344": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414016327008": {"type": "Concrete", "module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058352192"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058352640"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058353088"}, "name": "__contains__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390832"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058354432"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058354880"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058355328"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058355776"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058356224"}, "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979391504"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058357568"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058358016"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058358464"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058358912"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058359360"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414016327008"}], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414016327008"}]}], "isAbstract": false}, "140414058352192": {"type": "Function", "typeVars": [".-1.140414058352192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": ".-1.140414058352192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".1.140414016327008": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016327008", "variance": "COVARIANT"}, ".-1.140414058352192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058352192", "variance": "INVARIANT"}, "140414058352640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058353088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092547728": {"type": "Concrete", "module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058244672"}, "name": "__new__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979389376"}, "items": [{"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__and__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979389488"}, "items": [{"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__or__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390272"}, "items": [{"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__xor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390384"}, "items": [{"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390496"}, "items": [{"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390608"}, "items": [{"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058349056"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140414016324320"}], "isAbstract": false}, "140414058244672": {"type": "Function", "typeVars": [".-1.140414058244672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414058244672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".-1.140414058244672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058244672", "variance": "INVARIANT"}, "140413979389376": {"type": "Overloaded", "items": [{"nodeId": "140414058245120"}, {"nodeId": "140414058245568"}]}, "140414058245120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058245568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979389488": {"type": "Overloaded", "items": [{"nodeId": "140414058246016"}, {"nodeId": "140414058246464"}]}, "140414058246016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058246464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979390272": {"type": "Overloaded", "items": [{"nodeId": "140414058246912"}, {"nodeId": "140414058247360"}]}, "140414058246912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058247360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979390384": {"type": "Overloaded", "items": [{"nodeId": "140414058247808"}, {"nodeId": "140414058248256"}]}, "140414058247808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058248256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979390496": {"type": "Overloaded", "items": [{"nodeId": "140414058248704"}, {"nodeId": "140414058249152"}]}, "140414058248704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058249152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979390608": {"type": "Overloaded", "items": [{"nodeId": "140414058249600"}, {"nodeId": "140414058348608"}]}, "140414058249600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058348608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058349056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413979391056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979391056": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}]}, "140413979390832": {"type": "Overloaded", "items": [{"nodeId": "140414058353536"}, {"nodeId": "140414058353984"}]}, "140414058353536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414016327008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058353984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414016326672": {"type": "Concrete", "module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924618336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924619232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924619456"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979390720"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058351744"}, "name": "indices"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413924618336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924619232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924619456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979390720": {"type": "Overloaded", "items": [{"nodeId": "140414058350848"}, {"nodeId": "140414058351296"}]}, "140414058350848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058351296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414058351744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326672"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140413979392176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979392176": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414058354432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016327008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058354880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058355328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058355776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058356224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979391504": {"type": "Overloaded", "items": [{"nodeId": "140414058356672"}, {"nodeId": "140414058357120"}]}, "140414058356672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058357120": {"type": "Function", "typeVars": [".-1.140414058357120"], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": ".-1.140414058357120"}]}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140413979392512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058357120": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058357120", "variance": "INVARIANT"}, "140413979392512": {"type": "Union", "items": [{"nodeId": ".1.140414016327008"}, {"nodeId": ".-1.140414058357120"}]}, "140414058357568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058358016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058358464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058358912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327008", "args": [{"nodeId": ".1.140414016327008"}]}, {"nodeId": "A"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414058359360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140413999700608": {"type": "Concrete", "module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971157888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971158336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971158560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071079648"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071080096"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071081440"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971157888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016323648": {"type": "Concrete", "module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924020448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924020000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924019776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924019552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924019328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924019104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924018880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924018656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924018432"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978607200"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978915248"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075356992"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983340608"}, "name": "__subclasses__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075357888"}, "name": "mro"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075358336"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075358784"}, "name": "__subclasscheck__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924018208"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075359680"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075360128"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413924020448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924020000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924019776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140413999694560", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999694560": {"type": "Concrete", "module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075862624"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075519264"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075519712"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075520160"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075520608"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075521056"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075521504"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075521952"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075522400"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075522848"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075523296"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075523744"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075524192"}, "name": "__ror__"}], "typeVars": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}], "bases": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "isAbstract": false}, "140414075862624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140413999694560": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999694560", "variance": "INVARIANT"}, ".2.140413999694560": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999694560", "variance": "COVARIANT"}, "140414075519264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, {"nodeId": ".1.140413999694560"}], "returnType": {"nodeId": ".2.140413999694560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075519712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414075520160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414075520608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075521056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075521504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414017146544", "args": [{"nodeId": ".1.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017146544": {"type": "Concrete", "module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050604352"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050604800"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050605248"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050605696"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050606144"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050606592"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050607040"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050607488"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050607936"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050608384"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050608832"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050609280"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140414017146544"}], "bases": [{"nodeId": "140414017145872"}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017146544"}]}], "isAbstract": false}, "140414050604352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414017146544"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140414017146544": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017146544", "variance": "COVARIANT"}, "140414092556464": {"type": "Concrete", "module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970278976"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991879728"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050612864"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050613312"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050613760"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050614208"}, "name": "__contains__"}], "typeVars": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}], "bases": [{"nodeId": "140414092554784", "args": [{"nodeId": ".1.140414092556464"}]}], "isAbstract": true}, "140413970278976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}, {"nodeId": ".1.140414092556464"}], "returnType": {"nodeId": ".2.140414092556464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414092556464": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092556464", "variance": "INVARIANT"}, ".2.140414092556464": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092556464", "variance": "COVARIANT"}, "140413991879728": {"type": "Overloaded", "items": [{"nodeId": "140414050611968"}, {"nodeId": "140414050612416"}]}, "140414050611968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}, {"nodeId": ".1.140414092556464"}], "returnType": {"nodeId": "140413991884880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991884880": {"type": "Union", "items": [{"nodeId": ".2.140414092556464"}, {"nodeId": "N"}]}, "140414050612416": {"type": "Function", "typeVars": [".-1.140414050612416"], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}, {"nodeId": ".1.140414092556464"}, {"nodeId": "140413991884992"}], "returnType": {"nodeId": "140413991885104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140413991884992": {"type": "Union", "items": [{"nodeId": ".2.140414092556464"}, {"nodeId": ".-1.140414050612416"}]}, ".-1.140414050612416": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050612416", "variance": "INVARIANT"}, "140413991885104": {"type": "Union", "items": [{"nodeId": ".2.140414092556464"}, {"nodeId": ".-1.140414050612416"}]}, "140414050612864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}], "returnType": {"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017146208": {"type": "Concrete", "module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050598976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050599424"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050599872"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050600320"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050600768"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050601216"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050601664"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050602112"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050602560"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050603008"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050603456"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050603904"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}], "bases": [{"nodeId": "140414017145872"}, {"nodeId": "140414092555792", "args": [{"nodeId": "140413999564160"}]}], "isAbstract": false}, "140414050598976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140414017146208": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017146208", "variance": "COVARIANT"}, ".2.140414017146208": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017146208", "variance": "COVARIANT"}, "140414050599424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991881632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414017150912": {"type": "Concrete", "module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979543920"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058652480"}, "name": "add"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058652928"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058653376"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058653824"}, "name": "difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058654272"}, "name": "discard"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058654720"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058655168"}, "name": "intersection_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058655616"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058656064"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058656512"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058656960"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058657408"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058657856"}, "name": "symmetric_difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058658304"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058658752"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058659200"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058790976"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058791424"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058791872"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058792320"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058792768"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058793216"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058793664"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058794112"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058794560"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058795008"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058795456"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058795904"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058796352"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058796800"}, "name": "__gt__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058797248"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414017150912"}], "bases": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414017150912"}]}], "isAbstract": false}, "140413979543920": {"type": "Overloaded", "items": [{"nodeId": "140414058651584"}, {"nodeId": "140414058652032"}]}, "140414058651584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017150912": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017150912", "variance": "INVARIANT"}, "140414058652032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058652480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": ".1.140414017150912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058652928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058653376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058653824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058654272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": ".1.140414017150912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058654720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058655168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058655616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058656064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058656512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058656960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": ".1.140414017150912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058657408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058657856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058658304": {"type": "Function", "typeVars": [".-1.140414058658304"], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414058658304"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413979546048"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140414058658304": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058658304", "variance": "INVARIANT"}, "140413979546048": {"type": "Union", "items": [{"nodeId": ".1.140414017150912"}, {"nodeId": ".-1.140414058658304"}]}, "140414058658752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058659200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058790976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058791424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058791872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092555792": {"type": "Concrete", "module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970204928"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050491008"}, "name": "_hash"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050491456"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050491904"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050492352"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050492800"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050493248"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050493696"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050494144"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050494592"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050495040"}, "name": "isdisjoint"}], "typeVars": [{"nodeId": ".1.140414092555792"}], "bases": [{"nodeId": "140414092554784", "args": [{"nodeId": ".1.140414092555792"}]}], "isAbstract": true}, "140413970204928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414092555792": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092555792", "variance": "COVARIANT"}, "140414050491008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050491456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050491904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050492352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050492800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050493248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050493696": {"type": "Function", "typeVars": [".-1.140414050493696"], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414050493696"}]}], "returnType": {"nodeId": "140414092555792", "args": [{"nodeId": "140413991880512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050493696": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050493696", "variance": "INVARIANT"}, "140413991880512": {"type": "Union", "items": [{"nodeId": ".1.140414092555792"}, {"nodeId": ".-1.140414050493696"}]}, "140414050494144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050494592": {"type": "Function", "typeVars": [".-1.140414050494592"], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414050494592"}]}], "returnType": {"nodeId": "140414092555792", "args": [{"nodeId": "140413991880736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050494592": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050494592", "variance": "INVARIANT"}, "140413991880736": {"type": "Union", "items": [{"nodeId": ".1.140414092555792"}, {"nodeId": ".-1.140414050494592"}]}, "140414050495040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092555792"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140414092554784": {"type": "Protocol", "module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975359808"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092554784"}], "bases": [{"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092554784"}]}, {"nodeId": "140414092554448", "args": [{"nodeId": ".1.140414092554784"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}, "140413975359808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554784", "args": [{"nodeId": ".1.140414092554784"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414092554784": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092554784", "variance": "COVARIANT"}, "140414092554448": {"type": "Protocol", "module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975357120"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092554448"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__contains__"]}, "140413975357120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554448", "args": [{"nodeId": ".1.140414092554448"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414092554448": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092554448", "variance": "COVARIANT"}, "140414058792320": {"type": "Function", "typeVars": [".-1.140414058792320"], "argTypes": [{"nodeId": ".-1.140414058792320"}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": ".-1.140414058792320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058792320": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058792320", "variance": "INVARIANT"}, "140414058792768": {"type": "Function", "typeVars": [".-1.140414058792768"], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414058792768"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413979546160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058792768": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058792768", "variance": "INVARIANT"}, "140413979546160": {"type": "Union", "items": [{"nodeId": ".1.140414017150912"}, {"nodeId": ".-1.140414058792768"}]}, "140414058793216": {"type": "Function", "typeVars": [".-1.140414058793216"], "argTypes": [{"nodeId": ".-1.140414058793216"}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": ".-1.140414058793216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058793216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058793216", "variance": "INVARIANT"}, "140414058793664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140413979546272"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979546272": {"type": "Union", "items": [{"nodeId": ".1.140414017150912"}, {"nodeId": "N"}]}, "140414058794112": {"type": "Function", "typeVars": [".-1.140414058794112"], "argTypes": [{"nodeId": ".-1.140414058794112"}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": ".-1.140414058794112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058794112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058794112", "variance": "INVARIANT"}, "140414058794560": {"type": "Function", "typeVars": [".-1.140414058794560"], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414058794560"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413979546384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058794560": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058794560", "variance": "INVARIANT"}, "140413979546384": {"type": "Union", "items": [{"nodeId": ".1.140414017150912"}, {"nodeId": ".-1.140414058794560"}]}, "140414058795008": {"type": "Function", "typeVars": [".-1.140414058795008"], "argTypes": [{"nodeId": ".-1.140414058795008"}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017150912"}]}], "returnType": {"nodeId": ".-1.140414058795008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058795008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058795008", "variance": "INVARIANT"}, "140414058795456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058795904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058796352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058796800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017150912"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058797248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414092556128": {"type": "Concrete", "module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970206496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970214112"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050496384"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050496832"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050497280"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050497728"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050498176"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050498624"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050499072"}, "name": "__isub__"}], "typeVars": [{"nodeId": ".1.140414092556128"}], "bases": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092556128"}]}], "isAbstract": true}, "140413970206496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414092556128"}]}, {"nodeId": ".1.140414092556128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, ".1.140414092556128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092556128", "variance": "INVARIANT"}, "140413970214112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414092556128"}]}, {"nodeId": ".1.140414092556128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140414050496384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414092556128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050496832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414092556128"}]}], "returnType": {"nodeId": ".1.140414092556128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050497280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556128", "args": [{"nodeId": ".1.140414092556128"}]}, {"nodeId": ".1.140414092556128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140414050497728": {"type": "Function", "typeVars": [".-1.140414050497728"], "argTypes": [{"nodeId": ".-1.140414050497728"}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092556128"}]}], "returnType": {"nodeId": ".-1.140414050497728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050497728": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050497728", "variance": "INVARIANT"}, "140414050498176": {"type": "Function", "typeVars": [".-1.140414050498176"], "argTypes": [{"nodeId": ".-1.140414050498176"}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140414050498176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050498176": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050498176", "variance": "INVARIANT"}, "140414050498624": {"type": "Function", "typeVars": [".-1.140414050498624"], "argTypes": [{"nodeId": ".-1.140414050498624"}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414092556128"}]}], "returnType": {"nodeId": ".-1.140414050498624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050498624": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050498624", "variance": "INVARIANT"}, "140414050499072": {"type": "Function", "typeVars": [".-1.140414050499072"], "argTypes": [{"nodeId": ".-1.140414050499072"}, {"nodeId": "140414092555792", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140414050499072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050499072": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050499072", "variance": "INVARIANT"}, "140413991881632": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050599872": {"type": "Function", "typeVars": [".-1.140414050599872"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050599872"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".-1.140414050599872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050599872": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050599872", "variance": "INVARIANT"}, "140414050600320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050600768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413991881856"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413991881856": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050601216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413991882080"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413991882080": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050601664": {"type": "Function", "typeVars": [".-1.140414050601664"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050601664"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991882416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050601664": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050601664", "variance": "INVARIANT"}, "140413991882416": {"type": "Union", "items": [{"nodeId": "140413991882304"}, {"nodeId": ".-1.140414050601664"}]}, "140413991882304": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050602112": {"type": "Function", "typeVars": [".-1.140414050602112"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050602112"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991882752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050602112": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050602112", "variance": "INVARIANT"}, "140413991882752": {"type": "Union", "items": [{"nodeId": "140413991882640"}, {"nodeId": ".-1.140414050602112"}]}, "140413991882640": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050602560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991883088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413991883088": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050603008": {"type": "Function", "typeVars": [".-1.140414050603008"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050603008"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".-1.140414050603008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050603008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050603008", "variance": "INVARIANT"}, "140414050603456": {"type": "Function", "typeVars": [".-1.140414050603456"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050603456"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991883424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050603456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050603456", "variance": "INVARIANT"}, "140413991883424": {"type": "Union", "items": [{"nodeId": "140413991883312"}, {"nodeId": ".-1.140414050603456"}]}, "140413991883312": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050603904": {"type": "Function", "typeVars": [".-1.140414050603904"], "argTypes": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050603904"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991883760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050603904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050603904", "variance": "INVARIANT"}, "140413991883760": {"type": "Union", "items": [{"nodeId": "140413991883648"}, {"nodeId": ".-1.140414050603904"}]}, "140413991883648": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414017145872": {"type": "Concrete", "module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050499520"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050499968"}, "name": "__len__"}], "typeVars": [], "bases": [{"nodeId": "140414017144864"}], "isAbstract": false}, "140414050499520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017145872"}, {"nodeId": "140414092556464", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140414050499968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017145872"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414017144864": {"type": "Protocol", "module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975250752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__len__"]}, "140413975250752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017144864"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413999564160": {"type": "Tuple", "items": [{"nodeId": ".1.140414017146208"}, {"nodeId": ".2.140414017146208"}]}, "140414050613312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}], "returnType": {"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414092556464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050613760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}], "returnType": {"nodeId": "140414017146880", "args": [{"nodeId": ".2.140414092556464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017146880": {"type": "Concrete", "module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050609728"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050610176"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050610624"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050611072"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414017146880"}], "bases": [{"nodeId": "140414017145872"}, {"nodeId": "140414092554784", "args": [{"nodeId": ".1.140414017146880"}]}], "isAbstract": false}, "140414050609728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146880", "args": [{"nodeId": ".1.140414017146880"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": "A"}, {"nodeId": ".1.140414017146880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140414017146880": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017146880", "variance": "COVARIANT"}, "140414050610176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146880", "args": [{"nodeId": ".1.140414017146880"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050610624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146880", "args": [{"nodeId": ".1.140414017146880"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017146880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414050611072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146880", "args": [{"nodeId": ".1.140414017146880"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017146880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414050614208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556464"}, {"nodeId": ".2.140414092556464"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050604800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017146544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050605248": {"type": "Function", "typeVars": [".-1.140414050605248"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050605248"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".-1.140414050605248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050605248": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050605248", "variance": "INVARIANT"}, "140414050605696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050606144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017146544"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414050606592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017146544"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414050607040": {"type": "Function", "typeVars": [".-1.140414050607040"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050607040"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991884096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050607040": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050607040", "variance": "INVARIANT"}, "140413991884096": {"type": "Union", "items": [{"nodeId": ".1.140414017146544"}, {"nodeId": ".-1.140414050607040"}]}, "140414050607488": {"type": "Function", "typeVars": [".-1.140414050607488"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050607488"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991884208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050607488": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050607488", "variance": "INVARIANT"}, "140413991884208": {"type": "Union", "items": [{"nodeId": ".1.140414017146544"}, {"nodeId": ".-1.140414050607488"}]}, "140414050607936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".1.140414017146544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050608384": {"type": "Function", "typeVars": [".-1.140414050608384"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050608384"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": ".-1.140414050608384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050608384": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050608384", "variance": "INVARIANT"}, "140414050608832": {"type": "Function", "typeVars": [".-1.140414050608832"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050608832"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991884432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050608832": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050608832", "variance": "INVARIANT"}, "140413991884432": {"type": "Union", "items": [{"nodeId": ".1.140414017146544"}, {"nodeId": ".-1.140414050608832"}]}, "140414050609280": {"type": "Function", "typeVars": [".-1.140414050609280"], "argTypes": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017146544"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414050609280"}]}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140413991884544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050609280": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050609280", "variance": "INVARIANT"}, "140413991884544": {"type": "Union", "items": [{"nodeId": ".1.140414017146544"}, {"nodeId": ".-1.140414050609280"}]}, "140414075521952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414017146880", "args": [{"nodeId": ".2.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075522400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414017146208", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075522848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140414075523296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140413999694560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414075523744": {"type": "Function", "typeVars": [".-1.140414075523744", ".-2.140414075523744"], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414075523744"}, {"nodeId": ".-2.140414075523744"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413991892720"}, {"nodeId": "140413991892832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414075523744": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075523744", "variance": "INVARIANT"}, ".-2.140414075523744": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075523744", "variance": "INVARIANT"}, "140413991892720": {"type": "Union", "items": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".-1.140414075523744"}]}, "140413991892832": {"type": "Union", "items": [{"nodeId": ".2.140413999694560"}, {"nodeId": ".-2.140414075523744"}]}, "140414075524192": {"type": "Function", "typeVars": [".-1.140414075524192", ".-2.140414075524192"], "argTypes": [{"nodeId": "140413999694560", "args": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".2.140413999694560"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414075524192"}, {"nodeId": ".-2.140414075524192"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413991892944"}, {"nodeId": "140413991893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414075524192": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075524192", "variance": "INVARIANT"}, ".-2.140414075524192": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075524192", "variance": "INVARIANT"}, "140413991892944": {"type": "Union", "items": [{"nodeId": ".1.140413999694560"}, {"nodeId": ".-1.140414075524192"}]}, "140413991893056": {"type": "Union", "items": [{"nodeId": ".2.140413999694560"}, {"nodeId": ".-2.140414075524192"}]}, "140413924019552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924019328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924019104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924018880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924018656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140413978917488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978917488": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413924018432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978607200": {"type": "Overloaded", "items": [{"nodeId": "140414075355200"}, {"nodeId": "140414075355648"}]}, "140414075355200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414075355648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"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"]}, "140413978915248": {"type": "Overloaded", "items": [{"nodeId": "140414075356096"}, {"nodeId": "140413983341280"}]}, "140414075356096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140413983341280": {"type": "Function", "typeVars": [".-1.140413983341280"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140413983341280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}, ".-1.140413983341280": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983341280", "variance": "INVARIANT"}, "140414075356992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140413983340608": {"type": "Function", "typeVars": [".-1.140413983340608"], "argTypes": [{"nodeId": ".-1.140413983340608"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".-1.140413983340608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413983340608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983340608", "variance": "INVARIANT"}, "140414075357888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016323648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075358336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414075358784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413924018208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}, "140414075359680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999701280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413999701280": {"type": "Concrete", "module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971161024"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071082784"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071083232"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971161024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999701280"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071082784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999701280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999701280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071083232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999701280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999701280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075360128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323648"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999701280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413971158336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971158560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071079648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}, {"nodeId": "140414016323648"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}, "140414071080096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071081440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700608"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092555120": {"type": "Concrete", "module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991730672"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050350720"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050351168"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050351616"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050352064"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050352512"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414092555120"}], "bases": [{"nodeId": "140414092554784", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414092555120"}]}], "isAbstract": true}, "140413991730672": {"type": "Overloaded", "items": [{"nodeId": "140414050349824"}, {"nodeId": "140414050350272"}]}, "140414050349824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414092555120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414092555120": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092555120", "variance": "COVARIANT"}, "140414050350272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050350720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "A"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}, "140414050351168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140414050351616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050352064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092555120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414050352512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555120"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092555120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414092552096": {"type": "Protocol", "module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975257920"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092552096"}], "bases": [{"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092552096"}]}], "protocolMembers": ["__iter__", "__reversed__"]}, "140413975257920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414092552096"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092552096"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414092552096": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092552096", "variance": "COVARIANT"}, "140413979127456": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979127680": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979127792": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062939712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140414062940608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979128016"}, {"nodeId": "140413979128128"}, {"nodeId": "140413979128240"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979128016": {"type": "Union", "items": [{"nodeId": "140413979127904"}, {"nodeId": "140414017156960"}]}, "140413979127904": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979128128": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979128240": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062941056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979128352"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140413979128352": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}]}, "140414062941952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979128576"}, {"nodeId": "140413979128688"}, {"nodeId": "140413979128800"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979128576": {"type": "Union", "items": [{"nodeId": "140413979128464"}, {"nodeId": "140414017156960"}]}, "140413979128464": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979128688": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979128800": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062942400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062942848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062943296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062943744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062944192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062944640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062945088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062945536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062945984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979128912"}]}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979128912": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062946432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}, {"nodeId": "140413979129024"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413979129024": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414017150576": {"type": "Concrete", "module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979126560"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063048320"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063048768"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063049216"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063049664"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063050112"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063165504"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063165952"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063166400"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063167296"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063167744"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063168192"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063169088"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063169536"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063169984"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063170432"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063170880"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063171328"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063171776"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063172224"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063172672"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063173120"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063173568"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063174016"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063174464"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063174912"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063175360"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063175808"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063176256"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063176704"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063177152"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063177600"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063178048"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063178496"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063178944"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063179392"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063179840"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063180288"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063180736"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063181184"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063312960"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063313408"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063313856"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063314304"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063314752"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063315200"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063315648"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924463712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924462592"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063316992"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063317440"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979379296"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979380080"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063319680"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063320128"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413979078752"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063321024"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063321472"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063321920"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063322368"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063322816"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063323264"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063323712"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063324160"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063324608"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063325056"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063325504"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414063325952"}, "name": "__alloc__"}], "typeVars": [], "bases": [{"nodeId": "140414092555456", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414017148224"}], "isAbstract": false}, "140413979126560": {"type": "Overloaded", "items": [{"nodeId": "140414063046976"}, {"nodeId": "140414063047424"}, {"nodeId": "140414063047872"}]}, "140414063046976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063047424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979380304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979380304": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414017156960"}]}, {"nodeId": "140414017156960"}, {"nodeId": "140413979380192"}]}, "140413979380192": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063047872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}, "140414063048320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414063048768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063049216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414063049664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979380528"}, {"nodeId": "140413979380640"}, {"nodeId": "140413979380752"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979380528": {"type": "Union", "items": [{"nodeId": "140413979380416"}, {"nodeId": "140414017156960"}]}, "140413979380416": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979380640": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979380752": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063050112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063165504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140414063165952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979381088"}, {"nodeId": "140413979381200"}, {"nodeId": "140413979381312"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979381088": {"type": "Union", "items": [{"nodeId": "140413979380864"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413979380976"}]}]}, "140413979380864": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979380976": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979381200": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979381312": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063166400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140414063167296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414017156960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414063167744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979381536"}, {"nodeId": "140413979381648"}, {"nodeId": "140413979381760"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979381536": {"type": "Union", "items": [{"nodeId": "140413979381424"}, {"nodeId": "140414017156960"}]}, "140413979381424": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979381648": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979381760": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063168192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979381872"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140413979381872": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}]}, "140414063169088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979382096"}, {"nodeId": "140413979382208"}, {"nodeId": "140413979382320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979382096": {"type": "Union", "items": [{"nodeId": "140413979381984"}, {"nodeId": "140414017156960"}]}, "140413979381984": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979382208": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979382320": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063169536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414063169984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063170432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063170880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063171328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063171776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063172224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063172672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063173120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063173568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979382432"}]}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979382432": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063174016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}, {"nodeId": "140413979382544"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413979382544": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414063174464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063174912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979382768"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979382768": {"type": "Union", "items": [{"nodeId": "140413979382656"}, {"nodeId": "N"}]}, "140413979382656": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063175360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979382880"}], "returnType": {"nodeId": "140413979383104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979382880": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979383104": {"type": "Tuple", "items": [{"nodeId": "140414017150576"}, {"nodeId": "140414017150576"}, {"nodeId": "140414017150576"}]}, "140414063175808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414063176256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414063176704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979383216"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979383216": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063177152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979383328"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979383328": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063177600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979383440"}, {"nodeId": "140413979383552"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979383440": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979383552": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063178048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979383776"}, {"nodeId": "140413979383888"}, {"nodeId": "140413979384000"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979383776": {"type": "Union", "items": [{"nodeId": "140413979383664"}, {"nodeId": "140414017156960"}]}, "140413979383664": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979383888": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979384000": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063178496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979384224"}, {"nodeId": "140413979384336"}, {"nodeId": "140413979384448"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979384224": {"type": "Union", "items": [{"nodeId": "140413979384112"}, {"nodeId": "140414017156960"}]}, "140413979384112": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979384336": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979384448": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063178944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}, {"nodeId": "140413979384560"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413979384560": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414063179392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979384672"}], "returnType": {"nodeId": "140413979384896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979384672": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979384896": {"type": "Tuple", "items": [{"nodeId": "140414017150576"}, {"nodeId": "140414017150576"}, {"nodeId": "140414017150576"}]}, "140414063179840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979385120"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150576"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979385120": {"type": "Union", "items": [{"nodeId": "140413979385008"}, {"nodeId": "N"}]}, "140413979385008": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063180288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979385344"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979385344": {"type": "Union", "items": [{"nodeId": "140413979385232"}, {"nodeId": "N"}]}, "140413979385232": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063180736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979385568"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150576"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979385568": {"type": "Union", "items": [{"nodeId": "140413979385456"}, {"nodeId": "N"}]}, "140413979385456": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063181184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150576"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140414063312960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979385904"}, {"nodeId": "140413979386016"}, {"nodeId": "140413979386128"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979385904": {"type": "Union", "items": [{"nodeId": "140413979385680"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413979385792"}]}]}, "140413979385680": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979385792": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979386016": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979386128": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063313408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979386352"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979386352": {"type": "Union", "items": [{"nodeId": "140413979386240"}, {"nodeId": "N"}]}, "140413979386240": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063313856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063314304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063314752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979386576"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140413979386576": {"type": "Union", "items": [{"nodeId": "140413979386464"}, {"nodeId": "N"}]}, "140413979386464": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063315200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063315648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413924463712": {"type": "Function", "typeVars": [".-1.140413924463712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140413924463712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140413924463712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413924463712", "variance": "INVARIANT"}, "140413924462592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413979386688"}, {"nodeId": "140413979386800"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979386688": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979386800": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063316992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414063317440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979379296": {"type": "Overloaded", "items": [{"nodeId": "140414063317888"}, {"nodeId": "140414063318336"}]}, "140414063317888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063318336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979380080": {"type": "Overloaded", "items": [{"nodeId": "140414063318784"}, {"nodeId": "140414063319232"}]}, "140414063318784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414063319232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414016326672"}, {"nodeId": "140413979387136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413979387136": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414017156960"}]}, {"nodeId": "140414017150240"}]}, "140414063319680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979387248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979387248": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140414063320128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979387360"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979387360": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979078752": {"type": "Function", "typeVars": [".-1.140413979078752"], "argTypes": [{"nodeId": ".-1.140413979078752"}, {"nodeId": "140413979387472"}], "returnType": {"nodeId": ".-1.140413979078752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413979078752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413979078752", "variance": "INVARIANT"}, "140413979387472": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063321024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063321472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063321920": {"type": "Function", "typeVars": [".-1.140414063321920"], "argTypes": [{"nodeId": ".-1.140414063321920"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".-1.140414063321920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414063321920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414063321920", "variance": "INVARIANT"}, "140414063322368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063322816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979387808"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979387808": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140413979387696"}]}, "140413979387696": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063323264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063323712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063324160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979387920"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979387920": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063324608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979388032"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979388032": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063325056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979388144"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979388144": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063325504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}, {"nodeId": "140413979388256"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979388256": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063325952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150576"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092555456": {"type": "Concrete", "module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970202912"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991878720"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991879280"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991879616"}, "items": [{"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050487424"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050487872"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050488320"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050488768"}, "name": "reverse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050489216"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050489664"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050490112"}, "name": "__iadd__"}], "typeVars": [{"nodeId": ".1.140414092555456"}], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": ".1.140414092555456"}]}], "isAbstract": true}, "140413970202912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016324320"}, {"nodeId": ".1.140414092555456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}, ".1.140414092555456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092555456", "variance": "INVARIANT"}, "140413991878720": {"type": "Overloaded", "items": [{"nodeId": "140414050484736"}, {"nodeId": "140414050485184"}]}, "140414050484736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414092555456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050485184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413991879280": {"type": "Overloaded", "items": [{"nodeId": "140414050485632"}, {"nodeId": "140414050486080"}]}, "140414050485632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016324320"}, {"nodeId": ".1.140414092555456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414050486080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016326672"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092555456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413991879616": {"type": "Overloaded", "items": [{"nodeId": "140414050486528"}, {"nodeId": "140414050486976"}]}, "140414050486528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050486976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050487424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": ".1.140414092555456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140414050487872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050488320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092555456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}, "140414050488768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050489216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414092555456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}, "140414050489664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414092555456"}]}, {"nodeId": ".1.140414092555456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140414050490112": {"type": "Function", "typeVars": [".-1.140414050490112"], "argTypes": [{"nodeId": ".-1.140414050490112"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414092555456"}]}], "returnType": {"nodeId": ".-1.140414050490112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050490112": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050490112", "variance": "INVARIANT"}, "140414017148224": {"type": "Concrete", "module": "typing", "simpleName": "ByteString", "members": [], "typeVars": [], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": true}, "140414062946880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062947328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979129248"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979129248": {"type": "Union", "items": [{"nodeId": "140413979129136"}, {"nodeId": "N"}]}, "140413979129136": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062947776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979129360"}], "returnType": {"nodeId": "140413979129584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979129360": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979129584": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}]}, "140414062948224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979129696"}, {"nodeId": "140413979129808"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979129696": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979129808": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062948672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979129920"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979129920": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062949120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979130032"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979130032": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062949568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979130256"}, {"nodeId": "140413979130368"}, {"nodeId": "140413979130480"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979130256": {"type": "Union", "items": [{"nodeId": "140413979130144"}, {"nodeId": "140414017156960"}]}, "140413979130144": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979130368": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979130480": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062950016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979130704"}, {"nodeId": "140413979130816"}, {"nodeId": "140413979130928"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979130704": {"type": "Union", "items": [{"nodeId": "140413979130592"}, {"nodeId": "140414017156960"}]}, "140413979130592": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979130816": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979130928": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062950464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}, {"nodeId": "140413979131040"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413979131040": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414062950912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979131152"}], "returnType": {"nodeId": "140413979131376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979131152": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979131376": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}]}, "140414062951360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979131600"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979131600": {"type": "Union", "items": [{"nodeId": "140413979131488"}, {"nodeId": "N"}]}, "140413979131488": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414062951808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979377728"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979377728": {"type": "Union", "items": [{"nodeId": "140413979131712"}, {"nodeId": "N"}]}, "140413979131712": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063034432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979377952"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979377952": {"type": "Union", "items": [{"nodeId": "140413979377840"}, {"nodeId": "N"}]}, "140413979377840": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063034880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140414063035328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979378288"}, {"nodeId": "140413979378400"}, {"nodeId": "140413979378512"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979378288": {"type": "Union", "items": [{"nodeId": "140413979378064"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413979378176"}]}]}, "140413979378064": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979378176": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979378400": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979378512": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414063035776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979378736"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979378736": {"type": "Union", "items": [{"nodeId": "140413979378624"}, {"nodeId": "N"}]}, "140413979378624": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063036224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063036672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063037120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979378960"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140413979378960": {"type": "Union", "items": [{"nodeId": "140413979378848"}, {"nodeId": "N"}]}, "140413979378848": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063037568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414063038016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413924307936": {"type": "Function", "typeVars": [".-1.140413924307936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140413924307936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140413924307936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413924307936", "variance": "INVARIANT"}, "140413924307488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413979379072"}, {"nodeId": "140413979379184"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979379072": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979379184": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063039360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414063039808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979125552": {"type": "Overloaded", "items": [{"nodeId": "140414063040256"}, {"nodeId": "140414063040704"}]}, "140414063040256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063040704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063041152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979379408"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979379408": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063041600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063042048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063042496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063042944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140413979379744"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979379744": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140413979379632"}]}, "140413979379632": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414063043392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063043840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063044288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063044736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063045184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063045632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414063046080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017150240"}], "returnType": {"nodeId": "140413979379968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979379968": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}]}, "140414021318832": {"type": "TypeAlias", "target": {"nodeId": "140414021318160"}}, "140414021318160": {"type": "Union", "items": [{"nodeId": "140414017150576"}, {"nodeId": "140414016326336"}, {"nodeId": "140414000223216", "args": [{"nodeId": "A"}]}, {"nodeId": "140414016438336"}, {"nodeId": "140414008306912"}, {"nodeId": "140413999707328"}]}, "140414016326336": {"type": "Concrete", "module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924472000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924472448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924472672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924472896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924473120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924473344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924473568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924473792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924474016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924474240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924474464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924606016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058236608"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058237056"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058237504"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058237952"}, "name": "cast"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979386912"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058239296"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058239744"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058240192"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979387024"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058241536"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058242432"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058242880"}, "name": "toreadonly"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058243328"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058243776"}, "name": "hex"}], "typeVars": [], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413924472000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924472448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924472672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140413979388368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979388368": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "N"}]}, "140413924472896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140413979388480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979388480": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "N"}]}, "140413924473120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140413979388592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979388592": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "N"}]}, "140413924473344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924473568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924473792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140413979388704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979388704": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413924474016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924474240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924474464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924606016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058236608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140413979388816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140413979388816": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414058237056": {"type": "Function", "typeVars": [".-1.140414058237056"], "argTypes": [{"nodeId": ".-1.140414058237056"}], "returnType": {"nodeId": ".-1.140414058237056"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414058237056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058237056", "variance": "INVARIANT"}, "140414058237504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140413979388928"}, {"nodeId": "140413979389040"}, {"nodeId": "140413979389152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413979388928": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413979389040": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140414016331712": {"type": "Concrete", "module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016342272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016354368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016353696"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054565248"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054565696"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054566144"}, "name": "with_traceback"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016342272": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140414016354368": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140414016353696": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413999699264": {"type": "Concrete", "module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070983136"}, "name": "__init__"}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999566848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971083136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971083584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971083808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414070983136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699264"}, {"nodeId": "140413986936464"}, {"nodeId": "140413999699600"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}, "140413986936464": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413999699600": {"type": "Concrete", "module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971084928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971085600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971085824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971086048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971086272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971086496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971086720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999567296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070988064"}, "name": "clear"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971084928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140413986936576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986936576": {"type": "Union", "items": [{"nodeId": "140413999699600"}, {"nodeId": "N"}]}, "140413971085600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971085824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140413999694224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999694224": {"type": "Concrete", "module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970782400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970783744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970783296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970783968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970784192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970784416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970784640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970784864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970785088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970785312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970785536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970785760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970785984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970786208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970786432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970786656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970787328"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075857696"}, "name": "co_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075859936"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075861728"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413970782400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970783744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970783296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970783968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970784192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970784416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970784640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970784864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970785088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970785312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970785536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970785760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970785984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970786208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970786432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970786656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970787328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075857696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413991892496"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991892496": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140413991892272"}]}, "140413991892272": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414075859936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414017150240"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414017150240"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}], "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]}, "140414075861728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694224"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414017150240"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140413999694224"}, "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"]}, "140413971086048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971086272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971086496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140413986937024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986937024": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "A"}]}, "140413971086720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999567296": {"type": "Union", "items": [{"nodeId": "140414008121760"}, {"nodeId": "N"}]}, "140414008121760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414070988064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999566848": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413971083136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699264"}], "returnType": {"nodeId": "140413999699600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971083584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699264"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971083808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699264"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054565248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140414054565696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016331712"}, {"nodeId": "140413974673360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413974673360": {"type": "Union", "items": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414054566144": {"type": "Function", "typeVars": [".-1.140414054566144"], "argTypes": [{"nodeId": ".-1.140414054566144"}, {"nodeId": "140413974673472"}], "returnType": {"nodeId": ".-1.140414054566144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414054566144": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054566144", "variance": "INVARIANT"}, "140413974673472": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413979389152": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414058237952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979389264"}], "returnType": {"nodeId": "140414016326336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}, "140413979389264": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}]}, "140413979386912": {"type": "Overloaded", "items": [{"nodeId": "140414058238400"}, {"nodeId": "140414058238848"}]}, "140414058238400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058238848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016326336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058239296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058239744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058240192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979387024": {"type": "Overloaded", "items": [{"nodeId": "140414058240640"}, {"nodeId": "140414058241088"}]}, "140414058240640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414016326672"}, {"nodeId": "140413979389600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413979389600": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414058241088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414058241536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140413979390160"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140413979390160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140414058242432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058242880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "140414016326336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058243328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058243776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326336"}, {"nodeId": "140413979390048"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140413979390048": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}]}, "140414000223216": {"type": "Concrete", "module": "array", "simpleName": "array", "members": [{"kind": "Variable", "name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413937221696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413937222368"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978592416"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071652640"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071653088"}, "name": "buffer_info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071653536"}, "name": "byteswap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071653984"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071654432"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071654880"}, "name": "frombytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071655328"}, "name": "fromfile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071655776"}, "name": "fromlist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071656224"}, "name": "fromunicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071656672"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071657568"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071658016"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071658464"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071658912"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071659360"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071659808"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071660256"}, "name": "tounicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071661600"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978592528"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978602832"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071663840"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071664288"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071664736"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071665184"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071665632"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071666080"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071666528"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071666976"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071667424"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071667872"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071668320"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041702688"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.140414000223216"}], "bases": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414000223216"}]}], "isAbstract": false}, "140413937221696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140413978601264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000223216": {"type": "TypeVar", "varName": "_T", "values": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016326000"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000223216", "variance": "INVARIANT"}, "140414016324656": {"type": "Concrete", "module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413979068000"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067625536"}, "name": "as_integer_ratio"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067625984"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067626432"}, "name": "is_integer"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413924189888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924190112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924190336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067628224"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067628672"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067629120"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067629568"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067630016"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067630464"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067630912"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067631360"}, "name": "__divmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979116256"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067632704"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067633152"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067633600"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067634048"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067634496"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067634944"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067635392"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979121184"}, "items": [{"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067637184"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067637632"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062510144"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062510592"}, "name": "__floor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979120176"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062511936"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062512384"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062512832"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062513280"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062513728"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062514176"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062514624"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062515072"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062515520"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062515968"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062516416"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062516864"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413979068000": {"type": "Function", "typeVars": [".-1.140413979068000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979119616"}], "returnType": {"nodeId": ".-1.140413979068000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140413979119616": {"type": "Union", "items": [{"nodeId": "140414017143520"}, {"nodeId": "140414017156960"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979119504"}]}, "140414017143520": {"type": "Protocol", "module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975157824"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__float__"]}, "140413975157824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017143520"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979119504": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, ".-1.140413979068000": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413979068000", "variance": "INVARIANT"}, "140414067625536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140413979119840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979119840": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414067625984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067626432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924189888": {"type": "Function", "typeVars": [".-1.140413924189888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140413924189888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140413924189888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413924189888", "variance": "INVARIANT"}, "140413924190112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924190336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067628224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067628672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067629120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067629568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067630016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067630464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067630912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067631360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140413979120064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979120064": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413979116256": {"type": "Overloaded", "items": [{"nodeId": "140414067631808"}, {"nodeId": "140414067632256"}]}, "140414067631808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414067632256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414067632704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067633152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067633600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067634048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067634496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067634944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067635392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140413979120512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979120512": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413979121184": {"type": "Overloaded", "items": [{"nodeId": "140414067635840"}, {"nodeId": "140414067636288"}, {"nodeId": "140414067636736"}]}, "140414067635840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140413979120736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979120736": {"type": "TypeAlias", "target": {"nodeId": "140414000050384"}}, "140414000050384": {"type": "Union", "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"}]}, "140414067636288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140413979123984"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979123984": {"type": "TypeAlias", "target": {"nodeId": "140414000052512"}}, "140414000052512": {"type": "Union", "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"}]}, "140414016324992": {"type": "Concrete", "module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979123200"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924195712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924295168"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062520000"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062520448"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062520896"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062521344"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062521792"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062522240"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062522688"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062523136"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062523584"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062524032"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062524480"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062524928"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062525376"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062525824"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062624832"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062625280"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062625728"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413979123200": {"type": "Overloaded", "items": [{"nodeId": "140414062517312"}, {"nodeId": "140414062517760"}]}, "140414062517312": {"type": "Function", "typeVars": [".-1.140414062517312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979121072"}, {"nodeId": "140413979121408"}], "returnType": {"nodeId": ".-1.140414062517312"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}, "140413979121072": {"type": "Union", "items": [{"nodeId": "140414016324992"}, {"nodeId": "140414017143856"}, {"nodeId": "140414017143520"}, {"nodeId": "140414017156960"}]}, "140414017143856": {"type": "Protocol", "module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975159168"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__complex__"]}, "140413975159168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017143856"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979121408": {"type": "Union", "items": [{"nodeId": "140414016324992"}, {"nodeId": "140414017143520"}, {"nodeId": "140414017156960"}]}, ".-1.140414062517312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062517312", "variance": "INVARIANT"}, "140414062517760": {"type": "Function", "typeVars": [".-1.140414062517760"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979121520"}], "returnType": {"nodeId": ".-1.140414062517760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}, "140413979121520": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017143856"}, {"nodeId": "140414017143520"}, {"nodeId": "140414017156960"}, {"nodeId": "140414016324992"}]}, ".-1.140414062517760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062517760", "variance": "INVARIANT"}, "140413924195712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924295168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062520000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062520448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062520896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062521344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062521792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414062522240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062522688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062523136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062523584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062524032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414062524480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062524928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062525376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062525824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062624832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062625280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062625728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324992"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067636736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414067637184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140413979120624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979120624": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}]}, "140414067637632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062510144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062510592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979120176": {"type": "Overloaded", "items": [{"nodeId": "140414062511040"}, {"nodeId": "140414062511488"}]}, "140414062511040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414062511488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414062511936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062512384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062512832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062513280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062513728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062514176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062514624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062515072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062515520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062515968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062516416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062516864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324656"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978601264": {"type": "TypeAlias", "target": {"nodeId": "140414008328928"}}, "140414008328928": {"type": "Union", "items": [{"nodeId": "140414016355824"}, {"nodeId": "140414008330944"}, {"nodeId": "140414008330720"}]}, "140414016355824": {"type": "TypeAlias", "target": {"nodeId": "140414008328816"}}, "140414008328816": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140414008330944": {"type": "TypeAlias", "target": {"nodeId": "140414008331952"}}, "140414008331952": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414008330720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140413937222368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978592416": {"type": "Overloaded", "items": [{"nodeId": "140413983334112"}, {"nodeId": "140414071814432"}, {"nodeId": "140414071814880"}, {"nodeId": "140414071815328"}, {"nodeId": "140414071815776"}]}, "140413983334112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413978601488"}, {"nodeId": "140413978601600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413978601488": {"type": "TypeAlias", "target": {"nodeId": "140414008328816"}}, "140413978601600": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016324320"}]}]}, "140414071814432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": "140414016324656"}]}, {"nodeId": "140413978602496"}, {"nodeId": "140413978601376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413978602496": {"type": "TypeAlias", "target": {"nodeId": "140414008331952"}}, "140413978601376": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016324656"}]}]}, "140414071814880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413978602720"}, {"nodeId": "140413978602384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413978602720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140413978602384": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}]}, "140414071815328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414071815776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140413978601824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413978601824": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414071652640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": ".1.140414000223216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071653088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140413978601936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978601936": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414071653536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071653984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": ".1.140414000223216"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071654432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071654880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140413978602048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413978602048": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414071655328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000231280", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414000231280": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054911104"}, "name": "read"}], "typeVars": [{"nodeId": ".1.140414000231280"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["read"]}, "140414054911104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000231280", "args": [{"nodeId": ".1.140414000231280"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414000231280"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140414000231280": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000231280", "variance": "COVARIANT"}, "140414071655776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071656224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071656672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": ".1.140414000223216"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414071657568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016324320"}, {"nodeId": ".1.140414000223216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414071658016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414000223216"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414071658464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": ".1.140414000223216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071658912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071659360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000232288", "args": [{"nodeId": "140414017150240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414000232288": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054912448"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140414000232288"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["write"]}, "140414054912448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000232288", "args": [{"nodeId": ".1.140414000232288"}]}, {"nodeId": ".1.140414000232288"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140414000232288": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000232288", "variance": "CONTRAVARIANT"}, "140414071659808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071660256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071661600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413978592528": {"type": "Overloaded", "items": [{"nodeId": "140414071662048"}, {"nodeId": "140414071662496"}]}, "140414071662048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414000223216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071662496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413978602832": {"type": "Overloaded", "items": [{"nodeId": "140414071662944"}, {"nodeId": "140414071663392"}]}, "140414071662944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414017156960"}, {"nodeId": ".1.140414000223216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414071663392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016326672"}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414071663840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140413978602608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413978602608": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140414071664288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071664736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071665184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071665632": {"type": "Function", "typeVars": [".-1.140414071665632"], "argTypes": [{"nodeId": ".-1.140414071665632"}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": ".-1.140414071665632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414071665632": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414071665632", "variance": "INVARIANT"}, "140414071666080": {"type": "Function", "typeVars": [".-1.140414071666080"], "argTypes": [{"nodeId": ".-1.140414071666080"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414071666080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414071666080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414071666080", "variance": "INVARIANT"}, "140414071666528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071666976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071667424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071667872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071668320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041702688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414000223216", "args": [{"nodeId": ".1.140414000223216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414016438336": {"type": "Concrete", "module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042295424"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042295872"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042296320"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042297216"}, "name": "move"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042297664"}, "name": "read_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042298112"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042298560"}, "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042299008"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042299456"}, "name": "size"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042299904"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042300352"}, "name": "write_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042300800"}, "name": "__len__"}, {"kind": "Variable", "name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042301248"}, "name": "madvise"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042301696"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042302144"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042302592"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042303040"}, "name": "write"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987764176"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042304384"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987911632"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042305728"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042306176"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042306624"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042307072"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414017144864"}], "isAbstract": false}, "140414042295424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140414042295872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042296320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}, "140414042297216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}, "140414042297664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042298112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042298560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}, "140414042299008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}, "140414042299456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042299904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042300352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}, "140414042300800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042301248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}, "140414042301696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140413987913536"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140413987913536": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414042302144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140413982785600"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140413982785600": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414042302592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140413982785712"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140413982785712": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414042303040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140413982785824"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}, "140413982785824": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987764176": {"type": "Overloaded", "items": [{"nodeId": "140414042303488"}, {"nodeId": "140414042303936"}]}, "140414042303488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042303936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042304384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140413982786048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413982786048": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326672"}]}, "140413987911632": {"type": "Overloaded", "items": [{"nodeId": "140414042304832"}, {"nodeId": "140414042305280"}]}, "140414042304832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414042305280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414016326672"}, {"nodeId": "140413982786272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413982786272": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414042305728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042306176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042306624": {"type": "Function", "typeVars": [".-1.140414042306624"], "argTypes": [{"nodeId": ".-1.140414042306624"}], "returnType": {"nodeId": ".-1.140414042306624"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414042306624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414042306624", "variance": "INVARIANT"}, "140414042307072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016438336"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140414008306912": {"type": "Concrete", "module": "ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "name": "_b_base", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999576592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945606464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945605792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945607360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945608480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945608928"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999576592": {"type": "Union", "items": [{"nodeId": "140414092556464", "args": [{"nodeId": "A"}, {"nodeId": "140414016324320"}]}, {"nodeId": "N"}]}, "140413945606464": {"type": "Function", "typeVars": [".-1.140413945606464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413983267344"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945606464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140413983267344": {"type": "TypeAlias", "target": {"nodeId": "140414021318160"}}, ".-1.140413945606464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945606464", "variance": "INVARIANT"}, "140413945605792": {"type": "Function", "typeVars": [".-1.140413945605792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413983267456"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945605792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140413983267456": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, ".-1.140413945605792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945605792", "variance": "INVARIANT"}, "140413945607360": {"type": "Function", "typeVars": [".-1.140413945607360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945607360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}, ".-1.140413945607360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945607360", "variance": "INVARIANT"}, "140413945608480": {"type": "Function", "typeVars": [".-1.140413945608480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413983267680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, "140413983267680": {"type": "Union", "items": [{"nodeId": ".-1.140413945608480"}, {"nodeId": "140414008308928"}]}, ".-1.140413945608480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945608480", "variance": "INVARIANT"}, "140414008308928": {"type": "Concrete", "module": "ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413945608928": {"type": "Function", "typeVars": [".-1.140413945608928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414008305904"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140413945608928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}, "140414008305904": {"type": "Concrete", "module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008306912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041703808"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041704704"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041705152"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414041703808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305904"}, {"nodeId": "140413983266896"}, {"nodeId": "140414016324320"}, {"nodeId": "140413983267008"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983267120"}], "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"]}, "140413983266896": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983267008": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983267120": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414041704704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305904"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414008308256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414008308256": {"type": "Concrete", "module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414008307920"}], "isAbstract": false}, "140414008307920": {"type": "Concrete", "module": "ctypes", "simpleName": "_FuncPointer", "members": [{"kind": "Variable", "name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008768912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092555120", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008765888"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983264880"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041712768"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414008307584"}, {"nodeId": "140414008306912"}], "isAbstract": false}, "140414008768912": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140414020828544"}, {"nodeId": "N"}]}, "140414020828544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414008765888": {"type": "TypeAlias", "target": {"nodeId": "140414008637056"}}, "140414008637056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008769360"}, {"nodeId": "140414008307920"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414008306912"}]}], "returnType": {"nodeId": "140414008306912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414008769360": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983264880": {"type": "Overloaded", "items": [{"nodeId": "140414041710976"}, {"nodeId": "140414041711424"}, {"nodeId": "140414041711872"}, {"nodeId": "140414041712320"}]}, "140414041710976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008307920"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "address"]}, "140414041711424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008307920"}, {"nodeId": "140413983326496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, "140413983326496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414041711872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008307920"}, {"nodeId": "140413983268352"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413983268464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "func_spec", "paramflags"]}, "140413983268352": {"type": "Tuple", "items": [{"nodeId": "140413983268016"}, {"nodeId": "140414008305904"}]}, "140413983268016": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413983268464": {"type": "TypeAlias", "target": {"nodeId": "140414008763312"}}, "140414008763312": {"type": "Union", "items": [{"nodeId": "140414008764768"}, {"nodeId": "140414008762976"}, {"nodeId": "140414008763200"}]}, "140414008764768": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}]}, "140414008762976": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414008763200": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "140414041712320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008307920"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413983268800"}]}, {"nodeId": "140413991486512", "args": [{"nodeId": "140414012735552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "vtlb_index", "name", "paramflags", "iid"]}, "140413983268800": {"type": "TypeAlias", "target": {"nodeId": "140414008763312"}}, "140413991486512": {"type": "Concrete", "module": "ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140413991486512"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983264992"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983268576"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042100160"}, "name": "__setitem__"}], "typeVars": [{"nodeId": ".1.140413991486512"}], "bases": [{"nodeId": "140414008307584"}, {"nodeId": "140414008306912"}], "isAbstract": false}, ".1.140413991486512": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140414008306912"}, "def": "140413991486512", "variance": "INVARIANT"}, "140413983264992": {"type": "Overloaded", "items": [{"nodeId": "140414042098368"}, {"nodeId": "140414042098816"}]}, "140414042098368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486512", "args": [{"nodeId": ".1.140413991486512"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042098816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486512", "args": [{"nodeId": ".1.140413991486512"}]}, {"nodeId": ".1.140413991486512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}, "140413983268576": {"type": "Overloaded", "items": [{"nodeId": "140414042099264"}, {"nodeId": "140414042099712"}]}, "140414042099264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486512", "args": [{"nodeId": ".1.140413991486512"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042099712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486512", "args": [{"nodeId": ".1.140413991486512"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042100160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486512", "args": [{"nodeId": ".1.140413991486512"}]}, {"nodeId": "140414016324320"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414008307584": {"type": "Concrete", "module": "ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008307248"}], "isAbstract": false}, "140414008307248": {"type": "Concrete", "module": "ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008306912"}], "isAbstract": false}, "140414012735552": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414008309264": {"type": "Concrete", "module": "ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140414008309264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042104192"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140414008309264"}], "bases": [{"nodeId": "140414008306912"}], "isAbstract": false}, ".1.140414008309264": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414008309264", "variance": "INVARIANT"}, "140414042104192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008309264", "args": [{"nodeId": ".1.140414008309264"}]}, {"nodeId": ".1.140414008309264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140414041712768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008307920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414041705152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305904"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414008308256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413945608928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945608928", "variance": "INVARIANT"}, "140413999707328": {"type": "Concrete", "module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042341888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042342336"}, "name": "raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042342784"}, "name": "release"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414042341888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999707328"}, {"nodeId": "140413987522592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}, "140413987522592": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414042342336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999707328"}], "returnType": {"nodeId": "140414016326336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042342784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999707328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017143184": {"type": "Protocol", "module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975156480"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__int__"]}, "140413975156480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017143184"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414000229264": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071094208"}, "name": "__trunc__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__trunc__"]}, "140414071094208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000229264"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413983340384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983340384", "variance": "INVARIANT"}, "140413983341952": {"type": "Function", "typeVars": [".-1.140413983341952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979116592"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".-1.140413983341952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}, "140413979116592": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, ".-1.140413983341952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983341952", "variance": "INVARIANT"}, "140414075362816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413979116928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979116928": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "0"}]}, "140413924016192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413928913856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413928913184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413928913408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075365056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075365504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075365952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075367296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414017156960"}, {"nodeId": "140413979117488"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}, "140413979117488": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140413928912512": {"type": "Function", "typeVars": [".-1.140413928912512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979117712"}, {"nodeId": "140413979118048"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": ".-1.140413928912512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}, "140413979117712": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414017156960"}]}, {"nodeId": "140414017144192"}, {"nodeId": "140413979117600"}]}, "140413979117600": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413979118048": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, ".-1.140413928912512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413928912512", "variance": "INVARIANT"}, "140414075368192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075368640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075369088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075369536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075369984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075370432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075370880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413979118272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979118272": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414067523648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067524096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067524544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067524992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067525440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067525888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067526336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413979118496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979118496": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413979115808": {"type": "Overloaded", "items": [{"nodeId": "140414067526784"}, {"nodeId": "140414067527232"}, {"nodeId": "140414067527680"}, {"nodeId": "140414067528128"}, {"nodeId": "140414067528576"}, {"nodeId": "140414067529024"}]}, "140414067526784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067527232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414067527680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140413979119168"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979119168": {"type": "TypeAlias", "target": {"nodeId": "140414000050384"}}, "140414067528128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140413979121968"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979121968": {"type": "TypeAlias", "target": {"nodeId": "140414000052512"}}, "140414067528576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140414067529024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414067529472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140413979121856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979121856": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414067529920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067530368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067530816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067531264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067531712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067532160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067532608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067533056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067533504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067533952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067534400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067534848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067535296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067535744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067536192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067536640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067537088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414067537536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413979119392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979119392": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}]}, "140414067537984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067538432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067538880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067539328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067621952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067622400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414067622848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067623296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067623744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414067624192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414067624640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058364288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": ".1.140414016327344"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414058496064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058496512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}, {"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414058496960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979392400": {"type": "Overloaded", "items": [{"nodeId": "140414058497408"}, {"nodeId": "140414058497856"}]}, "140414058497408": {"type": "Function", "typeVars": [".-1.140414058497408"], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".-1.140414058497408"}]}, {"nodeId": "N"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140414058497408": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140413991615536"}, "def": "140414058497408", "variance": "INVARIANT"}, "140413991615536": {"type": "Union", "items": [{"nodeId": "140414000224560", "args": [{"nodeId": "A"}]}, {"nodeId": "140414000224896", "args": [{"nodeId": "A"}]}]}, "140414000224560": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071087936"}, "name": "__lt__"}], "typeVars": [{"nodeId": ".1.140414000224560"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__lt__"]}, "140414071087936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000224560", "args": [{"nodeId": ".1.140414000224560"}]}, {"nodeId": ".1.140414000224560"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000224560": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000224560", "variance": "CONTRAVARIANT"}, "140414000224896": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071088384"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140414000224896"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__gt__"]}, "140414071088384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000224896", "args": [{"nodeId": ".1.140414000224896"}]}, {"nodeId": ".1.140414000224896"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000224896": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000224896", "variance": "CONTRAVARIANT"}, "140414058497856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140413979080544"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140413979080544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "140413979541680"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979541680": {"type": "TypeAlias", "target": {"nodeId": "140414008098624"}}, "140414008098624": {"type": "Union", "items": [{"nodeId": "140414000224560", "args": [{"nodeId": "A"}]}, {"nodeId": "140414000224896", "args": [{"nodeId": "A"}]}]}, "140414058498304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058498752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979393632": {"type": "Overloaded", "items": [{"nodeId": "140414058499200"}, {"nodeId": "140414058499648"}]}, "140414058499200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414016327344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058499648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979393744": {"type": "Overloaded", "items": [{"nodeId": "140414058500096"}, {"nodeId": "140414058500544"}]}, "140414058500096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}, {"nodeId": ".1.140414016327344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414058500544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016326672"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414058500992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140413979541904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979541904": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140413979541568": {"type": "Overloaded", "items": [{"nodeId": "140414058501440"}, {"nodeId": "140414058501888"}]}, "140414058501440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058501888": {"type": "Function", "typeVars": [".-1.140414058501888"], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".-1.140414058501888"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413979542128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058501888": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058501888", "variance": "INVARIANT"}, "140413979542128": {"type": "Union", "items": [{"nodeId": ".-1.140414058501888"}, {"nodeId": ".1.140414016327344"}]}, "140414058502336": {"type": "Function", "typeVars": [".-1.140414058502336"], "argTypes": [{"nodeId": ".-1.140414058502336"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": ".-1.140414058502336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058502336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058502336", "variance": "INVARIANT"}, "140414058502784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058503232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058503680": {"type": "Function", "typeVars": [".-1.140414058503680"], "argTypes": [{"nodeId": ".-1.140414058503680"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".-1.140414058503680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058503680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058503680", "variance": "INVARIANT"}, "140414058504128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058504576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016327344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058505024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058505472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058505920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058506368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}, {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414016327344"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058506816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414058510400": {"type": "Function", "typeVars": [".-1.140414058510400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414058510400"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, ".-1.140414058510400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058510400", "variance": "INVARIANT"}, "140414058510848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058511296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414017149232", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017149232": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413932814848"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414017149232"}, {"nodeId": ".2.140414017149232"}], "bases": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414017149232"}]}], "isAbstract": false}, "140413932814848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017149232", "args": [{"nodeId": ".1.140414017149232"}, {"nodeId": ".2.140414017149232"}]}], "returnType": {"nodeId": "140413999694560", "args": [{"nodeId": ".1.140414017149232"}, {"nodeId": ".2.140414017149232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017149232": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149232", "variance": "COVARIANT"}, ".2.140414017149232": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149232", "variance": "COVARIANT"}, "140414058511744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414017149568", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017149568": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413932826496"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414017149568"}, {"nodeId": ".2.140414017149568"}], "bases": [{"nodeId": "140414017146880", "args": [{"nodeId": ".2.140414017149568"}]}], "isAbstract": false}, "140413932826496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017149568", "args": [{"nodeId": ".1.140414017149568"}, {"nodeId": ".2.140414017149568"}]}], "returnType": {"nodeId": "140413999694560", "args": [{"nodeId": ".1.140414017149568"}, {"nodeId": ".2.140414017149568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017149568": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149568", "variance": "COVARIANT"}, ".2.140414017149568": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149568", "variance": "COVARIANT"}, "140414058643520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414017149904", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017149904": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413932712032"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414017149904"}, {"nodeId": ".2.140414017149904"}], "bases": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414017149904"}, {"nodeId": ".2.140414017149904"}]}], "isAbstract": false}, "140413932712032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017149904", "args": [{"nodeId": ".1.140414017149904"}, {"nodeId": ".2.140414017149904"}]}], "returnType": {"nodeId": "140413999694560", "args": [{"nodeId": ".1.140414017149904"}, {"nodeId": ".2.140414017149904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017149904": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149904", "variance": "COVARIANT"}, ".2.140414017149904": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017149904", "variance": "COVARIANT"}, "140413979542016": {"type": "Overloaded", "items": [{"nodeId": "140414058643968"}, {"nodeId": "140414058644416"}]}, "140414058643968": {"type": "Function", "typeVars": [".-1.140414058643968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414058643968"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": ".-1.140414058643968"}, {"nodeId": "140413979543360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}, ".-1.140414058643968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058643968", "variance": "INVARIANT"}, "140413979543360": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414058644416": {"type": "Function", "typeVars": [".-1.140414058644416", ".-2.140414058644416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414058644416"}]}, {"nodeId": ".-2.140414058644416"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": ".-1.140414058644416"}, {"nodeId": ".-2.140414058644416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140414058644416": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058644416", "variance": "INVARIANT"}, ".-2.140414058644416": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058644416", "variance": "INVARIANT"}, "140413979542352": {"type": "Overloaded", "items": [{"nodeId": "140414058644864"}, {"nodeId": "140414058645312"}]}, "140414058644864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}], "returnType": {"nodeId": "140413979543584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979543584": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": "N"}]}, "140414058645312": {"type": "Function", "typeVars": [".-1.140414058645312"], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}, {"nodeId": "140413979543696"}], "returnType": {"nodeId": "140413979543808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413979543696": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-1.140414058645312"}]}, ".-1.140414058645312": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058645312", "variance": "INVARIANT"}, "140413979543808": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-1.140414058645312"}]}, "140413979543136": {"type": "Overloaded", "items": [{"nodeId": "140414058645760"}, {"nodeId": "140414058646208"}]}, "140414058645760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}], "returnType": {"nodeId": ".2.140414016327680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058646208": {"type": "Function", "typeVars": [".-1.140414058646208"], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}, {"nodeId": "140413979544032"}], "returnType": {"nodeId": "140413979544144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413979544032": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-1.140414058646208"}]}, ".-1.140414058646208": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058646208", "variance": "INVARIANT"}, "140413979544144": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-1.140414058646208"}]}, "140414058646656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058647104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}], "returnType": {"nodeId": ".2.140414016327680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058647552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414058648000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": ".1.140414016327680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058648448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058648896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016327680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058649344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414058649792": {"type": "Function", "typeVars": [".-1.140414058649792", ".-2.140414058649792"], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414058649792"}, {"nodeId": ".-2.140414058649792"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413979544368"}, {"nodeId": "140413979544480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058649792": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058649792", "variance": "INVARIANT"}, ".-2.140414058649792": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058649792", "variance": "INVARIANT"}, "140413979544368": {"type": "Union", "items": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".-1.140414058649792"}]}, "140413979544480": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-2.140414058649792"}]}, "140414058650240": {"type": "Function", "typeVars": [".-1.140414058650240", ".-2.140414058650240"], "argTypes": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414058650240"}, {"nodeId": ".-2.140414058650240"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413979544592"}, {"nodeId": "140413979544704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058650240": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058650240", "variance": "INVARIANT"}, ".-2.140414058650240": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058650240", "variance": "INVARIANT"}, "140413979544592": {"type": "Union", "items": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".-1.140414058650240"}]}, "140413979544704": {"type": "Union", "items": [{"nodeId": ".2.140414016327680"}, {"nodeId": ".-2.140414058650240"}]}, "140413979543472": {"type": "Overloaded", "items": [{"nodeId": "140414058650688"}, {"nodeId": "140414058651136"}]}, "140414058650688": {"type": "Function", "typeVars": [".-1.140414058650688"], "argTypes": [{"nodeId": ".-1.140414058650688"}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}], "returnType": {"nodeId": ".-1.140414058650688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058650688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058650688", "variance": "INVARIANT"}, "140414058651136": {"type": "Function", "typeVars": [".-1.140414058651136"], "argTypes": [{"nodeId": ".-1.140414058651136"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979545040"}]}], "returnType": {"nodeId": ".-1.140414058651136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058651136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058651136", "variance": "INVARIANT"}, "140413979545040": {"type": "Tuple", "items": [{"nodeId": ".1.140414016327680"}, {"nodeId": ".2.140414016327680"}]}, "140414092556800": {"type": "Concrete", "module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970280544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970280992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050714112"}, "name": "clear"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991879840"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050715456"}, "name": "popitem"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991884768"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991885216"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}], "typeVars": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}], "bases": [{"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}], "isAbstract": true}, "140413970280544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140414092556800": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092556800", "variance": "INVARIANT"}, ".2.140414092556800": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092556800", "variance": "INVARIANT"}, "140413970280992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".1.140414092556800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050714112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991879840": {"type": "Overloaded", "items": [{"nodeId": "140414050714560"}, {"nodeId": "140414050715008"}]}, "140414050714560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".1.140414092556800"}], "returnType": {"nodeId": ".2.140414092556800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414050715008": {"type": "Function", "typeVars": [".-1.140414050715008"], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".1.140414092556800"}, {"nodeId": "140413991885328"}], "returnType": {"nodeId": "140413991885440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140413991885328": {"type": "Union", "items": [{"nodeId": ".2.140414092556800"}, {"nodeId": ".-1.140414050715008"}]}, ".-1.140414050715008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050715008", "variance": "INVARIANT"}, "140413991885440": {"type": "Union", "items": [{"nodeId": ".2.140414092556800"}, {"nodeId": ".-1.140414050715008"}]}, "140414050715456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}], "returnType": {"nodeId": "140413991885664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991885664": {"type": "Tuple", "items": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, "140413991884768": {"type": "Overloaded", "items": [{"nodeId": "140414050715904"}, {"nodeId": "140414050716352"}]}, "140414050715904": {"type": "Function", "typeVars": [".-1.140414050715904"], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": "140413991885888"}]}, {"nodeId": ".1.140414092556800"}], "returnType": {"nodeId": "140413991886000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991885888": {"type": "Union", "items": [{"nodeId": ".-1.140414050715904"}, {"nodeId": "N"}]}, ".-1.140414050715904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050715904", "variance": "INVARIANT"}, "140413991886000": {"type": "Union", "items": [{"nodeId": ".-1.140414050715904"}, {"nodeId": "N"}]}, "140414050716352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}], "returnType": {"nodeId": ".2.140414092556800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413991885216": {"type": "Overloaded", "items": [{"nodeId": "140414050716800"}, {"nodeId": "140414050717248"}, {"nodeId": "140414050717696"}]}, "140414050716800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".2.140414092556800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414050717248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413991886336"}]}, {"nodeId": ".2.140414092556800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140413991886336": {"type": "Tuple", "items": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, "140414050717696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414092556800"}, {"nodeId": ".2.140414092556800"}]}, {"nodeId": ".2.140414092556800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140413978606752": {"type": "Overloaded", "items": [{"nodeId": "140414083709440"}]}, "140414083709440": {"type": "Function", "typeVars": [".-1.140414083709440"], "argTypes": [{"nodeId": ".-1.140414083709440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414083709440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414083709440", "variance": "INVARIANT"}, "140413924025600": {"type": "Function", "typeVars": [".-1.140413924025600"], "argTypes": [{"nodeId": ".-1.140413924025600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413924025600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413924025600", "variance": "INVARIANT"}, "140414083710336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414079762496": {"type": "Function", "typeVars": [".-1.140414079762496"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140414079762496"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140414079762496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414079762496", "variance": "INVARIANT"}, "140414079762944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414079763392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414079763840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414079764288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414079764736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414079765184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414079765632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414079766080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414079766528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414079766976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414079767424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140413978915696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978915696": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}]}, "140414079767872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140413978915920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413978915920": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}]}, "140414079768768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414079769216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140414062627520": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062627520", "variance": "INVARIANT"}, "140413979068224": {"type": "Function", "typeVars": [".-1.140413979068224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413979122192"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140413979068224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}, "140413979122192": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, ".-1.140413979068224": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413979068224", "variance": "INVARIANT"}, "140414062628416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062628864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062629312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414062629760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979122304"}, {"nodeId": "140413979122416"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}, "140413979122304": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979122416": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062630208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140414062630656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979122528"}, {"nodeId": "140413979122640"}, {"nodeId": "140413979122752"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979122528": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}]}, "140413979122640": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979122752": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062631104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140414062632000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979122864"}, {"nodeId": "140413979122976"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979122864": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979122976": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062632448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414062632896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016325328"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}, "140414016325328": {"type": "Protocol", "module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062626624"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__getitem__"]}, "140414062626624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016325328"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062633344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979123088"}, {"nodeId": "140413979123424"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979123088": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979123424": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062633792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062634240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062634688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062635136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062635584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062636032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062636480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062636928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062637376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062637824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062638272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062638720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062639168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414062639616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414062640064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062640512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979123536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979123536": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414062755904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413979123760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979123760": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414062756352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414062756800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414062757248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414062757696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979124096"}, {"nodeId": "140413979124208"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979124096": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979124208": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062758144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979124320"}, {"nodeId": "140413979124432"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979124320": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979124432": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062758592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414062759040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413979124656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979124656": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414062759488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979124768"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979124768": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414062759936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979124880"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979124880": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414062760384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979124992"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413979124992": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414062760832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140414062761280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979125104"}, {"nodeId": "140413979125216"}, {"nodeId": "140413979125328"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413979125104": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}]}, "140413979125216": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140413979125328": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "N"}]}, "140414062761728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979125440"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413979125440": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414062762176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062762624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062763072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016325664"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414016325664": {"type": "Protocol", "module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414062627072"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__getitem__"]}, "140414062627072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016325664"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413979121744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979121744": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414062763520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414062763968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979120960": {"type": "Overloaded", "items": [{"nodeId": "140414062764416"}, {"nodeId": "140414062764864"}]}, "140414062764416": {"type": "Function", "typeVars": [".-1.140414062764416"], "argTypes": [{"nodeId": "140413979125776"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": ".-1.140414062764416"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979125776": {"type": "Union", "items": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": ".-1.140414062764416"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".-1.140414062764416"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140413979125664"}, {"nodeId": ".-1.140414062764416"}]}]}, ".-1.140414062764416": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414062764416", "variance": "INVARIANT"}, "140413979125664": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414062764864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413979125888"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140413979126000"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413979125888": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413979126000": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414062765312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062765760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062766208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062766656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062767104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140413979126112"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979126112": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140414062767552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062768000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062768448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062768896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414062769344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062769792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062770240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062770688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062771136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414062771584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413979126448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979126448": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991492224": {"type": "Concrete", "module": "boruvka", "simpleName": "Graph", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083702496"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weight", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083706304"}, "name": "add_edge"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083706752"}, "name": "find_component"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083707200"}, "name": "set_component"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "component_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083707648"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414083708096"}, "name": "boruvka"}, {"kind": "Variable", "name": "m_num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m_edges", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}]}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m_component", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414083702496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "num_of_nodes"]}, "140414083706304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "u_node", "v_node", "weight"]}, "140414083706752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}, "140414083707200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}, "140414083707648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "component_size", "u_node", "v_node"]}, "140414083708096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991492224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092548064": {"type": "Concrete", "module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924723616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999694224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414012772688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924724064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924724736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058361152"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413924723616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548064"}], "returnType": {"nodeId": "140413979392960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979392960": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414017158640"}]}, {"nodeId": "N"}]}, "140414017158640": {"type": "Concrete", "module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414067064416"}, "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414067064416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017158640"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414012772688": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140413924724064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548064"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413924724736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548064"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058361152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548064"}, {"nodeId": "140413979393296"}, {"nodeId": "140413979393408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140413979393296": {"type": "Union", "items": [{"nodeId": "140414092547392"}, {"nodeId": "N"}]}, "140413979393408": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "N"}]}, "140414092557472": {"type": "Concrete", "module": "builtins", "simpleName": "staticmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924023360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924023136"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079770560"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079771008"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924022464"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079771904"}, "name": "__call__"}], "typeVars": [{"nodeId": ".1.140414092557472"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413924023360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}], "returnType": {"nodeId": "140413983336352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092557472": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092557472", "variance": "COVARIANT"}, "140413983336352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557472"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140413924023136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414079770560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}, {"nodeId": "140413983335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413983335904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557472"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414079771008": {"type": "Function", "typeVars": [".-1.140414079771008"], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}, {"nodeId": ".-1.140414079771008"}, {"nodeId": "140413978916256"}], "returnType": {"nodeId": "140413983341728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140414079771008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414079771008", "variance": "INVARIANT"}, "140413978916256": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983341728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557472"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140413924022464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}], "returnType": {"nodeId": "140413983341504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983341504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557472"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414079771904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414092557472"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557472"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414092557808": {"type": "Concrete", "module": "builtins", "simpleName": "classmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924022016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924021568"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983342176"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414079773696"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413924020896"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092557808"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413924022016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414092557808"}]}], "returnType": {"nodeId": "140413979066432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092557808": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092557808", "variance": "COVARIANT"}, "140413979066432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557808"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140413924021568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414092557808"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983342176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414092557808"}]}, {"nodeId": "140413979066656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979066656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557808"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414079773696": {"type": "Function", "typeVars": [".-1.140414079773696"], "argTypes": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414092557808"}]}, {"nodeId": ".-1.140414079773696"}, {"nodeId": "140413978917040"}], "returnType": {"nodeId": "140413979066880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140414079773696": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414079773696", "variance": "INVARIANT"}, "140413978917040": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413979066880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557808"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140413924020896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414092557808"}]}], "returnType": {"nodeId": "140413979067104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979067104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414092557808"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414016323984": {"type": "Concrete", "module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413978917600"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413978917600": {"type": "Overloaded", "items": [{"nodeId": "140414075360576"}, {"nodeId": "140414075361024"}, {"nodeId": "140414075361472"}]}, "140414075360576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414075361024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414075361472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016323984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017151248": {"type": "Concrete", "module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979544816"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058798592"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058799040"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058799488"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058799936"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058800384"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058800832"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058801280"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058801728"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058802176"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058802624"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058803072"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058803520"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058803968"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058804416"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058804864"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058805312"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058805760"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058806208"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058806656"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058905664"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414017151248"}], "bases": [{"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017151248"}]}], "isAbstract": false}, "140413979544816": {"type": "Overloaded", "items": [{"nodeId": "140414058797696"}, {"nodeId": "140414058798144"}]}, "140414058797696": {"type": "Function", "typeVars": [".-1.140414058797696"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140414058797696"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140414058797696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058797696", "variance": "INVARIANT"}, "140414058798144": {"type": "Function", "typeVars": [".-1.140414058798144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": ".-1.140414058798144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".1.140414017151248": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017151248", "variance": "COVARIANT"}, ".-1.140414058798144": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058798144", "variance": "INVARIANT"}, "140414058798592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414058799040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058799488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140414058799936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058800384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058800832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058801280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058801728": {"type": "Function", "typeVars": [".-1.140414058801728"], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414058801728"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": "140413979546720"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140414058801728": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058801728", "variance": "INVARIANT"}, "140413979546720": {"type": "Union", "items": [{"nodeId": ".1.140414017151248"}, {"nodeId": ".-1.140414058801728"}]}, "140414058802176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058802624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058803072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058803520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058803968": {"type": "Function", "typeVars": [".-1.140414058803968"], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414058803968"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": "140413979546832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058803968": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058803968", "variance": "INVARIANT"}, "140413979546832": {"type": "Union", "items": [{"nodeId": ".1.140414017151248"}, {"nodeId": ".-1.140414058803968"}]}, "140414058804416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".1.140414017151248"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058804864": {"type": "Function", "typeVars": [".-1.140414058804864"], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": ".-1.140414058804864"}]}], "returnType": {"nodeId": "140414017151248", "args": [{"nodeId": "140413979546944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414058804864": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058804864", "variance": "INVARIANT"}, "140413979546944": {"type": "Union", "items": [{"nodeId": ".1.140414017151248"}, {"nodeId": ".-1.140414058804864"}]}, "140414058805312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058805760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058806208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058806656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151248", "args": [{"nodeId": ".1.140414017151248"}]}, {"nodeId": "140414092555792", "args": [{"nodeId": "140414092547392"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058905664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414017151584": {"type": "Concrete", "module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058906112"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058906560"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058907008"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058907456"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414017151584"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": "140414012769776"}]}], "isAbstract": false}, "140414058906112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151584", "args": [{"nodeId": ".1.140414017151584"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017151584"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}, ".1.140414017151584": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017151584", "variance": "INVARIANT"}, "140414058906560": {"type": "Function", "typeVars": [".-1.140414058906560"], "argTypes": [{"nodeId": ".-1.140414058906560"}], "returnType": {"nodeId": ".-1.140414058906560"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414058906560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414058906560", "variance": "INVARIANT"}, "140414058907008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151584", "args": [{"nodeId": ".1.140414017151584"}]}], "returnType": {"nodeId": "140413979547280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979547280": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": ".1.140414017151584"}]}, "140414058907456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414012769776": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": ".1.140414017151584"}]}, "140414016328016": {"type": "Concrete", "module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413919874848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413919875296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413919875520"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979545152"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058910144"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058910592"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058911040"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058911488"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058911936"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979546608"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058913280"}, "name": "__reversed__"}], "typeVars": [], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413919874848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413919875296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413919875520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413979545152": {"type": "Overloaded", "items": [{"nodeId": "140414058909248"}, {"nodeId": "140414058909696"}]}, "140414058909248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058909696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414058910144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058910592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414058911040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058911488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058911936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979546608": {"type": "Overloaded", "items": [{"nodeId": "140414058912384"}, {"nodeId": "140414058912832"}]}, "140414058912384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058912832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016328016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058913280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328016"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414016328352": {"type": "Concrete", "module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991283712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016350448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000053072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058913728"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058914176"}, "name": "getter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058914624"}, "name": "setter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058915072"}, "name": "deleter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058915520"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058915968"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058916416"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991283712": {"type": "Union", "items": [{"nodeId": "140414008123328"}, {"nodeId": "N"}]}, "140414008123328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414016350448": {"type": "Union", "items": [{"nodeId": "140414012919360"}, {"nodeId": "N"}]}, "140414012919360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414000053072": {"type": "Union", "items": [{"nodeId": "140414020824064"}, {"nodeId": "N"}]}, "140414020824064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058913728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "140413979547728"}, {"nodeId": "140413979548064"}, {"nodeId": "140413979548400"}, {"nodeId": "140413979548624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}, "140413979547728": {"type": "Union", "items": [{"nodeId": "140413979080992"}, {"nodeId": "N"}]}, "140413979080992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979548064": {"type": "Union", "items": [{"nodeId": "140413979081440"}, {"nodeId": "N"}]}, "140413979081440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979548400": {"type": "Union", "items": [{"nodeId": "140413979081664"}, {"nodeId": "N"}]}, "140413979081664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413979548624": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414058914176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "140413979081216"}], "returnType": {"nodeId": "140414016328352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979081216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058914624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "140413979080768"}], "returnType": {"nodeId": "140414016328352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979080768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414058915072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "140413979081888"}], "returnType": {"nodeId": "140414016328352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413979081888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414058915520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "A"}, {"nodeId": "140413979549408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413979549408": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "N"}]}, "140414058915968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414058916416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016328352"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414016328688": {"type": "Concrete", "module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991213360": {"type": "Protocol", "module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058920448"}, "name": "__fspath__"}], "typeVars": [{"nodeId": ".1.140413991213360"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__fspath__"]}, "140414058920448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991213360", "args": [{"nodeId": ".1.140413991213360"}]}], "returnType": {"nodeId": ".1.140413991213360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413991213360": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413991213360", "variance": "COVARIANT"}, "140414016329024": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414058921344"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140414016329024"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__anext__"]}, "140414058921344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016329024", "args": [{"nodeId": ".1.140414016329024"}]}], "returnType": {"nodeId": ".1.140414016329024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414016329024": {"type": "TypeVar", "varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140414092552768", "args": [{"nodeId": "A"}]}, "def": "140414016329024", "variance": "COVARIANT"}, "140414092552768": {"type": "Protocol", "module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975262848"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092552768"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__await__"]}, "140413975262848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092552768"}]}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140414092552768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092552768": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092552768", "variance": "COVARIANT"}, "140414092552432": {"type": "Concrete", "module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050170944"}, "name": "__next__"}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975260608"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991728432"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050336832"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050337280"}, "name": "__iter__"}, {"kind": "Variable", "name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975260832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975261280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975261952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975262176"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414092552432"}]}], "isAbstract": true}, "140414050170944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": ".1.140414092552432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092552432": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092552432", "variance": "COVARIANT"}, ".2.140414092552432": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092552432", "variance": "CONTRAVARIANT"}, ".3.140414092552432": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092552432", "variance": "COVARIANT"}, "140413975260608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}, {"nodeId": ".2.140414092552432"}], "returnType": {"nodeId": ".1.140414092552432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991728432": {"type": "Overloaded", "items": [{"nodeId": "140414050171840"}, {"nodeId": "140414050172288"}]}, "140414050171840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}, {"nodeId": "0"}, {"nodeId": "140413991729552"}, {"nodeId": "140413991729664"}], "returnType": {"nodeId": ".1.140414092552432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991729552": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413991729664": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414050172288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413991729776"}], "returnType": {"nodeId": ".1.140414092552432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991729776": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414050336832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050337280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413975260832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "140413999694224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975261280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "140413999699600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975261952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975262176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414092552432"}, {"nodeId": ".2.140414092552432"}, {"nodeId": ".3.140414092552432"}]}], "returnType": {"nodeId": "140413991730224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991730224": {"type": "Union", "items": [{"nodeId": "140414092552432", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414017151920": {"type": "Concrete", "module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979550640"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414059060736"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414059061184"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140414017151920"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017151920"}]}], "isAbstract": false}, "140413979550640": {"type": "Overloaded", "items": [{"nodeId": "140414059059392"}, {"nodeId": "140414059059840"}, {"nodeId": "140414059060288"}]}, "140414059059392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151920", "args": [{"nodeId": ".1.140414017151920"}]}, {"nodeId": "N"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413979552992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140414017151920": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017151920", "variance": "INVARIANT"}, "140413979552992": {"type": "Union", "items": [{"nodeId": ".1.140414017151920"}, {"nodeId": "N"}]}, "140414059059840": {"type": "Function", "typeVars": [".-1.140414059059840"], "argTypes": [{"nodeId": "140414017151920", "args": [{"nodeId": ".1.140414017151920"}]}, {"nodeId": "140413974560832"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059059840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413974560832": {"type": "Function", "typeVars": [".-1.140413974560832"], "argTypes": [{"nodeId": ".-1.140413974560832"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140413974560832": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974560832", "variance": "INVARIANT"}, ".-1.140414059059840": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059059840", "variance": "INVARIANT"}, "140414059060288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151920", "args": [{"nodeId": ".1.140414017151920"}]}, {"nodeId": "140413974561056"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017151920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413974561056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140414017151920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414059060736": {"type": "Function", "typeVars": [".-1.140414059060736"], "argTypes": [{"nodeId": ".-1.140414059060736"}], "returnType": {"nodeId": ".-1.140414059060736"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414059060736": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059060736", "variance": "INVARIANT"}, "140414059061184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017151920", "args": [{"nodeId": ".1.140414017151920"}]}], "returnType": {"nodeId": ".1.140414017151920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016329360": {"type": "Protocol", "module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414059067904"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140414016329360"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__getitem__"]}, "140414059067904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016329360", "args": [{"nodeId": ".1.140414016329360"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414016329360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414016329360": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016329360", "variance": "COVARIANT"}, "140414017152256": {"type": "Concrete", "module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413979553104"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414059206400"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414059206848"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140414017152256"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017152256"}]}], "isAbstract": false}, "140413979553104": {"type": "Overloaded", "items": [{"nodeId": "140414059203712"}, {"nodeId": "140414059204160"}, {"nodeId": "140414059204608"}, {"nodeId": "140414059205056"}, {"nodeId": "140414059205504"}, {"nodeId": "140414059205952"}]}, "140414059203712": {"type": "Function", "typeVars": [".-1.140414059203712"], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974563296"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059203712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140414017152256": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017152256", "variance": "INVARIANT"}, "140413974563296": {"type": "Function", "typeVars": [".-1.140413974563296"], "argTypes": [{"nodeId": ".-1.140413974563296"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140413974563296": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563296", "variance": "INVARIANT"}, ".-1.140414059203712": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059203712", "variance": "INVARIANT"}, "140414059204160": {"type": "Function", "typeVars": [".-1.140414059204160", ".-2.140414059204160"], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974562624"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059204160"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414059204160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140413974562624": {"type": "Function", "typeVars": [".-1.140413974562624", ".-2.140413974562624"], "argTypes": [{"nodeId": ".-1.140413974562624"}, {"nodeId": ".-2.140413974562624"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413974562624": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974562624", "variance": "INVARIANT"}, ".-2.140413974562624": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974562624", "variance": "INVARIANT"}, ".-1.140414059204160": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059204160", "variance": "INVARIANT"}, ".-2.140414059204160": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059204160", "variance": "INVARIANT"}, "140414059204608": {"type": "Function", "typeVars": [".-1.140414059204608", ".-2.140414059204608", ".-3.140414059204608"], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974562848"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059204608"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414059204608"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414059204608"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140413974562848": {"type": "Function", "typeVars": [".-1.140413974562848", ".-2.140413974562848", ".-3.140413974562848"], "argTypes": [{"nodeId": ".-1.140413974562848"}, {"nodeId": ".-2.140413974562848"}, {"nodeId": ".-3.140413974562848"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".-1.140413974562848": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974562848", "variance": "INVARIANT"}, ".-2.140413974562848": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974562848", "variance": "INVARIANT"}, ".-3.140413974562848": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974562848", "variance": "INVARIANT"}, ".-1.140414059204608": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059204608", "variance": "INVARIANT"}, ".-2.140414059204608": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059204608", "variance": "INVARIANT"}, ".-3.140414059204608": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059204608", "variance": "INVARIANT"}, "140414059205056": {"type": "Function", "typeVars": [".-1.140414059205056", ".-2.140414059205056", ".-3.140414059205056", ".-4.140414059205056"], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974563520"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059205056"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414059205056"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414059205056"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-4.140414059205056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140413974563520": {"type": "Function", "typeVars": [".-1.140413974563520", ".-2.140413974563520", ".-3.140413974563520", ".-4.140413974563520"], "argTypes": [{"nodeId": ".-1.140413974563520"}, {"nodeId": ".-2.140413974563520"}, {"nodeId": ".-3.140413974563520"}, {"nodeId": ".-4.140413974563520"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, ".-1.140413974563520": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563520", "variance": "INVARIANT"}, ".-2.140413974563520": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563520", "variance": "INVARIANT"}, ".-3.140413974563520": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563520", "variance": "INVARIANT"}, ".-4.140413974563520": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563520", "variance": "INVARIANT"}, ".-1.140414059205056": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205056", "variance": "INVARIANT"}, ".-2.140414059205056": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205056", "variance": "INVARIANT"}, ".-3.140414059205056": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205056", "variance": "INVARIANT"}, ".-4.140414059205056": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205056", "variance": "INVARIANT"}, "140414059205504": {"type": "Function", "typeVars": [".-1.140414059205504", ".-2.140414059205504", ".-3.140414059205504", ".-4.140414059205504", ".-5.140414059205504"], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974563744"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414059205504"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414059205504"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414059205504"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-4.140414059205504"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-5.140414059205504"}]}], "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]}, "140413974563744": {"type": "Function", "typeVars": [".-1.140413974563744", ".-2.140413974563744", ".-3.140413974563744", ".-4.140413974563744", ".-5.140413974563744"], "argTypes": [{"nodeId": ".-1.140413974563744"}, {"nodeId": ".-2.140413974563744"}, {"nodeId": ".-3.140413974563744"}, {"nodeId": ".-4.140413974563744"}, {"nodeId": ".-5.140413974563744"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}, ".-1.140413974563744": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563744", "variance": "INVARIANT"}, ".-2.140413974563744": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563744", "variance": "INVARIANT"}, ".-3.140413974563744": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563744", "variance": "INVARIANT"}, ".-4.140413974563744": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563744", "variance": "INVARIANT"}, ".-5.140413974563744": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974563744", "variance": "INVARIANT"}, ".-1.140414059205504": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205504", "variance": "INVARIANT"}, ".-2.140414059205504": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205504", "variance": "INVARIANT"}, ".-3.140414059205504": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205504", "variance": "INVARIANT"}, ".-4.140414059205504": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205504", "variance": "INVARIANT"}, ".-5.140414059205504": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059205504", "variance": "INVARIANT"}, "140414059205952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}, {"nodeId": "140413974563968"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "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"]}, "140413974563968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414059206400": {"type": "Function", "typeVars": [".-1.140414059206400"], "argTypes": [{"nodeId": ".-1.140414059206400"}], "returnType": {"nodeId": ".-1.140414059206400"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414059206400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414059206400", "variance": "INVARIANT"}, "140414059206848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152256", "args": [{"nodeId": ".1.140414017152256"}]}], "returnType": {"nodeId": ".1.140414017152256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991213696": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054187968"}, "name": "flush"}], "typeVars": [{"nodeId": ".1.140413991213696"}], "bases": [{"nodeId": "140414000232288", "args": [{"nodeId": ".1.140413991213696"}]}], "protocolMembers": ["flush", "write"]}, "140414054187968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991213696", "args": [{"nodeId": ".1.140413991213696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413991213696": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413991213696", "variance": "CONTRAVARIANT"}, "140414016329696": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054189312"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140414016329696"}, {"nodeId": ".2.140414016329696"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__pow__"]}, "140414054189312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016329696", "args": [{"nodeId": ".1.140414016329696"}, {"nodeId": ".2.140414016329696"}]}, {"nodeId": ".1.140414016329696"}], "returnType": {"nodeId": ".2.140414016329696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414016329696": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016329696", "variance": "CONTRAVARIANT"}, ".2.140414016329696": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016329696", "variance": "COVARIANT"}, "140414016330032": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054189760"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140414016330032"}, {"nodeId": ".2.140414016330032"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__pow__"]}, "140414054189760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016330032", "args": [{"nodeId": ".1.140414016330032"}, {"nodeId": ".2.140414016330032"}]}, {"nodeId": ".1.140414016330032"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140414016330032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".1.140414016330032": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330032", "variance": "CONTRAVARIANT"}, ".2.140414016330032": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330032", "variance": "COVARIANT"}, "140414016330368": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054190208"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140414016330368"}, {"nodeId": ".2.140414016330368"}, {"nodeId": ".3.140414016330368"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__pow__"]}, "140414054190208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016330368", "args": [{"nodeId": ".1.140414016330368"}, {"nodeId": ".2.140414016330368"}, {"nodeId": ".3.140414016330368"}]}, {"nodeId": ".1.140414016330368"}, {"nodeId": ".2.140414016330368"}], "returnType": {"nodeId": ".3.140414016330368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140414016330368": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330368", "variance": "CONTRAVARIANT"}, ".2.140414016330368": {"type": "TypeVar", "varName": "_M", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330368", "variance": "CONTRAVARIANT"}, ".3.140414016330368": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330368", "variance": "COVARIANT"}, "140414017152592": {"type": "Concrete", "module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413974666192"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054369536"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054369984"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054370432"}, "name": "__length_hint__"}], "typeVars": [{"nodeId": ".1.140414017152592"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017152592"}]}], "isAbstract": false}, "140413974666192": {"type": "Overloaded", "items": [{"nodeId": "140414054368640"}, {"nodeId": "140414054369088"}]}, "140414054368640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152592", "args": [{"nodeId": ".1.140414017152592"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414017152592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140414017152592": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017152592", "variance": "INVARIANT"}, "140414054369088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152592", "args": [{"nodeId": ".1.140414017152592"}]}, {"nodeId": "140414000228928", "args": [{"nodeId": ".1.140414017152592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414000228928": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071093312"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071093760"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140414000228928"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__getitem__", "__len__"]}, "140414071093312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000228928", "args": [{"nodeId": ".1.140414000228928"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414000228928": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000228928", "variance": "COVARIANT"}, "140414071093760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000228928", "args": [{"nodeId": ".1.140414000228928"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414000228928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414054369536": {"type": "Function", "typeVars": [".-1.140414054369536"], "argTypes": [{"nodeId": ".-1.140414054369536"}], "returnType": {"nodeId": ".-1.140414054369536"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414054369536": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054369536", "variance": "INVARIANT"}, "140414054369984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152592", "args": [{"nodeId": ".1.140414017152592"}]}], "returnType": {"nodeId": ".1.140414017152592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054370432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152592", "args": [{"nodeId": ".1.140414017152592"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016330704": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054371328"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140414016330704"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__round__"]}, "140414054371328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016330704", "args": [{"nodeId": ".1.140414016330704"}]}], "returnType": {"nodeId": ".1.140414016330704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414016330704": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016330704", "variance": "COVARIANT"}, "140414016331040": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054371776"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140414016331040"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__round__"]}, "140414054371776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016331040", "args": [{"nodeId": ".1.140414016331040"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414016331040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140414016331040": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016331040", "variance": "COVARIANT"}, "140413991214032": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000226240", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140414000226576", "args": [{"nodeId": "140414016324320"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}, "140414000226240": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071089728"}, "name": "__add__"}], "typeVars": [{"nodeId": ".1.140414000226240"}, {"nodeId": ".2.140414000226240"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__add__"]}, "140414071089728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000226240", "args": [{"nodeId": ".1.140414000226240"}, {"nodeId": ".2.140414000226240"}]}, {"nodeId": ".1.140414000226240"}], "returnType": {"nodeId": ".2.140414000226240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000226240": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226240", "variance": "CONTRAVARIANT"}, ".2.140414000226240": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226240", "variance": "COVARIANT"}, "140414000226576": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071090176"}, "name": "__radd__"}], "typeVars": [{"nodeId": ".1.140414000226576"}, {"nodeId": ".2.140414000226576"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__radd__"]}, "140414071090176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000226576", "args": [{"nodeId": ".1.140414000226576"}, {"nodeId": ".2.140414000226576"}]}, {"nodeId": ".1.140414000226576"}], "returnType": {"nodeId": ".2.140414000226576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000226576": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226576", "variance": "CONTRAVARIANT"}, ".2.140414000226576": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226576", "variance": "COVARIANT"}, "140414017152928": {"type": "Concrete", "module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413974668320"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054382976"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054563904"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140414017152928"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017152928"}]}], "isAbstract": false}, "140413974668320": {"type": "Overloaded", "items": [{"nodeId": "140414054377600"}, {"nodeId": "140414054378048"}, {"nodeId": "140414054378496"}, {"nodeId": "140414054378944"}, {"nodeId": "140414054379392"}, {"nodeId": "140414054379840"}]}, "140414054377600": {"type": "Function", "typeVars": [".-1.140414054377600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414054377600"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140413974670448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}, ".-1.140414054377600": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054377600", "variance": "INVARIANT"}, "140413974670448": {"type": "Tuple", "items": [{"nodeId": ".-1.140414054377600"}]}, "140414054378048": {"type": "Function", "typeVars": [".-1.140414054378048", ".-2.140414054378048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414054378048"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414054378048"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140413974670672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}, ".-1.140414054378048": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378048", "variance": "INVARIANT"}, ".-2.140414054378048": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378048", "variance": "INVARIANT"}, "140413974670672": {"type": "Tuple", "items": [{"nodeId": ".-1.140414054378048"}, {"nodeId": ".-2.140414054378048"}]}, "140414054378496": {"type": "Function", "typeVars": [".-1.140414054378496", ".-2.140414054378496", ".-3.140414054378496"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414054378496"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414054378496"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414054378496"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140413974670896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}, ".-1.140414054378496": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378496", "variance": "INVARIANT"}, ".-2.140414054378496": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378496", "variance": "INVARIANT"}, ".-3.140414054378496": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378496", "variance": "INVARIANT"}, "140413974670896": {"type": "Tuple", "items": [{"nodeId": ".-1.140414054378496"}, {"nodeId": ".-2.140414054378496"}, {"nodeId": ".-3.140414054378496"}]}, "140414054378944": {"type": "Function", "typeVars": [".-1.140414054378944", ".-2.140414054378944", ".-3.140414054378944", ".-4.140414054378944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414054378944"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414054378944"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414054378944"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-4.140414054378944"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140413974671120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}, ".-1.140414054378944": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378944", "variance": "INVARIANT"}, ".-2.140414054378944": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378944", "variance": "INVARIANT"}, ".-3.140414054378944": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378944", "variance": "INVARIANT"}, ".-4.140414054378944": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054378944", "variance": "INVARIANT"}, "140413974671120": {"type": "Tuple", "items": [{"nodeId": ".-1.140414054378944"}, {"nodeId": ".-2.140414054378944"}, {"nodeId": ".-3.140414054378944"}, {"nodeId": ".-4.140414054378944"}]}, "140414054379392": {"type": "Function", "typeVars": [".-1.140414054379392", ".-2.140414054379392", ".-3.140414054379392", ".-4.140414054379392", ".-5.140414054379392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414054379392"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-2.140414054379392"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-3.140414054379392"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-4.140414054379392"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-5.140414054379392"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140413974671344"}]}, "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.140414054379392": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054379392", "variance": "INVARIANT"}, ".-2.140414054379392": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054379392", "variance": "INVARIANT"}, ".-3.140414054379392": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054379392", "variance": "INVARIANT"}, ".-4.140414054379392": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054379392", "variance": "INVARIANT"}, ".-5.140414054379392": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054379392", "variance": "INVARIANT"}, "140413974671344": {"type": "Tuple", "items": [{"nodeId": ".-1.140414054379392"}, {"nodeId": ".-2.140414054379392"}, {"nodeId": ".-3.140414054379392"}, {"nodeId": ".-4.140414054379392"}, {"nodeId": ".-5.140414054379392"}]}, "140414054379840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017152928", "args": [{"nodeId": "140414016327008", "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"]}, "140414054382976": {"type": "Function", "typeVars": [".-1.140414054382976"], "argTypes": [{"nodeId": ".-1.140414054382976"}], "returnType": {"nodeId": ".-1.140414054382976"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414054382976": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054382976", "variance": "INVARIANT"}, "140414054563904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017152928", "args": [{"nodeId": ".1.140414017152928"}]}], "returnType": {"nodeId": ".1.140414017152928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017152928": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017152928", "variance": "COVARIANT"}, "140414016331376": {"type": "Concrete", "module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016332048": {"type": "Concrete", "module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016331712"}], "isAbstract": false}, "140414016332384": {"type": "Concrete", "module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016331712"}], "isAbstract": false}, "140414016332720": {"type": "Concrete", "module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991277216"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016331712"}], "isAbstract": false}, "140413991277216": {"type": "TypeAlias", "target": {"nodeId": "140413999567968"}}, "140413999567968": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016333056": {"type": "Concrete", "module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016331712"}], "isAbstract": false}, "140414016333392": {"type": "Concrete", "module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016333728": {"type": "Concrete", "module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016334064": {"type": "Concrete", "module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016334400": {"type": "Concrete", "module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016334736": {"type": "Concrete", "module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054567040"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547392"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414054567040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016334736"}, {"nodeId": "140414092547392"}, {"nodeId": "140413974673584"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}, "140413974673584": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016335072": {"type": "Concrete", "module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016335408": {"type": "Concrete", "module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016335744": {"type": "Concrete", "module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054567488"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016354032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016341712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414054567488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016335744"}, {"nodeId": "140414092547392"}, {"nodeId": "140413974673696"}, {"nodeId": "140413974673808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}, "140413974673696": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974673808": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016354032": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016341712": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016336080": {"type": "Concrete", "module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016336416": {"type": "Concrete", "module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016336752": {"type": "Concrete", "module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016337088": {"type": "Concrete", "module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016337424": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016337760": {"type": "Concrete", "module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016338096": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016353248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016342048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016343056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000054080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016353360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016344400"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016353248": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016342048": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016343056": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414000054080": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016353360": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016344400": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016338432": {"type": "Concrete", "module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016338768": {"type": "Concrete", "module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016339104": {"type": "Concrete", "module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016339440": {"type": "Concrete", "module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016334064"}], "isAbstract": false}, "140414016962624": {"type": "Concrete", "module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016334064"}], "isAbstract": false}, "140414016962960": {"type": "Concrete", "module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016334064"}], "isAbstract": false}, "140414016963296": {"type": "Concrete", "module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016335744"}], "isAbstract": false}, "140414016963632": {"type": "Concrete", "module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016336080"}], "isAbstract": false}, "140414016963968": {"type": "Concrete", "module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016336080"}], "isAbstract": false}, "140414016964304": {"type": "Concrete", "module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016336752"}], "isAbstract": false}, "140414016964640": {"type": "Concrete", "module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016964976": {"type": "Concrete", "module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016965312": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016965648": {"type": "Concrete", "module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016965312"}], "isAbstract": false}, "140414016965984": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016965312"}], "isAbstract": false}, "140414016966320": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016965312"}], "isAbstract": false}, "140414016966656": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016965312"}], "isAbstract": false}, "140414016966992": {"type": "Concrete", "module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016967328": {"type": "Concrete", "module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016967664": {"type": "Concrete", "module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016968000": {"type": "Concrete", "module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016968336": {"type": "Concrete", "module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016968672": {"type": "Concrete", "module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016969008": {"type": "Concrete", "module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016969344": {"type": "Concrete", "module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}], "isAbstract": false}, "140414016969680": {"type": "Concrete", "module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016337424"}], "isAbstract": false}, "140414016970016": {"type": "Concrete", "module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016337424"}], "isAbstract": false}, "140414016970352": {"type": "Concrete", "module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016338096"}], "isAbstract": false}, "140414016970688": {"type": "Concrete", "module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016970352"}], "isAbstract": false}, "140414016971024": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016339104"}], "isAbstract": false}, "140414016971360": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017150240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054567936"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414016971024"}], "isAbstract": false}, "140414054567936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016971360"}, {"nodeId": "140414016326000"}, {"nodeId": "140413974673920"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140413974673920": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414016971696": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054568384"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414016971024"}], "isAbstract": false}, "140414054568384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016971696"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140414016972032": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054568832"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414016971024"}], "isAbstract": false}, "140414054568832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016972032"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140414016972368": {"type": "Concrete", "module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414016972704": {"type": "Concrete", "module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016973040": {"type": "Concrete", "module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016973376": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016973712": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016974048": {"type": "Concrete", "module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016974384": {"type": "Concrete", "module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016974720": {"type": "Concrete", "module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016975056": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016975392": {"type": "Concrete", "module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016975728": {"type": "Concrete", "module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414016976064": {"type": "Concrete", "module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016972368"}], "isAbstract": false}, "140414000233296": {"type": "Concrete", "module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933118832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054578464"}, "name": "__init__"}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991604336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414012772912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414012773136"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413933118832": {"type": "Tuple", "items": []}, "140414054578464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000233296"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140413991604336": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414012772912": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414012773136": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414000233632": {"type": "Concrete", "module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000233968": {"type": "Concrete", "module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000431168": {"type": "Concrete", "module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933123312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233968"}], "isAbstract": false}, "140413933123312": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000431504": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933124320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233632"}], "isAbstract": false}, "140413933124320": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000441584": {"type": "Concrete", "module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000431840": {"type": "Concrete", "module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933125328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000431168"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233632"}], "isAbstract": false}, "140413933125328": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000432848": {"type": "Concrete", "module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000432176": {"type": "Concrete", "module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933323424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233632"}], "isAbstract": false}, "140413933323424": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000432512": {"type": "Concrete", "module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233632"}], "isAbstract": false}, "140413933324320": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000433184": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933326336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991207984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991607248"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933326336": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991207984": {"type": "Concrete", "module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928519520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414054168304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414054167184"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991604000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928519520": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991208320": {"type": "Concrete", "module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928520752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991604112"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928520752": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991604112": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414054168304": {"type": "Union", "items": [{"nodeId": "140413991208320"}, {"nodeId": "N"}]}, "140414054167184": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140413991604000": {"type": "Union", "items": [{"nodeId": "140413991208320"}, {"nodeId": "N"}]}, "140413991607248": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000433520": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933327792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991207984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603216"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933327792": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991603216": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000433856": {"type": "Concrete", "module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933329024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208656"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933329024": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991208656": {"type": "Concrete", "module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928783936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414054168192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928783936": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414054168192": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414000434192": {"type": "Concrete", "module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933329472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991600976"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933329472": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991600976": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000434528": {"type": "Concrete", "module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933330368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933330368": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000434864": {"type": "Concrete", "module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933331712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933331712": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000435200": {"type": "Concrete", "module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933332832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991601088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000551904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933332832": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991601088": {"type": "Union", "items": [{"nodeId": "140414000548544"}, {"nodeId": "140414000547200"}, {"nodeId": "140414000547872"}]}, "140414000548544": {"type": "Concrete", "module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928511904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928511904": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000549552": {"type": "Concrete", "module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000547200": {"type": "Concrete", "module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928506640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928506640": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000547872": {"type": "Concrete", "module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928510000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928510000": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000551904": {"type": "Concrete", "module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000435536": {"type": "Concrete", "module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933334176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933334176": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991603104": {"type": "Union", "items": [{"nodeId": "140414000548544"}, {"nodeId": "140414000547200"}, {"nodeId": "140414000547872"}]}, "140413991603328": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000435872": {"type": "Concrete", "module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933335632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933335632": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000436208": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933336976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933336976": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000436544": {"type": "Concrete", "module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413933337872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413933337872": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000436880": {"type": "Concrete", "module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928210944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928210944": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000437216": {"type": "Concrete", "module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928212064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991209328"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928212064": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991209328": {"type": "Concrete", "module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928785952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414084162368"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928785952": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414084162368": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000437552": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928213184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991209328"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928213184": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000437888": {"type": "Concrete", "module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928214080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603664"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928214080": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991603440": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140413991603664": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000438224": {"type": "Concrete", "module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928215536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991207648"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928215536": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991207648": {"type": "Concrete", "module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928517504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414054892144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414054694720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991207312"}], "isAbstract": false}, "140413928517504": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414054892144": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414054694720": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991207312": {"type": "Concrete", "module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000438560": {"type": "Concrete", "module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928216880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603776"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928216880": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991603776": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000438896": {"type": "Concrete", "module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928217664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208992"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928217664": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991208992": {"type": "Concrete", "module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928784944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414084167520"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928784944": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414084167520": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414000439232": {"type": "Concrete", "module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928219008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991603888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208992"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928219008": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991603888": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414000439568": {"type": "Concrete", "module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928219680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928219680": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000439904": {"type": "Concrete", "module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928220576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928220576": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000440240": {"type": "Concrete", "module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928221472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928221472": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000440576": {"type": "Concrete", "module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140414000440912": {"type": "Concrete", "module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140414000441248": {"type": "Concrete", "module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140414000441920": {"type": "Concrete", "module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928222592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000550896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928222592": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000550896": {"type": "Concrete", "module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000442256": {"type": "Concrete", "module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928223824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000551904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928223824": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000442592": {"type": "Concrete", "module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928224720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000556608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928224720": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000556608": {"type": "Concrete", "module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000442928": {"type": "Concrete", "module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928225728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991207984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928225728": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000443264": {"type": "Concrete", "module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928374560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928374560": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000443600": {"type": "Concrete", "module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928375456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414012768320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928375456": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414012768320": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000443936": {"type": "Concrete", "module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928376240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928376240": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000444272": {"type": "Concrete", "module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928377360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991206976"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928377360": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991206976": {"type": "Concrete", "module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928516496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928516496": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000444608": {"type": "Concrete", "module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928378368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991206976"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928378368": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000444944": {"type": "Concrete", "module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928379600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991206976"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928379600": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000445280": {"type": "Concrete", "module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928380496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991206976"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928380496": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000445616": {"type": "Concrete", "module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928381280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928381280": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000445952": {"type": "Concrete", "module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928382176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991601872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928382176": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991601872": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000446288": {"type": "Concrete", "module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928383072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928383072": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000446624": {"type": "Concrete", "module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928384416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000558288"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928384416": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000558288": {"type": "Concrete", "module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000446960": {"type": "Concrete", "module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928385536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991208656"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928385536": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000545856": {"type": "Concrete", "module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928386656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414038165872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928386656": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414038165872": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000546192": {"type": "Concrete", "module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928387328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928387328": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000546528": {"type": "Concrete", "module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928389008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414038168112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414055011872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928389008": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414038168112": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414055011872": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324992"}]}, "140414000546864": {"type": "Concrete", "module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928505408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000548544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928505408": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000547536": {"type": "Concrete", "module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928508320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414070939360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414067118304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414054958352"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928508320": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414070939360": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414067118304": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414054958352": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140414000548208": {"type": "Concrete", "module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928510896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928510896": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000548880": {"type": "Concrete", "module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928512912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928512912": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000549216": {"type": "Concrete", "module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928513920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000549552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000441584"}], "isAbstract": false}, "140413928513920": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000549888": {"type": "Concrete", "module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000549552"}], "isAbstract": false}, "140414000550224": {"type": "Concrete", "module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000549552"}], "isAbstract": false}, "140414000550560": {"type": "Concrete", "module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000549552"}], "isAbstract": false}, "140414000551232": {"type": "Concrete", "module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000550896"}], "isAbstract": false}, "140414000551568": {"type": "Concrete", "module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000550896"}], "isAbstract": false}, "140414000552240": {"type": "Concrete", "module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000552576": {"type": "Concrete", "module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000552912": {"type": "Concrete", "module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000553248": {"type": "Concrete", "module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000553584": {"type": "Concrete", "module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000553920": {"type": "Concrete", "module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000554256": {"type": "Concrete", "module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000554592": {"type": "Concrete", "module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000554928": {"type": "Concrete", "module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000555264": {"type": "Concrete", "module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000555600": {"type": "Concrete", "module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000555936": {"type": "Concrete", "module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000556272": {"type": "Concrete", "module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000551904"}], "isAbstract": false}, "140414000556944": {"type": "Concrete", "module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000556608"}], "isAbstract": false}, "140414000557280": {"type": "Concrete", "module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000556608"}], "isAbstract": false}, "140414000557616": {"type": "Concrete", "module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000556608"}], "isAbstract": false}, "140414000557952": {"type": "Concrete", "module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000556608"}], "isAbstract": false}, "140414000558624": {"type": "Concrete", "module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000558960": {"type": "Concrete", "module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000559296": {"type": "Concrete", "module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000559632": {"type": "Concrete", "module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000559968": {"type": "Concrete", "module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000560304": {"type": "Concrete", "module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000560640": {"type": "Concrete", "module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000560976": {"type": "Concrete", "module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000561312": {"type": "Concrete", "module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140414000561648": {"type": "Concrete", "module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000558288"}], "isAbstract": false}, "140413991209664": {"type": "Concrete", "module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928786960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210336"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000432848"}], "isAbstract": false}, "140413928786960": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991210336": {"type": "Concrete", "module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928787632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991210000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000043328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000432848"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140413928787632": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991210000": {"type": "Concrete", "module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000233296"}], "isAbstract": false}, "140414000043328": {"type": "Union", "items": [{"nodeId": "140414000441584"}, {"nodeId": "N"}]}, "140413991210672": {"type": "Concrete", "module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928787744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928787744": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991211008": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928788080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000044000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928788080": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000044000": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140413991211344": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928788416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210000"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928788416": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413991211680": {"type": "Concrete", "module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928788752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000042656"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928788752": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414000042656": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991212016": {"type": "Concrete", "module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928789536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414000441584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000044560"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928789536": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000044560": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991212352": {"type": "Concrete", "module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928790320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000441584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210000"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928790320": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991212688": {"type": "Concrete", "module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928790544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000043216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000043440"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928790544": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414000043216": {"type": "Union", "items": [{"nodeId": "140413991210000"}, {"nodeId": "N"}]}, "140414000043440": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991213024": {"type": "Concrete", "module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413928790768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991210000"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991210000"}], "isAbstract": false}, "140413928790768": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140413999701616": {"type": "Protocol", "module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054579584"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["find_spec"]}, "140414054579584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999701616"}, {"nodeId": "140414016326000"}, {"nodeId": "140413986940944"}, {"nodeId": "140413986941056"}], "returnType": {"nodeId": "140413986941168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140413986940944": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413986941056": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413999695568": {"type": "Concrete", "module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999566176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970927168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999566736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999566960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092555456", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999567072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075527328"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075527776"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999566176": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413970927168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999566736": {"type": "Union", "items": [{"nodeId": "140413999695232"}, {"nodeId": "N"}]}, "140413999695232": {"type": "Protocol", "module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075526432"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["load_module"]}, "140414075526432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695232"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413999566960": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413999567072": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140414016446400": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045873408"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991381904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991382128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414003709536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414003709648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949698880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045874304"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414045873408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446400"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982797248"}, {"nodeId": "140413982797360"}, {"nodeId": "A"}, {"nodeId": "140413982797584"}], "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"]}, "140413982797248": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140414016447408": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041687648"}, "name": "load_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041688096"}, "name": "module_repr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041688544"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041688992"}, "name": "exec_module"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414041687648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016447408"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140414041688096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016447408"}, {"nodeId": "140413999695568"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140414041688544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016447408"}, {"nodeId": "140414016446400"}], "returnType": {"nodeId": "140413982801168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140413982801168": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140414041688992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016447408"}, {"nodeId": "140413999695568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140413982797360": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982797584": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413991381904": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140413991382128": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414003709536": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414003709648": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413949698880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446400"}], "returnType": {"nodeId": "140413982797696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982797696": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414045874304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446400"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075527328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}, {"nodeId": "140414016326000"}, {"nodeId": "140413991893616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}, "140413991893616": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414075527776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413986941168": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140413991214368": {"type": "Concrete", "module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966120576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966121696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966121920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966122144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966122368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966122592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966172224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966172448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966172672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966172896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966173120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966173344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966173568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966173792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966174016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966174688"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "A"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413966120576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941392"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941392": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966121696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941504"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941504": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966121920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941616"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941616": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966122144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941728"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941728": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966122368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941840"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941840": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966122592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986941952"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986941952": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966172224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942064"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942064": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966172448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942176"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942176": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966172672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942288"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942288": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966172896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942400"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942400": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966173120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942512"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942512": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966173344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942624"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942624": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966173568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942736"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942736": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966173792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942848"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942848": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966174016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986942960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986942960": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966174688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943072"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943072": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414000232624": {"type": "Concrete", "module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054913344"}, "name": "__new__"}], "typeVars": [{"nodeId": ".1.140414000232624"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414054913344": {"type": "Function", "typeVars": [".-1.140414054913344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414000232624"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140414054913344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}, ".1.140414000232624": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000232624", "variance": "COVARIANT"}, ".-1.140414054913344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054913344", "variance": "INVARIANT"}, "140413991214704": {"type": "Concrete", "module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966175808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966176256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966176480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966176704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966176928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966177152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966177376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966177600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966177824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966178048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966178272"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324656"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}], "isAbstract": false}, "140413966175808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943184"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943184": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966176256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943296"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943296": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966176480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943408"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943408": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966176704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943520"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943520": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966176928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943632"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943632": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966177152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943744"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943744": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966177376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943856"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943856": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966177600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986943968"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986943968": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966177824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944080"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944080": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966178048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944192"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944192": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966178272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944304"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944304": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991215040": {"type": "Concrete", "module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966179616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966179840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966180064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966180288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966180512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966180736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966180960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966181184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966181408"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140413991280240"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}], "isAbstract": false}, "140413966179616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944416"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944416": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966179840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944528"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944528": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966180064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944640"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944640": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966180288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944752"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944752": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966180512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944864"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944864": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966180736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986944976"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986944976": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966180960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945088"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945088": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966181184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945200"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945200": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966181408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945312"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945312": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991280240": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "140414016324320"}]}, "140413999701952": {"type": "Concrete", "module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991279008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414066901504"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991279008": {"type": "TypeAlias", "target": {"nodeId": "140413991607808"}}, "140413991607808": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414066901504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999701952"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413991215376": {"type": "Concrete", "module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966183424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966183648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966183872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966184096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413966183424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945536"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945536": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966183648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945648"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945648": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966183872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945760"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945760": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413966184096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945872"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945872": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991215712": {"type": "Concrete", "module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966184320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966185440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966185664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966185888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966186112"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "A"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}], "isAbstract": false}, "140413966184320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986945984"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986945984": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413966185440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986946096"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986946096": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413966185664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986946208"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986946208": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413966185888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986946320"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986946320": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413966186112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413986946432"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986946432": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413999702288": {"type": "Concrete", "module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991610832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991284720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991284944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999570880"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991610832": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413991284720": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413991284944": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413999570880": {"type": "Union", "items": [{"nodeId": "140414092547392"}, {"nodeId": "N"}]}, "140413991216048": {"type": "Concrete", "module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966271200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966271648"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140413999571104"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140413991378992"}]}], "isAbstract": false}, "140413966271200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987080224"}], "returnType": {"nodeId": "140413987080336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987080224": {"type": "Tuple", "items": [{"nodeId": "140413991274304"}, {"nodeId": "140413991281696"}]}, "140413991274304": {"type": "TypeAlias", "target": {"nodeId": "140413999572112"}}, "140413999572112": {"type": "Union", "items": [{"nodeId": "140414017049696"}, {"nodeId": "N"}]}, "140414017049696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414092554112": {"type": "Concrete", "module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050344896"}, "name": "__anext__"}, {"kind": "Variable", "name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975355104"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991729440"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050346688"}, "name": "aclose"}, {"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975354656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975356000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975356224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975356448"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}], "bases": [{"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414092554112"}]}], "isAbstract": true}, "140414050344896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092554112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092554112": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092554112", "variance": "COVARIANT"}, ".2.140414092554112": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092554112", "variance": "CONTRAVARIANT"}, "140413975355104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}, {"nodeId": ".2.140414092554112"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092554112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991729440": {"type": "Overloaded", "items": [{"nodeId": "140414050345792"}, {"nodeId": "140414050346240"}]}, "140414050345792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}, {"nodeId": "0"}, {"nodeId": "140413991878832"}, {"nodeId": "140413991878944"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092554112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991878832": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413991878944": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414050346240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413991879056"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092554112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991879056": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414050346688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975354656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975356000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "140413999694224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975356224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "140413999699600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975356448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414092554112"}, {"nodeId": ".2.140414092554112"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092553776": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975352864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050344448"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140414092553776"}], "bases": [{"nodeId": "140414092553440", "args": [{"nodeId": ".1.140414092553776"}]}], "protocolMembers": ["__aiter__", "__anext__"]}, "140413975352864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414092553776"}]}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414092553776"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092553776": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092553776", "variance": "COVARIANT"}, "140414050344448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414092553776"}]}], "returnType": {"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414092553776"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092553440": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975350176"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092553440"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__aiter__"]}, "140413975350176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553440", "args": [{"nodeId": ".1.140414092553440"}]}], "returnType": {"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414092553440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092553440": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092553440", "variance": "COVARIANT"}, "140413991281696": {"type": "TypeAlias", "target": {"nodeId": "140413999572112"}}, "140413987080336": {"type": "TypeAlias", "target": {"nodeId": "140413999572112"}}, "140413966271648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987080448"}], "returnType": {"nodeId": "140413987080560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987080448": {"type": "Tuple", "items": [{"nodeId": "140413991274304"}, {"nodeId": "140413991281696"}]}, "140413987080560": {"type": "TypeAlias", "target": {"nodeId": "140413999572112"}}, "140413999571104": {"type": "TypeAlias", "target": {"nodeId": "140413999572112"}}, "140413991378992": {"type": "Union", "items": [{"nodeId": "140413974570016"}, {"nodeId": "N"}]}, "140413974570016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092554112", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413999693888": {"type": "Concrete", "module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975254560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999694224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016348320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970590048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970281664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075848288"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075848736"}, "name": "__call__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991888352"}, "items": [{"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413975254560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}], "returnType": {"nodeId": "140413991890816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991890816": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414017158640"}]}, {"nodeId": "N"}]}, "140414016348320": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140413970590048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970281664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075848288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}, {"nodeId": "140413999694224"}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "140413991891264"}, {"nodeId": "140413991891376"}, {"nodeId": "140413991891488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}, "140413991891264": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991891376": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}, {"nodeId": "N"}]}, "140413991891488": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414017158640"}]}, {"nodeId": "N"}]}, "140414075848736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140413991888352": {"type": "Overloaded", "items": [{"nodeId": "140414075849184"}, {"nodeId": "140414075849632"}]}, "140414075849184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}, {"nodeId": "N"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "140413999693888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140414075849632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999693888"}, {"nodeId": "140414092547392"}, {"nodeId": "140413991892048"}], "returnType": {"nodeId": "140413999697248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140413991892048": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "N"}]}, "140413999697248": {"type": "Concrete", "module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970939040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970939488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971071040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971071264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971071488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971071712"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075099104"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075099552"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413970939040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140413986933104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986933104": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414017158640"}]}, {"nodeId": "N"}]}, "140413970939488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140413986933328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986933328": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140413971071040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140413999696912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999696912": {"type": "Concrete", "module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075095968"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414075095968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696912"}, {"nodeId": "140413986932880"}, {"nodeId": "140413986932992"}], "returnType": {"nodeId": "140413999693888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140413986932880": {"type": "Union", "items": [{"nodeId": "140414092547392"}, {"nodeId": "N"}]}, "140413986932992": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "N"}]}, "140413971071264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971071488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971071712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075099104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}, {"nodeId": "140414020821152"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414020821152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414075099552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140413999694896": {"type": "Concrete", "module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075524640"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075525088"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075525536"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075525984"}, "name": "__delattr__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414075524640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694896"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140414075525088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694896"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075525536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694896"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414075525984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999694896"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413999695904": {"type": "Concrete", "module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970928288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075529120"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075529568"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075530016"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991889024"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}], "bases": [{"nodeId": "140414092552432", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}], "isAbstract": false}, "140413970928288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}], "returnType": {"nodeId": "140413991893952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999695904": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999695904", "variance": "COVARIANT"}, ".2.140413999695904": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999695904", "variance": "CONTRAVARIANT"}, ".3.140413999695904": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999695904", "variance": "COVARIANT"}, "140413991893952": {"type": "Union", "items": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414075529120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}], "returnType": {"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414075529568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}], "returnType": {"nodeId": ".1.140413999695904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075530016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}, {"nodeId": ".2.140413999695904"}], "returnType": {"nodeId": ".1.140413999695904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991889024": {"type": "Overloaded", "items": [{"nodeId": "140414075530464"}, {"nodeId": "140414075530912"}]}, "140414075530464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}, {"nodeId": "0"}, {"nodeId": "140413991894176"}, {"nodeId": "140413991894288"}], "returnType": {"nodeId": ".1.140413999695904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991894176": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413991894288": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414075530912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695904", "args": [{"nodeId": ".1.140413999695904"}, {"nodeId": ".2.140413999695904"}, {"nodeId": ".3.140413999695904"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413991894400"}], "returnType": {"nodeId": ".1.140413999695904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991894400": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413999696240": {"type": "Concrete", "module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970932320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075531808"}, "name": "__aiter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075532256"}, "name": "__anext__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075532704"}, "name": "asend"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991891936"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075534048"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075534496"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}], "bases": [{"nodeId": "140414092554112", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}], "isAbstract": false}, "140413970932320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}], "returnType": {"nodeId": "140413991894624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999696240": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999696240", "variance": "COVARIANT"}, ".2.140413999696240": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999696240", "variance": "CONTRAVARIANT"}, "140413991894624": {"type": "Union", "items": [{"nodeId": "140414092552768", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414075531808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}], "returnType": {"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075532256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140413999696240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092553104": {"type": "Concrete", "module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975347264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975347712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975347936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975348160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975348384"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991729328"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975348608"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}], "bases": [{"nodeId": "140414092552768", "args": [{"nodeId": ".3.140414092553104"}]}], "isAbstract": true}, "140413975347264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}], "returnType": {"nodeId": "140413991730560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092553104": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092553104", "variance": "COVARIANT"}, ".2.140414092553104": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092553104", "variance": "CONTRAVARIANT"}, ".3.140414092553104": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092553104", "variance": "COVARIANT"}, "140413991730560": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413975347712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}], "returnType": {"nodeId": "140413999694224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975347936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}], "returnType": {"nodeId": "140413999699600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975348160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975348384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}, {"nodeId": ".2.140414092553104"}], "returnType": {"nodeId": ".1.140414092553104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991729328": {"type": "Overloaded", "items": [{"nodeId": "140414050342208"}, {"nodeId": "140414050342656"}]}, "140414050342208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}, {"nodeId": "0"}, {"nodeId": "140413991730784"}, {"nodeId": "140413991730896"}], "returnType": {"nodeId": ".1.140414092553104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991730784": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413991730896": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414050342656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413991731008"}], "returnType": {"nodeId": ".1.140414092553104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413991731008": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413975348608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140414092553104"}, {"nodeId": ".2.140414092553104"}, {"nodeId": ".3.140414092553104"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075532704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}, {"nodeId": ".2.140413999696240"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140413999696240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413991891936": {"type": "Overloaded", "items": [{"nodeId": "140414020822944"}, {"nodeId": "140414075533152"}]}, "140414020822944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}, {"nodeId": "0"}, {"nodeId": "140413986931088"}, {"nodeId": "140413986931200"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140413999696240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413986931088": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413986931200": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414075533152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413986931424"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140413999696240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413986931424": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414075534048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696240", "args": [{"nodeId": ".1.140413999696240"}, {"nodeId": ".2.140413999696240"}]}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075534496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140413999696576": {"type": "Concrete", "module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970935680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075093728"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075094176"}, "name": "__await__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075094624"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413986931312"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}], "bases": [{"nodeId": "140414092553104", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}], "isAbstract": false}, "140413970935680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}], "returnType": {"nodeId": "140413986932208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999696576": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999696576", "variance": "COVARIANT"}, ".2.140413999696576": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999696576", "variance": "CONTRAVARIANT"}, ".3.140413999696576": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999696576", "variance": "COVARIANT"}, "140413986932208": {"type": "Union", "items": [{"nodeId": "140414016327008", "args": [{"nodeId": "140413986932096"}]}, {"nodeId": "N"}]}, "140413986932096": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414075093728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075094176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140413999696576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075094624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}, {"nodeId": ".2.140413999696576"}], "returnType": {"nodeId": ".1.140413999696576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413986931312": {"type": "Overloaded", "items": [{"nodeId": "140414075095072"}, {"nodeId": "140414075095520"}]}, "140414075095072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}, {"nodeId": "0"}, {"nodeId": "140413986932544"}, {"nodeId": "140413986932656"}], "returnType": {"nodeId": ".1.140413999696576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413986932544": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "140414092547392"}]}, "140413986932656": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414075095520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999696576", "args": [{"nodeId": ".1.140413999696576"}, {"nodeId": ".2.140413999696576"}, {"nodeId": ".3.140413999696576"}]}, {"nodeId": "140414016331712"}, {"nodeId": "N"}, {"nodeId": "140413986932768"}], "returnType": {"nodeId": ".1.140413999696576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140413986932768": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413999697584": {"type": "Concrete", "module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971072832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971073280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971073504"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075101344"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971072832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697584"}], "returnType": {"nodeId": "140413986934000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413986934000": {"type": "Union", "items": [{"nodeId": "140414092547392"}, {"nodeId": "140413999695568"}]}, "140413971073280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697584"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971073504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697584"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075101344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140413999697920": {"type": "Concrete", "module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971074624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971075296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971075520"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075103136"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075103584"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971074624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697920"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971075296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697920"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971075520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697920"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075103136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414075103584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999697920"}, {"nodeId": "A"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413999698256": {"type": "Concrete", "module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971076640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971077088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971077312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971077536"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075105824"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075106272"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075106720"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971076640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971077088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971077312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971077536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075105824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414075106272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414075106720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698256"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413999698592": {"type": "Concrete", "module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971079552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971080000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971080224"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075108512"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075108960"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971079552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698592"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971080000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698592"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971080224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698592"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075108512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698592"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414075108960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698592"}, {"nodeId": "A"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140413999698928": {"type": "Concrete", "module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971081344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971081792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971082016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070982240"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070982688"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971081344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698928"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971081792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698928"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971082016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698928"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414070982240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698928"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140414070982688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999698928"}, {"nodeId": "A"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140413999699936": {"type": "Concrete", "module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971153632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971153856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971154080"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070989856"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070990304"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070990752"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971153632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971153856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971154080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414070989856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}, {"nodeId": "A"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414070990304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414070990752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999699936"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413999700272": {"type": "Concrete", "module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971155200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971155648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413971155872"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070992544"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070992992"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414070993440"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413971155200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971155648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413971155872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}], "returnType": {"nodeId": "140414016323648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414070992544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}, {"nodeId": "A"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414070992992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414070993440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700272"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413999700944": {"type": "Concrete", "module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071081888"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414071081888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999700944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414000223552": {"type": "Protocol", "module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071086592"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414071086592": {"type": "Function", "typeVars": [".-1.140414071086592"], "argTypes": [{"nodeId": "140414000223552"}, {"nodeId": ".-1.140414071086592"}], "returnType": {"nodeId": ".-1.140414071086592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414071086592": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414071086592", "variance": "INVARIANT"}, "140414000223888": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071087040"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140414000223888"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__next__"]}, "140414071087040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000223888", "args": [{"nodeId": ".1.140414000223888"}]}], "returnType": {"nodeId": ".1.140414000223888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000223888": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000223888", "variance": "COVARIANT"}, "140414000224224": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071087488"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140414000224224"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__anext__"]}, "140414071087488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000224224", "args": [{"nodeId": ".1.140414000224224"}]}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".1.140414000224224"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000224224": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000224224", "variance": "COVARIANT"}, "140414000225232": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071088832"}, "name": "__le__"}], "typeVars": [{"nodeId": ".1.140414000225232"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__le__"]}, "140414071088832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000225232", "args": [{"nodeId": ".1.140414000225232"}]}, {"nodeId": ".1.140414000225232"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000225232": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000225232", "variance": "CONTRAVARIANT"}, "140414000225568": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071089280"}, "name": "__ge__"}], "typeVars": [{"nodeId": ".1.140414000225568"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__ge__"]}, "140414071089280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000225568", "args": [{"nodeId": ".1.140414000225568"}]}, {"nodeId": ".1.140414000225568"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000225568": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000225568", "variance": "CONTRAVARIANT"}, "140414000225904": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000224560", "args": [{"nodeId": "A"}]}, {"nodeId": "140414000224896", "args": [{"nodeId": "A"}]}, {"nodeId": "140414000225232", "args": [{"nodeId": "A"}]}, {"nodeId": "140414000225568", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}, "140414000226912": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071090624"}, "name": "__sub__"}], "typeVars": [{"nodeId": ".1.140414000226912"}, {"nodeId": ".2.140414000226912"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__sub__"]}, "140414071090624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000226912", "args": [{"nodeId": ".1.140414000226912"}, {"nodeId": ".2.140414000226912"}]}, {"nodeId": ".1.140414000226912"}], "returnType": {"nodeId": ".2.140414000226912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000226912": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226912", "variance": "CONTRAVARIANT"}, ".2.140414000226912": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000226912", "variance": "COVARIANT"}, "140414000227248": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071091072"}, "name": "__rsub__"}], "typeVars": [{"nodeId": ".1.140414000227248"}, {"nodeId": ".2.140414000227248"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__rsub__"]}, "140414071091072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000227248", "args": [{"nodeId": ".1.140414000227248"}, {"nodeId": ".2.140414000227248"}]}, {"nodeId": ".1.140414000227248"}], "returnType": {"nodeId": ".2.140414000227248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000227248": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227248", "variance": "CONTRAVARIANT"}, ".2.140414000227248": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227248", "variance": "COVARIANT"}, "140414000227584": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071091520"}, "name": "__divmod__"}], "typeVars": [{"nodeId": ".1.140414000227584"}, {"nodeId": ".2.140414000227584"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__divmod__"]}, "140414071091520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000227584", "args": [{"nodeId": ".1.140414000227584"}, {"nodeId": ".2.140414000227584"}]}, {"nodeId": ".1.140414000227584"}], "returnType": {"nodeId": ".2.140414000227584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000227584": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227584", "variance": "CONTRAVARIANT"}, ".2.140414000227584": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227584", "variance": "COVARIANT"}, "140414000227920": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071091968"}, "name": "__rdivmod__"}], "typeVars": [{"nodeId": ".1.140414000227920"}, {"nodeId": ".2.140414000227920"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__rdivmod__"]}, "140414071091968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000227920", "args": [{"nodeId": ".1.140414000227920"}, {"nodeId": ".2.140414000227920"}]}, {"nodeId": ".1.140414000227920"}], "returnType": {"nodeId": ".2.140414000227920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140414000227920": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227920", "variance": "CONTRAVARIANT"}, ".2.140414000227920": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000227920", "variance": "COVARIANT"}, "140414000228256": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071092416"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140414000228256"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__iter__"]}, "140414071092416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000228256", "args": [{"nodeId": ".1.140414000228256"}]}], "returnType": {"nodeId": ".1.140414000228256"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414000228256": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000228256", "variance": "COVARIANT"}, "140414000228592": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071092864"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140414000228592"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__aiter__"]}, "140414071092864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000228592", "args": [{"nodeId": ".1.140414000228592"}]}], "returnType": {"nodeId": ".1.140414000228592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000228592": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000228592", "variance": "COVARIANT"}, "140414000229600": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071094656"}, "name": "items"}], "typeVars": [{"nodeId": ".1.140414000229600"}, {"nodeId": ".2.140414000229600"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["items"]}, "140414071094656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000229600", "args": [{"nodeId": ".1.140414000229600"}, {"nodeId": ".2.140414000229600"}]}], "returnType": {"nodeId": "140414092555792", "args": [{"nodeId": "140413978603840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000229600": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000229600", "variance": "COVARIANT"}, ".2.140414000229600": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000229600", "variance": "COVARIANT"}, "140413978603840": {"type": "Tuple", "items": [{"nodeId": ".1.140414000229600"}, {"nodeId": ".2.140414000229600"}]}, "140414000230272": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054908864"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054909312"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140414000230272"}, {"nodeId": ".2.140414000230272"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__contains__", "__getitem__"]}, "140414054908864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000230272", "args": [{"nodeId": ".1.140414000230272"}, {"nodeId": ".2.140414000230272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140414000230272": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000230272", "variance": "CONTRAVARIANT"}, ".2.140414000230272": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000230272", "variance": "COVARIANT"}, "140414054909312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000230272", "args": [{"nodeId": ".1.140414000230272"}, {"nodeId": ".2.140414000230272"}]}, {"nodeId": ".1.140414000230272"}], "returnType": {"nodeId": ".2.140414000230272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414000230608": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054909760"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054910208"}, "name": "__delitem__"}], "typeVars": [{"nodeId": ".1.140414000230608"}, {"nodeId": ".2.140414000230608"}], "bases": [{"nodeId": "140414000230272", "args": [{"nodeId": ".1.140414000230608"}, {"nodeId": ".2.140414000230608"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}, "140414054909760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000230608", "args": [{"nodeId": ".1.140414000230608"}, {"nodeId": ".2.140414000230608"}]}, {"nodeId": ".1.140414000230608"}, {"nodeId": ".2.140414000230608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140414000230608": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000230608", "variance": "CONTRAVARIANT"}, ".2.140414000230608": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000230608", "variance": "INVARIANT"}, "140414054910208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000230608", "args": [{"nodeId": ".1.140414000230608"}, {"nodeId": ".2.140414000230608"}]}, {"nodeId": ".1.140414000230608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414000230944": {"type": "Protocol", "module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054910656"}, "name": "fileno"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["fileno"]}, "140414054910656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000230944"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414000231616": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054911552"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140414000231616"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["readline"]}, "140414054911552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000231616", "args": [{"nodeId": ".1.140414000231616"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414000231616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140414000231616": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000231616", "variance": "COVARIANT"}, "140414000231952": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054912000"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140414000231952"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["readline"]}, "140414054912000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000231952", "args": [{"nodeId": ".1.140414000231952"}]}], "returnType": {"nodeId": ".1.140414000231952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414000231952": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000231952", "variance": "COVARIANT"}, "140414016438672": {"type": "Concrete", "module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333728"}, {"nodeId": "140414016339104"}], "isAbstract": false}, "140414016439008": {"type": "Concrete", "module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054914912"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054915360"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054915808"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054916256"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054916704"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054917152"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054917600"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054918048"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054918496"}, "name": "readable"}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414020826304"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054918944"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054919392"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054919840"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054920288"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054920736"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054921184"}, "name": "writable"}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414020825184"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054921632"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054922080"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054922528"}, "name": "__del__"}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413953919680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054923424"}, "name": "_checkClosed"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414054914912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414054915360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054915808": {"type": "Function", "typeVars": [".-1.140414054915808"], "argTypes": [{"nodeId": ".-1.140414054915808"}], "returnType": {"nodeId": ".-1.140414054915808"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414054915808": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414054915808", "variance": "INVARIANT"}, "140414054916256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140413982786384"}, {"nodeId": "140413982786496"}, {"nodeId": "140413982786608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413982786384": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413982786496": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413982786608": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414054916704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054917152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054917600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054918048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054918496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020826304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414054918944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414054919392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414054919840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054920288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054920736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140413982786720"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982786720": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414054921184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020825184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414054921632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413982786832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982786832": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414054922080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140413982786944"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982786944": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414054922528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413953919680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414054923424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439008"}, {"nodeId": "140413982787056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "140413982787056": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016439344": {"type": "Concrete", "module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414054923872"}, "name": "readall"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075978016"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075978464"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075978912"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140414016439008"}], "isAbstract": false}, "140414054923872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439344"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075978016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439344"}, {"nodeId": "140413982787168"}], "returnType": {"nodeId": "140413982787280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982787168": {"type": "TypeAlias", "target": {"nodeId": "140414021318160"}}, "140413982787280": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414075978464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439344"}, {"nodeId": "140413982787392"}], "returnType": {"nodeId": "140413982787504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982787392": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413982787504": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414075978912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439344"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413982787616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982787616": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140414016439680": {"type": "Concrete", "module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016439344"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075979360"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075979808"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075980256"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075980704"}, "name": "readinto1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075981152"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075981600"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140414016439008"}], "isAbstract": false}, "140414075979360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}], "returnType": {"nodeId": "140414016439344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075979808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}, {"nodeId": "140413982787728"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982787728": {"type": "TypeAlias", "target": {"nodeId": "140414021318160"}}, "140414075980256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}, {"nodeId": "140413982787840"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982787840": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414075980704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}, {"nodeId": "140413982787952"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982787952": {"type": "TypeAlias", "target": {"nodeId": "140414021318160"}}, "140414075981152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}, {"nodeId": "140413982788064"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982788064": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414075981600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016439680"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414016440016": {"type": "Concrete", "module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991380672"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075982048"}, "name": "__init__"}, {"kind": "Variable", "name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413953830336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075982944"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075983392"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075983840"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "140414016439344"}, {"nodeId": "140414017147552"}], "isAbstract": false}, "140413991380672": {"type": "TypeAlias", "target": {"nodeId": "140414021319168"}}, "140414021319168": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414021320176"}]}, "140414021320176": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140414008329376": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413991217056", "args": [{"nodeId": "140414017150240"}]}]}, "140413991217056": {"type": "Protocol", "module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958058080"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140413991217056"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__fspath__"]}, "140413958058080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991217056", "args": [{"nodeId": ".1.140413991217056"}]}], "returnType": {"nodeId": ".1.140413991217056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413991217056": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413991217056", "variance": "COVARIANT"}, "140414075982048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440016"}, {"nodeId": "140413982788176"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}, {"nodeId": "140413982788400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}, "140413982788176": {"type": "TypeAlias", "target": {"nodeId": "140414021319168"}}, "140413982788400": {"type": "Union", "items": [{"nodeId": "140413982788288"}, {"nodeId": "N"}]}, "140413982788288": {"type": "TypeAlias", "target": {"nodeId": "140414008638400"}}, "140414008638400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413953830336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440016"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075982944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440016"}, {"nodeId": "140413982788512"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982788512": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414075983392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440016"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414075983840": {"type": "Function", "typeVars": [".-1.140414075983840"], "argTypes": [{"nodeId": ".-1.140414075983840"}], "returnType": {"nodeId": ".-1.140414075983840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414075983840": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075983840", "variance": "INVARIANT"}, "140414017147552": {"type": "Concrete", "module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970413856"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414017147216", "args": [{"nodeId": "140414017150240"}]}], "isAbstract": true}, "140413970413856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147552"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414017147216": {"type": "Concrete", "module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970282112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970283232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970284128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970399744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970400416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970401088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970401760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970402432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970403104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970403776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970404448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970405120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970405792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970406464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970407136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970407808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970408480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970409152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970409824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970410496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970411392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970412512"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414017147216"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017147216"}]}], "isAbstract": true}, "140413970282112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017147216": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017147216", "variance": "INVARIANT"}, "140413970283232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970284128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970399744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970400416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970401088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970401760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970402432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414017147216"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413970403104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970403776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414017147216"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413970404448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017147216"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413970405120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140413970405792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970406464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970407136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140413991886448"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413991886448": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413970407808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970408480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": ".1.140414017147216"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413970409152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413970409824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": ".1.140414017147216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970410496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017147216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413970411392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}], "returnType": {"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413970412512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140414017147216"}]}, {"nodeId": "140413991886560"}, {"nodeId": "140413991886672"}, {"nodeId": "140413991886784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413991886560": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413991886672": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413991886784": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414016440352": {"type": "Concrete", "module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075984288"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075984736"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075985184"}, "name": "getvalue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075985632"}, "name": "getbuffer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075986080"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140414016439680"}, {"nodeId": "140414017147552"}], "isAbstract": false}, "140414075984288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440352"}, {"nodeId": "140413982788624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}, "140413982788624": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414075984736": {"type": "Function", "typeVars": [".-1.140414075984736"], "argTypes": [{"nodeId": ".-1.140414075984736"}], "returnType": {"nodeId": ".-1.140414075984736"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414075984736": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075984736", "variance": "INVARIANT"}, "140414075985184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440352"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075985632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440352"}], "returnType": {"nodeId": "140414016326336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075986080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440352"}, {"nodeId": "140413982788736"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982788736": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016440688": {"type": "Concrete", "module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075986528"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075986976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075987424"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140414016439680"}, {"nodeId": "140414017147552"}], "isAbstract": false}, "140414075986528": {"type": "Function", "typeVars": [".-1.140414075986528"], "argTypes": [{"nodeId": ".-1.140414075986528"}], "returnType": {"nodeId": ".-1.140414075986528"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414075986528": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075986528", "variance": "INVARIANT"}, "140414075986976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440688"}, {"nodeId": "140414016439344"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140414075987424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016440688"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414016441024": {"type": "Concrete", "module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075987872"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075988320"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075988768"}, "name": "write"}], "typeVars": [], "bases": [{"nodeId": "140414016439680"}, {"nodeId": "140414017147552"}], "isAbstract": false}, "140414075987872": {"type": "Function", "typeVars": [".-1.140414075987872"], "argTypes": [{"nodeId": ".-1.140414075987872"}], "returnType": {"nodeId": ".-1.140414075987872"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414075987872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075987872", "variance": "INVARIANT"}, "140414075988320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016441024"}, {"nodeId": "140414016439344"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140414075988768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016441024"}, {"nodeId": "140413982788848"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982788848": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414016441360": {"type": "Concrete", "module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075989216"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075989664"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140414016440688"}, {"nodeId": "140414016441024"}], "isAbstract": false}, "140414075989216": {"type": "Function", "typeVars": [".-1.140414075989216"], "argTypes": [{"nodeId": ".-1.140414075989216"}], "returnType": {"nodeId": ".-1.140414075989216"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414075989216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414075989216", "variance": "INVARIANT"}, "140414075989664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016441360"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414016441696": {"type": "Concrete", "module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075990112"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075990560"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140414016439680"}], "isAbstract": false}, "140414075990112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016441696"}, {"nodeId": "140414016439344"}, {"nodeId": "140414016439344"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}, "140414075990560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016441696"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414016442032": {"type": "Concrete", "module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991716784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991380336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075991008"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075991456"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075991904"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075992352"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075992800"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075993248"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414075993696"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071161120"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140414016439008"}], "isAbstract": false}, "140413991716784": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991380336": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414075991008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414075991456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075991904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414075992352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414075992800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414075993248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414075993696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414071161120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442032"}, {"nodeId": "140413982788960"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413982788960": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414016442368": {"type": "Concrete", "module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071161568"}, "name": "__init__"}, {"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413954339584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413954338912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413954338688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413954341152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071163808"}, "name": "reconfigure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071164256"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071164704"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071165152"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071165600"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071166048"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071166496"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071166944"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140414016442032"}, {"nodeId": "140414017147888"}], "isAbstract": false}, "140414071161568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140414017147216", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413982789072"}, {"nodeId": "140413982789184"}, {"nodeId": "140413982789296"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "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"]}, "140413982789072": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982789184": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982789296": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413954339584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413954338912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413954338688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413954341152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071163808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140413982789408"}, {"nodeId": "140413982789520"}, {"nodeId": "140413982789632"}, {"nodeId": "140413982789744"}, {"nodeId": "140413982789856"}], "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"]}, "140413982789408": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982789520": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982789632": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982789744": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413982789856": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414071164256": {"type": "Function", "typeVars": [".-1.140414071164256"], "argTypes": [{"nodeId": ".-1.140414071164256"}], "returnType": {"nodeId": ".-1.140414071164256"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414071164256": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414071164256", "variance": "INVARIANT"}, "140414071164704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414071165152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414071165600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414071166048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414071166496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414071166944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442368"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140414017147888": {"type": "Concrete", "module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970579520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970579968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970580192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970580416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413970580640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970580864"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414017147216", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": true}, "140413970579520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970579968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970580192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "140413991886896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991886896": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413970580416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970580640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413970580864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017147888"}], "returnType": {"nodeId": "140414017147888"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414016442704": {"type": "Concrete", "module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071167392"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071167840"}, "name": "getvalue"}], "typeVars": [], "bases": [{"nodeId": "140414016442368"}], "isAbstract": false}, "140414071167392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442704"}, {"nodeId": "140413982789968"}, {"nodeId": "140413982790080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}, "140413982789968": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413982790080": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414071167840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016442704"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991491552": {"type": "Concrete", "module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071168288"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071168736"}, "name": "decode"}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949207808"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071169632"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140414000222544"}], "isAbstract": false}, "140414071168288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491552"}, {"nodeId": "140413982790192"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}, "140413982790192": {"type": "Union", "items": [{"nodeId": "140414000222544"}, {"nodeId": "N"}]}, "140414000222544": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025310368"}, "name": "__init__"}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413936740480"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025311264"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025311712"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025312160"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": true}, "140414025310368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222544"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140413936740480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222544"}, {"nodeId": "140413978597344"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140413978597344": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414025311264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025311712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222544"}], "returnType": {"nodeId": "140413978597568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978597568": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414025312160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222544"}, {"nodeId": "140413978597792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140413978597792": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414071168736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491552"}, {"nodeId": "140413982790416"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140413982790416": {"type": "Union", "items": [{"nodeId": "140413982790304"}, {"nodeId": "140414016326000"}]}, "140413982790304": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413949207808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491552"}], "returnType": {"nodeId": "140413982790528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982790528": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414071169632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491552"}, {"nodeId": "140413982790752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413982790752": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414017157968": {"type": "Concrete", "module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999564832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999565056"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049947872"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413974865600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413974866720"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999564832": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413999565056": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140414049947872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157968"}, {"nodeId": "140414016326000"}, {"nodeId": "140413991717904"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413991717568"}], "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"]}, "140413991717904": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140414016326000"}]}, "140413991717568": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974865600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157968"}], "returnType": {"nodeId": "140414092549072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092549072": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092549744"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050156608"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414092549744": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016353808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050157504"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975152672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413975153120"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050159744"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050160192"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016353808": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414050157504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549744"}, {"nodeId": "140414016326000"}, {"nodeId": "140413991719248"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}, "140413991719248": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413975152672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549744"}], "returnType": {"nodeId": "140414092549072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413975153120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549744"}], "returnType": {"nodeId": "140414092549408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092549408": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092549744"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050157056"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414050157056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549408"}, {"nodeId": "140414092549744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140414050159744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092548736": {"type": "Concrete", "module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071172992"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071173440"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071173888"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414071172992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071173440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071173888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050160192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050156608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092549072"}, {"nodeId": "140414092549744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140413974866720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157968"}], "returnType": {"nodeId": "140414092549408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092548400": {"type": "Concrete", "module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016344848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071171200"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071171648"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071172096"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016344848": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414071171200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548400"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}, {"nodeId": "140413991719360"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "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"]}, "140413991719360": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414071171648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548400"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414071172096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092548400"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092550080": {"type": "Concrete", "module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050160640"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050161088"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050161536"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050161984"}, "name": "__ror__"}, {"kind": "Variable", "name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016323648"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414050160640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092550080"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}, "140414050161088": {"type": "Function", "typeVars": [".-1.140414050161088"], "argTypes": [{"nodeId": "140414092550080"}, {"nodeId": ".-1.140414050161088"}], "returnType": {"nodeId": ".-1.140414050161088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, ".-1.140414050161088": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050161088", "variance": "INVARIANT"}, "140414050161536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092550080"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050161984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092550080"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092548736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414092550416": {"type": "Concrete", "module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050163776"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414050163776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092550416"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414017142848": {"type": "Concrete", "module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016976400"}], "isAbstract": false}, "140414016976400": {"type": "Concrete", "module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028628480"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028628928"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028629376"}, "name": "__subclasscheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028629824"}, "name": "_dump_registry"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028630272"}, "name": "register"}], "typeVars": [], "bases": [{"nodeId": "140414016323648"}], "isAbstract": false}, "140414028628480": {"type": "Function", "typeVars": [".-1.140414028628480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414028628480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}, ".-1.140414028628480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028628480", "variance": "INVARIANT"}, "140414028628928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016976400"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}, "140414028629376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016976400"}, {"nodeId": "140414016323648"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140414028629824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016976400"}, {"nodeId": "140413978603392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}, "140413978603392": {"type": "Union", "items": [{"nodeId": "140414000232288", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414028630272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016976400"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140414017144528": {"type": "Protocol", "module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975162080"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__index__"]}, "140413975162080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017144528"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414092550752": {"type": "Protocol", "module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975163424"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414092550752"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__abs__"]}, "140413975163424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092550752", "args": [{"nodeId": ".1.140414092550752"}]}], "returnType": {"nodeId": ".1.140414092550752"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414092550752": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092550752", "variance": "COVARIANT"}, "140414092551088": {"type": "Protocol", "module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991550336"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}], "typeVars": [{"nodeId": ".1.140414092551088"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__round__"]}, "140413991550336": {"type": "Overloaded", "items": [{"nodeId": "140414050167360"}, {"nodeId": "140414050167808"}]}, "140414050167360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551088", "args": [{"nodeId": ".1.140414092551088"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414092551088": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414092551088", "variance": "COVARIANT"}, "140414050167808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551088", "args": [{"nodeId": ".1.140414092551088"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414092551088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414017145200": {"type": "Protocol", "module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413975251200"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__hash__"]}, "140413975251200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017145200"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414017145536": {"type": "Concrete", "module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140414017145536"}, {"nodeId": ".2.140414017145536"}, {"nodeId": ".3.140414017145536"}, {"nodeId": ".4.140414017145536"}], "bases": [{"nodeId": "140414092552768", "args": [{"nodeId": ".3.140414017145536"}]}, {"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414017145536"}, {"nodeId": ".2.140414017145536"}, {"nodeId": ".3.140414017145536"}]}], "isAbstract": true}, ".1.140414017145536": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017145536", "variance": "COVARIANT"}, ".2.140414017145536": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017145536", "variance": "CONTRAVARIANT"}, ".3.140414017145536": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017145536", "variance": "COVARIANT"}, ".4.140414017145536": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017145536", "variance": "INVARIANT"}, "140414017148560": {"type": "Concrete", "module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991886112"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413970583552"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050869632"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050870528"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140413991886112": {"type": "Overloaded", "items": [{"nodeId": "140414050868288"}, {"nodeId": "140414050868736"}]}, "140414050868288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148560"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413991889360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140413991889360": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "140414050868736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148560"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140413970583552": {"type": "Function", "typeVars": [".-1.140413970583552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140413970583552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140413970583552": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413970583552", "variance": "INVARIANT"}, "140414050869632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148560"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050870528": {"type": "Function", "typeVars": [".-1.140414050870528"], "argTypes": [{"nodeId": ".-1.140414050870528"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414050870528"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140414050870528": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050870528", "variance": "INVARIANT"}, "140414017148896": {"type": "Concrete", "module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050870976"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050871424"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050871872"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050872320"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050872768"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050873216"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050873664"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050874112"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050874560"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050875008"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}], "isAbstract": true}, "140414050870976": {"type": "Function", "typeVars": [".-1.140414050870976"], "argTypes": [{"nodeId": ".-1.140414050870976"}], "returnType": {"nodeId": ".-1.140414050870976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414050870976": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050870976", "variance": "INVARIANT"}, "140414050871424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148896"}, {"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140414050871872": {"type": "Function", "typeVars": [".-1.140414050871872"], "argTypes": [{"nodeId": "140414017148896"}, {"nodeId": "0"}, {"nodeId": ".-1.140414050871872"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140414050871872": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050871872", "variance": "INVARIANT"}, "140414050872320": {"type": "Function", "typeVars": [".-1.140414050872320"], "argTypes": [{"nodeId": ".-1.140414050872320"}, {"nodeId": ".-1.140414050872320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414050872320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050872320", "variance": "INVARIANT"}, "140414050872768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148896"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414050873216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148896"}], "returnType": {"nodeId": "140414017149904", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050873664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148896"}], "returnType": {"nodeId": "140414017149232", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050874112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017148896"}], "returnType": {"nodeId": "140414017149568", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414050874560": {"type": "Function", "typeVars": [".-1.140414050874560"], "argTypes": [{"nodeId": ".-1.140414050874560"}, {"nodeId": ".-1.140414050874560"}], "returnType": {"nodeId": ".-1.140414050874560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050874560": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050874560", "variance": "INVARIANT"}, "140414050875008": {"type": "Function", "typeVars": [".-1.140414050875008"], "argTypes": [{"nodeId": ".-1.140414050875008"}, {"nodeId": ".-1.140414050875008"}], "returnType": {"nodeId": ".-1.140414050875008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414050875008": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414050875008", "variance": "INVARIANT"}, "140414092557136": {"type": "Concrete", "module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999694224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414004608272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414004607712"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050875456"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414050876352"}, "name": "_evaluate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045782080"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414004608272": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414004607712": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414050875456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557136"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}, {"nodeId": "140413991890032"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}, "140413991890032": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414050876352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557136"}, {"nodeId": "140413991890256"}, {"nodeId": "140413991890480"}, {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140413991890704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}, "140413991890256": {"type": "Union", "items": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140413991890480": {"type": "Union", "items": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140413991890704": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414045782080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092557136"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414017156288": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045784992"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045785440"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045785888"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414045784992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156288"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414045785440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156288"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017156288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414045785888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156288"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017156288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414017156624": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017151248", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045787680"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045788128"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045788576"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045789024"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045789472"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045789920"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045790368"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045790816"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045791264"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045791712"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}], "isAbstract": true}, "140414045787680": {"type": "Function", "typeVars": [".-1.140414045787680"], "argTypes": [{"nodeId": ".-1.140414045787680"}], "returnType": {"nodeId": ".-1.140414045787680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414045787680": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414045787680", "variance": "INVARIANT"}, "140414045788128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156624"}, {"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140414045788576": {"type": "Function", "typeVars": [".-1.140414045788576"], "argTypes": [{"nodeId": "140414017156624"}, {"nodeId": "0"}, {"nodeId": ".-1.140414045788576"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140414045788576": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414045788576", "variance": "INVARIANT"}, "140414045789024": {"type": "Function", "typeVars": [".-1.140414045789024"], "argTypes": [{"nodeId": ".-1.140414045789024"}, {"nodeId": ".-1.140414045789024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414045789024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414045789024", "variance": "INVARIANT"}, "140414045789472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156624"}], "returnType": {"nodeId": "140414017149904", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414045789920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156624"}], "returnType": {"nodeId": "140414017149232", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414045790368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156624"}], "returnType": {"nodeId": "140414017149568", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414045790816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156624"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414045791264": {"type": "Function", "typeVars": [".-1.140414045791264"], "argTypes": [{"nodeId": ".-1.140414045791264"}, {"nodeId": ".-1.140414045791264"}], "returnType": {"nodeId": ".-1.140414045791264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414045791264": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414045791264", "variance": "INVARIANT"}, "140414045791712": {"type": "Function", "typeVars": [".-1.140414045791712"], "argTypes": [{"nodeId": ".-1.140414045791712"}, {"nodeId": ".-1.140414045791712"}], "returnType": {"nodeId": ".-1.140414045791712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414045791712": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414045791712", "variance": "INVARIANT"}, "140414017157296": {"type": "Concrete", "module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413991548208"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413974863360"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049944736"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049945632"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140413991548208": {"type": "Overloaded", "items": [{"nodeId": "140414045797984"}, {"nodeId": "140414049943840"}]}, "140414045797984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157296"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413991728768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140413991728768": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "140414049943840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157296"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140413974863360": {"type": "Function", "typeVars": [".-1.140413974863360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140413974863360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140413974863360": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413974863360", "variance": "INVARIANT"}, "140414049944736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157296"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414049945632": {"type": "Function", "typeVars": [".-1.140414049945632"], "argTypes": [{"nodeId": ".-1.140414049945632"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414049945632"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140414049945632": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049945632", "variance": "INVARIANT"}, "140414017157632": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999563712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999564496"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049946080"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049946528"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049946976"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999563712": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413999564496": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414049946080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157632"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}, {"nodeId": "140413991720480"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413991724624"}, {"nodeId": "140414092547728"}], "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"]}, "140413991720480": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413991724624": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414049946528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157632"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017156288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414049946976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017157632"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414017156288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414017158304": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999565280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049949216"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049949664"}, "name": "__iter__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999565280": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414049949216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017158304"}, {"nodeId": "140414016326000"}, {"nodeId": "140413991725408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}, "140413991725408": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414049949664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017158304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414017153264": {"type": "Concrete", "module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983459136"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049955040"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049955488"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049955936"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049956384"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049956832"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049957280"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049954592"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049957728"}, "name": "__copy__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983459248"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414049959520"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046142752"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983459920"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}], "bases": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}], "isAbstract": false}, ".1.140414017153264": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017153264", "variance": "INVARIANT"}, ".2.140414017153264": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017153264", "variance": "INVARIANT"}, "140413983459136": {"type": "Overloaded", "items": [{"nodeId": "140414049951904"}, {"nodeId": "140414025643200"}, {"nodeId": "140414049952800"}, {"nodeId": "140414049952352"}, {"nodeId": "140414049953696"}, {"nodeId": "140414049953248"}, {"nodeId": "140414049954144"}]}, "140414049951904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414025643200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "N"}, {"nodeId": ".2.140414017153264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414049952800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414049952352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": ".2.140414017153264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414049953696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413983460144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413983460144": {"type": "Tuple", "items": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, "140414049953248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413983460368"}]}, {"nodeId": ".2.140414017153264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140413983460368": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414017153264"}]}, "140414049954144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414049955040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414049955488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": ".1.140414017153264"}], "returnType": {"nodeId": ".2.140414017153264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414049955936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414049956384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": ".1.140414017153264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414049956832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017153264"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414049957280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414049954592": {"type": "Function", "typeVars": [".-1.140414049954592"], "argTypes": [{"nodeId": ".-1.140414049954592"}], "returnType": {"nodeId": ".-1.140414049954592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414049954592": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049954592", "variance": "INVARIANT"}, "140414049957728": {"type": "Function", "typeVars": [".-1.140414049957728"], "argTypes": [{"nodeId": ".-1.140414049957728"}], "returnType": {"nodeId": ".-1.140414049957728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414049957728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049957728", "variance": "INVARIANT"}, "140413983459248": {"type": "Overloaded", "items": [{"nodeId": "140414049958624"}, {"nodeId": "140414049959072"}]}, "140414049958624": {"type": "Function", "typeVars": [".-1.140414049958624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414049958624"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140414017153264", "args": [{"nodeId": ".-1.140414049958624"}, {"nodeId": "140413983460704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140414049958624": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049958624", "variance": "INVARIANT"}, "140413983460704": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414049959072": {"type": "Function", "typeVars": [".-1.140414049959072", ".-2.140414049959072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414049959072"}]}, {"nodeId": ".-2.140414049959072"}], "returnType": {"nodeId": "140414017153264", "args": [{"nodeId": ".-1.140414049959072"}, {"nodeId": ".-2.140414049959072"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140414049959072": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049959072", "variance": "INVARIANT"}, ".-2.140414049959072": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049959072", "variance": "INVARIANT"}, "140414049959520": {"type": "Function", "typeVars": [".-1.140414049959520", ".-2.140414049959520"], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140413983460816"}], "returnType": {"nodeId": "140414017153264", "args": [{"nodeId": "140413983460928"}, {"nodeId": "140413983461040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983460816": {"type": "Union", "items": [{"nodeId": "140414017153264", "args": [{"nodeId": ".-1.140414049959520"}, {"nodeId": ".-2.140414049959520"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": ".-1.140414049959520"}, {"nodeId": ".-2.140414049959520"}]}]}, ".-1.140414049959520": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049959520", "variance": "INVARIANT"}, ".-2.140414049959520": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049959520", "variance": "INVARIANT"}, "140413983460928": {"type": "Union", "items": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".-1.140414049959520"}]}, "140413983461040": {"type": "Union", "items": [{"nodeId": ".2.140414017153264"}, {"nodeId": ".-2.140414049959520"}]}, "140414046142752": {"type": "Function", "typeVars": [".-1.140414046142752", ".-2.140414046142752"], "argTypes": [{"nodeId": "140414017153264", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, {"nodeId": "140413983461152"}], "returnType": {"nodeId": "140414017153264", "args": [{"nodeId": "140413983461264"}, {"nodeId": "140413983461376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983461152": {"type": "Union", "items": [{"nodeId": "140414017153264", "args": [{"nodeId": ".-1.140414046142752"}, {"nodeId": ".-2.140414046142752"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": ".-1.140414046142752"}, {"nodeId": ".-2.140414046142752"}]}]}, ".-1.140414046142752": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046142752", "variance": "INVARIANT"}, ".-2.140414046142752": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046142752", "variance": "INVARIANT"}, "140413983461264": {"type": "Union", "items": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".-1.140414046142752"}]}, "140413983461376": {"type": "Union", "items": [{"nodeId": ".2.140414017153264"}, {"nodeId": ".-2.140414046142752"}]}, "140413983459920": {"type": "Overloaded", "items": [{"nodeId": "140414049958176"}, {"nodeId": "140414046143200"}]}, "140414049958176": {"type": "Function", "typeVars": [".-1.140414049958176"], "argTypes": [{"nodeId": ".-1.140414049958176"}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}], "returnType": {"nodeId": ".-1.140414049958176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414049958176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414049958176", "variance": "INVARIANT"}, "140414046143200": {"type": "Function", "typeVars": [".-1.140414046143200"], "argTypes": [{"nodeId": ".-1.140414046143200"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413983461712"}]}], "returnType": {"nodeId": ".-1.140414046143200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046143200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046143200", "variance": "INVARIANT"}, "140413983461712": {"type": "Tuple", "items": [{"nodeId": ".1.140414017153264"}, {"nodeId": ".2.140414017153264"}]}, "140414017153600": {"type": "Concrete", "module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017153600"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983460480"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046144992"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046145440"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046145888"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046146336"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046146784"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046147232"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046147680"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983461488"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983461824"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046149920"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046148576"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046150368"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046150816"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046151264"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046151712"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046152160"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046153056"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046153504"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046153952"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046154400"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046152608"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046154848"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046155744"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046156192"}, "name": "index"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983462384"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046157536"}, "name": "extend"}], "typeVars": [{"nodeId": ".1.140414017153600"}], "bases": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414017153600"}]}], "isAbstract": false}, ".1.140414017153600": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017153600", "variance": "INVARIANT"}, "140413983460480": {"type": "Overloaded", "items": [{"nodeId": "140414046144096"}, {"nodeId": "140414046144544"}]}, "140414046144096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}, "140414046144544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}, "140414046144992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983461936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983461936": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}]}, "140414046145440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983462048"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983462048": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}]}, "140414046145888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983462160"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983462160": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}]}, "140414046146336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983462272"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983462272": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}]}, "140414046146784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046147232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046147680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413983461488": {"type": "Overloaded", "items": [{"nodeId": "140414046148128"}, {"nodeId": "140414046143648"}]}, "140414046148128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414017153600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046143648": {"type": "Function", "typeVars": [".-1.140414046143648"], "argTypes": [{"nodeId": ".-1.140414046143648"}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": ".-1.140414046143648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046143648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046143648", "variance": "INVARIANT"}, "140413983461824": {"type": "Overloaded", "items": [{"nodeId": "140414046149024"}, {"nodeId": "140414046149472"}]}, "140414046149024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414017156960"}, {"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414046149472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414016326672"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414046149920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983462608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983462608": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140414046148576": {"type": "Function", "typeVars": [".-1.140414046148576"], "argTypes": [{"nodeId": ".-1.140414046148576"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": ".-1.140414046148576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046148576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046148576", "variance": "INVARIANT"}, "140414046150368": {"type": "Function", "typeVars": [".-1.140414046150368"], "argTypes": [{"nodeId": ".-1.140414046150368"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": ".-1.140414046150368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046150368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046150368", "variance": "INVARIANT"}, "140414046150816": {"type": "Function", "typeVars": [".-1.140414046150816"], "argTypes": [{"nodeId": ".-1.140414046150816"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": ".-1.140414046150816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046150816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046150816", "variance": "INVARIANT"}, "140414046151264": {"type": "Function", "typeVars": [".-1.140414046151264"], "argTypes": [{"nodeId": ".-1.140414046151264"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046151264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046151264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046151264", "variance": "INVARIANT"}, "140414046151712": {"type": "Function", "typeVars": [".-1.140414046151712"], "argTypes": [{"nodeId": ".-1.140414046151712"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046151712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046151712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046151712", "variance": "INVARIANT"}, "140414046152160": {"type": "Function", "typeVars": [".-1.140414046152160"], "argTypes": [{"nodeId": ".-1.140414046152160"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046152160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046152160": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046152160", "variance": "INVARIANT"}, "140414046153056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140414046153504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414016324320"}, {"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}, "140414046153952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".1.140414017153600"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}, "140414046154400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140414046152608": {"type": "Function", "typeVars": [".-1.140414046152608"], "argTypes": [{"nodeId": ".-1.140414046152608"}], "returnType": {"nodeId": ".-1.140414046152608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046152608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046152608", "variance": "INVARIANT"}, "140414046154848": {"type": "Function", "typeVars": [".-1.140414046154848"], "argTypes": [{"nodeId": ".-1.140414046154848"}], "returnType": {"nodeId": ".-1.140414046154848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046154848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046154848", "variance": "INVARIANT"}, "140414046155744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140414046156192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": ".1.140414017153600"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}, "140413983462384": {"type": "Overloaded", "items": [{"nodeId": "140414046155296"}, {"nodeId": "140414046157088"}]}, "140414046155296": {"type": "Function", "typeVars": [".-1.140414046155296"], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".-1.140414046155296"}]}, {"nodeId": "N"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140414046155296": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140413991615536"}, "def": "140414046155296", "variance": "INVARIANT"}, "140414046157088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140413983331200"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140413983331200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140414017153600"}], "returnType": {"nodeId": "140413983463056"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413983463056": {"type": "TypeAlias", "target": {"nodeId": "140414008098624"}}, "140414046157536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153600", "args": [{"nodeId": ".1.140414017153600"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017153600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140414017153936": {"type": "Concrete", "module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046157984"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046158432"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046273824"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046274272"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046274720"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046275168"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046275616"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046276064"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046276512"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046276960"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046277408"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046277856"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046278304"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046278752"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046279200"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046279648"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046280096"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046280544"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046280992"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046281440"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046281888"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046282784"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046283232"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046283680"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046284128"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046284576"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046285472"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046285920"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046286368"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046286816"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046287264"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046287712"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046288160"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046288608"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046289056"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046289504"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046388512"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046388960"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046389408"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046389856"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046390304"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046390752"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046391200"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046391648"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046392096"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046392544"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046392992"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046393440"}, "name": "lstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983462496"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046394784"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046395232"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046395680"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046396128"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046396576"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046397024"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046397472"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046397920"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046398368"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046398816"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046399264"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046399712"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046400160"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046400608"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046401056"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046401504"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046401952"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046402400"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046402848"}, "name": "zfill"}], "typeVars": [], "bases": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414017153936"}]}], "isAbstract": false}, "140414046157984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140414046158432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046273824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046274272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414016324992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046274720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140413983463168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983463168": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414046275168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983463280"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983463280": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046275616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983463392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983463392": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046276064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983463504"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983463504": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046276512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983463616"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983463616": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046276960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046277408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046277856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046278304": {"type": "Function", "typeVars": [".-1.140414046278304"], "argTypes": [{"nodeId": ".-1.140414046278304"}, {"nodeId": "140413983463728"}], "returnType": {"nodeId": ".-1.140414046278304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046278304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046278304", "variance": "INVARIANT"}, "140413983463728": {"type": "Union", "items": [{"nodeId": "140414017156960"}, {"nodeId": "140414016326672"}]}, "140414046278752": {"type": "Function", "typeVars": [".-1.140414046278752"], "argTypes": [{"nodeId": ".-1.140414046278752"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".-1.140414046278752"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414046278752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046278752", "variance": "INVARIANT"}, "140414046279200": {"type": "Function", "typeVars": [".-1.140414046279200"], "argTypes": [{"nodeId": ".-1.140414046279200"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".-1.140414046279200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414046279200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046279200", "variance": "INVARIANT"}, "140414046279648": {"type": "Function", "typeVars": [".-1.140414046279648"], "argTypes": [{"nodeId": ".-1.140414046279648"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414046279648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046279648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046279648", "variance": "INVARIANT"}, "140414046280096": {"type": "Function", "typeVars": [".-1.140414046280096"], "argTypes": [{"nodeId": ".-1.140414046280096"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414046280096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046280096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046280096", "variance": "INVARIANT"}, "140414046280544": {"type": "Function", "typeVars": [".-1.140414046280544"], "argTypes": [{"nodeId": ".-1.140414046280544"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046280544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046280544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046280544", "variance": "INVARIANT"}, "140414046280992": {"type": "Function", "typeVars": [".-1.140414046280992"], "argTypes": [{"nodeId": ".-1.140414046280992"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046280992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046280992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046280992", "variance": "INVARIANT"}, "140414046281440": {"type": "Function", "typeVars": [".-1.140414046281440"], "argTypes": [{"nodeId": ".-1.140414046281440"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414046281440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046281440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046281440", "variance": "INVARIANT"}, "140414046281888": {"type": "Function", "typeVars": [".-1.140414046281888"], "argTypes": [{"nodeId": ".-1.140414046281888"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414046281888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046281888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046281888", "variance": "INVARIANT"}, "140414046282784": {"type": "Function", "typeVars": [".-1.140414046282784"], "argTypes": [{"nodeId": ".-1.140414046282784"}], "returnType": {"nodeId": ".-1.140414046282784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046282784": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046282784", "variance": "INVARIANT"}, "140414046283232": {"type": "Function", "typeVars": [".-1.140414046283232"], "argTypes": [{"nodeId": ".-1.140414046283232"}], "returnType": {"nodeId": ".-1.140414046283232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046283232": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046283232", "variance": "INVARIANT"}, "140414046283680": {"type": "Function", "typeVars": [".-1.140414046283680"], "argTypes": [{"nodeId": ".-1.140414046283680"}, {"nodeId": "140414016324320"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414046283680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140414046283680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046283680", "variance": "INVARIANT"}, "140414046284128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983464064"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140413983464064": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046284576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983464176"}, {"nodeId": "140413983464288"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140413983464176": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983464288": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414046285472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983464400"}, {"nodeId": "140413983464512"}, {"nodeId": "140413983464624"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "140413983464400": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}]}, "140413983464512": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983464624": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414046285920": {"type": "Function", "typeVars": [".-1.140414046285920"], "argTypes": [{"nodeId": ".-1.140414046285920"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046285920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, ".-1.140414046285920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046285920", "variance": "INVARIANT"}, "140414046286368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983464736"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140413983464736": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046286816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140414046287264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140414046287712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140414046288160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046288608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046289056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046289504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046388512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046388960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046389408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046389856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046390304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046390752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046391200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046391648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046392096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140414046392544": {"type": "Function", "typeVars": [".-1.140414046392544"], "argTypes": [{"nodeId": ".-1.140414046392544"}, {"nodeId": "140414016324320"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414046392544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140414046392544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046392544", "variance": "INVARIANT"}, "140414046392992": {"type": "Function", "typeVars": [".-1.140414046392992"], "argTypes": [{"nodeId": ".-1.140414046392992"}], "returnType": {"nodeId": ".-1.140414046392992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046392992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046392992", "variance": "INVARIANT"}, "140414046393440": {"type": "Function", "typeVars": [".-1.140414046393440"], "argTypes": [{"nodeId": ".-1.140414046393440"}, {"nodeId": "140413983465296"}], "returnType": {"nodeId": ".-1.140414046393440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140414046393440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046393440", "variance": "INVARIANT"}, "140413983465296": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983462496": {"type": "Overloaded", "items": [{"nodeId": "140414046393888"}, {"nodeId": "140414046394336"}]}, "140414046393888": {"type": "Function", "typeVars": [".-1.140414046393888"], "argTypes": [{"nodeId": "140413983465632"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": ".-1.140414046393888"}]}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140413983465632": {"type": "Union", "items": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": ".-1.140414046393888"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".-1.140414046393888"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140413983465520"}, {"nodeId": ".-1.140414046393888"}]}]}, ".-1.140414046393888": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046393888", "variance": "INVARIANT"}, "140413983465520": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414046394336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140413983465744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["x", "y", "z"]}, "140413983465744": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414046394784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983465968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140413983465968": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414046395232": {"type": "Function", "typeVars": [".-1.140414046395232"], "argTypes": [{"nodeId": ".-1.140414046395232"}, {"nodeId": "140413983466080"}], "returnType": {"nodeId": ".-1.140414046395232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414046395232": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046395232", "variance": "INVARIANT"}, "140413983466080": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046395680": {"type": "Function", "typeVars": [".-1.140414046395680"], "argTypes": [{"nodeId": ".-1.140414046395680"}, {"nodeId": "140413983466192"}], "returnType": {"nodeId": ".-1.140414046395680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140414046395680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046395680", "variance": "INVARIANT"}, "140413983466192": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046396128": {"type": "Function", "typeVars": [".-1.140414046396128"], "argTypes": [{"nodeId": ".-1.140414046396128"}, {"nodeId": "140413983466304"}, {"nodeId": "140413983466416"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046396128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}, ".-1.140414046396128": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046396128", "variance": "INVARIANT"}, "140413983466304": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140413983466416": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046396576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983466528"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140413983466528": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046397024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983466640"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140413983466640": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017153936"}]}, "140414046397472": {"type": "Function", "typeVars": [".-1.140414046397472"], "argTypes": [{"nodeId": ".-1.140414046397472"}, {"nodeId": "140414016324320"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414046397472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140414046397472": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046397472", "variance": "INVARIANT"}, "140414046397920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983466976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140413983466976": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414046398368": {"type": "Function", "typeVars": [".-1.140414046398368"], "argTypes": [{"nodeId": ".-1.140414046398368"}, {"nodeId": "140413983467088"}], "returnType": {"nodeId": ".-1.140414046398368"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140414046398368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046398368", "variance": "INVARIANT"}, "140413983467088": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414046398816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983467200"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413983467200": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414046399264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983467312"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140413983467312": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414046399712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140414046400160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017153936"}, {"nodeId": "140413983467424"}, {"nodeId": "140413983467536"}, {"nodeId": "140413983467648"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "140413983467424": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}]}, "140413983467536": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983467648": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414046400608": {"type": "Function", "typeVars": [".-1.140414046400608"], "argTypes": [{"nodeId": ".-1.140414046400608"}, {"nodeId": "140413983467760"}], "returnType": {"nodeId": ".-1.140414046400608"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140414046400608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046400608", "variance": "INVARIANT"}, "140413983467760": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414046401056": {"type": "Function", "typeVars": [".-1.140414046401056"], "argTypes": [{"nodeId": ".-1.140414046401056"}], "returnType": {"nodeId": ".-1.140414046401056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046401056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046401056", "variance": "INVARIANT"}, "140414046401504": {"type": "Function", "typeVars": [".-1.140414046401504"], "argTypes": [{"nodeId": ".-1.140414046401504"}], "returnType": {"nodeId": ".-1.140414046401504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046401504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046401504", "variance": "INVARIANT"}, "140414046401952": {"type": "Function", "typeVars": [".-1.140414046401952"], "argTypes": [{"nodeId": ".-1.140414046401952"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414046401952"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, ".-1.140414046401952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046401952", "variance": "INVARIANT"}, "140414046402400": {"type": "Function", "typeVars": [".-1.140414046402400"], "argTypes": [{"nodeId": ".-1.140414046402400"}], "returnType": {"nodeId": ".-1.140414046402400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046402400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046402400", "variance": "INVARIANT"}, "140414046402848": {"type": "Function", "typeVars": [".-1.140414046402848"], "argTypes": [{"nodeId": ".-1.140414046402848"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046402848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}, ".-1.140414046402848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046402848", "variance": "INVARIANT"}, "140414017154272": {"type": "Concrete", "module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413941295904"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983462720"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046519584"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046520032"}, "name": "appendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046520480"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046520928"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046521376"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046521824"}, "name": "extendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046522272"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046522720"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046523168"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046523616"}, "name": "popleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046524064"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046524512"}, "name": "rotate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046524960"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046525408"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046525856"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046526304"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046526752"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046527200"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046527648"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046528096"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046528544"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046528992"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046529440"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046529888"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046530336"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046530784"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046531232"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046531680"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140414017154272"}], "bases": [{"nodeId": "140414092555456", "args": [{"nodeId": ".1.140414017154272"}]}], "isAbstract": false}, "140413941295904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140413983467984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414017154272": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017154272", "variance": "INVARIANT"}, "140413983467984": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983462720": {"type": "Overloaded", "items": [{"nodeId": "140414046403744"}, {"nodeId": "140414046404192"}]}, "140414046403744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140413983468208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}, "140413983468208": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414046404192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140413983468320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}, "140413983468320": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414046519584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046520032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046520480": {"type": "Function", "typeVars": [".-1.140414046520480"], "argTypes": [{"nodeId": ".-1.140414046520480"}], "returnType": {"nodeId": ".-1.140414046520480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046520480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046520480", "variance": "INVARIANT"}, "140414046520928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046521376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046521824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046522272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414016324320"}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414046522720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": ".1.140414017154272"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140414046523168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": ".1.140414017154272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046523616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": ".1.140414017154272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046524064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046524512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414046524960": {"type": "Function", "typeVars": [".-1.140414046524960"], "argTypes": [{"nodeId": ".-1.140414046524960"}], "returnType": {"nodeId": ".-1.140414046524960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046524960": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046524960", "variance": "INVARIANT"}, "140414046525408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046525856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": ".1.140414017154272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046526304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017156960"}, {"nodeId": ".1.140414017154272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414046526752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046527200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046527648": {"type": "Function", "typeVars": [".-1.140414046527648"], "argTypes": [{"nodeId": ".-1.140414046527648"}], "returnType": {"nodeId": "140413983468768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046527648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046527648", "variance": "INVARIANT"}, "140413983468768": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140413983468544"}, {"nodeId": "N"}, {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017154272"}]}]}, "140413983468544": {"type": "Tuple", "items": []}, "140414046528096": {"type": "Function", "typeVars": [".-1.140414046528096"], "argTypes": [{"nodeId": ".-1.140414046528096"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": ".-1.140414046528096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046528096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046528096", "variance": "INVARIANT"}, "140414046528544": {"type": "Function", "typeVars": [".-1.140414046528544"], "argTypes": [{"nodeId": ".-1.140414046528544"}, {"nodeId": ".-1.140414046528544"}], "returnType": {"nodeId": ".-1.140414046528544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046528544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046528544", "variance": "INVARIANT"}, "140414046528992": {"type": "Function", "typeVars": [".-1.140414046528992"], "argTypes": [{"nodeId": ".-1.140414046528992"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046528992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046528992", "variance": "INVARIANT"}, "140414046529440": {"type": "Function", "typeVars": [".-1.140414046529440"], "argTypes": [{"nodeId": ".-1.140414046529440"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414046529440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046529440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046529440", "variance": "INVARIANT"}, "140414046529888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046530336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046530784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046531232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}, {"nodeId": "140414017154272", "args": [{"nodeId": ".1.140414017154272"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046531680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140414016978080": {"type": "Concrete", "module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983465408"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046533920"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046534368"}, "name": "elements"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046534816"}, "name": "most_common"}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413941426752"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983468096"}, "items": [{"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subtract"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983468992"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046620576"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046621024"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046621472"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046621920"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046622368"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046622816"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046623264"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046623712"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046624160"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046624608"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046625056"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046625504"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046625952"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046626400"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046626848"}, "name": "total"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046627296"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046627744"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046628192"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046628640"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140414016978080"}], "bases": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016978080"}, {"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413983465408": {"type": "Overloaded", "items": [{"nodeId": "140414046532128"}, {"nodeId": "140414046532576"}, {"nodeId": "140414046533024"}, {"nodeId": "140414046533472"}]}, "140414046532128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140414016978080": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016978080", "variance": "INVARIANT"}, "140414046532576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414046533024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414016978080"}, {"nodeId": "140414016324320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046533472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046533920": {"type": "Function", "typeVars": [".-1.140414046533920"], "argTypes": [{"nodeId": ".-1.140414046533920"}], "returnType": {"nodeId": ".-1.140414046533920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046533920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046533920", "variance": "INVARIANT"}, "140414046534368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414016978080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046534816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140413983469104"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413983469328"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140413983469104": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983469328": {"type": "Tuple", "items": [{"nodeId": ".1.140414016978080"}, {"nodeId": "140414016324320"}]}, "140413941426752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140413983469552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}, "140413983469552": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983468096": {"type": "Overloaded", "items": [{"nodeId": "140414046617888"}, {"nodeId": "140414046618336"}, {"nodeId": "140414046618784"}]}, "140414046617888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414046618336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414016978080"}, {"nodeId": "140414016324320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414046618784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413983468992": {"type": "Overloaded", "items": [{"nodeId": "140414046619232"}, {"nodeId": "140414046619680"}, {"nodeId": "140414046620128"}]}, "140414046619232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".1.140414016978080"}, {"nodeId": "140414016324320"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414046619680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414046620128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "N"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140414046620576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": ".1.140414016978080"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140414046621024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046621472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046621920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046622368": {"type": "Function", "typeVars": [".-1.140414046622368"], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": ".-1.140414046622368"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": "140413983469888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046622368": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046622368", "variance": "INVARIANT"}, "140413983469888": {"type": "Union", "items": [{"nodeId": ".1.140414016978080"}, {"nodeId": ".-1.140414046622368"}]}, "140414046622816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046623264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046623712": {"type": "Function", "typeVars": [".-1.140414046623712"], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": ".-1.140414046623712"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": "140413983470000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046623712": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046623712", "variance": "INVARIANT"}, "140413983470000": {"type": "Union", "items": [{"nodeId": ".1.140414016978080"}, {"nodeId": ".-1.140414046623712"}]}, "140414046624160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046624608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046625056": {"type": "Function", "typeVars": [".-1.140414046625056"], "argTypes": [{"nodeId": ".-1.140414046625056"}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": ".-1.140414046625056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046625056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046625056", "variance": "INVARIANT"}, "140414046625504": {"type": "Function", "typeVars": [".-1.140414046625504"], "argTypes": [{"nodeId": ".-1.140414046625504"}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": ".-1.140414046625504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046625504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046625504", "variance": "INVARIANT"}, "140414046625952": {"type": "Function", "typeVars": [".-1.140414046625952"], "argTypes": [{"nodeId": ".-1.140414046625952"}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": ".-1.140414046625952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046625952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046625952", "variance": "INVARIANT"}, "140414046626400": {"type": "Function", "typeVars": [".-1.140414046626400"], "argTypes": [{"nodeId": ".-1.140414046626400"}, {"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": ".-1.140414046626400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414046626400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046626400", "variance": "INVARIANT"}, "140414046626848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414046627296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046627744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046628192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414046628640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978080", "args": [{"nodeId": ".1.140414016978080"}]}, {"nodeId": "140414016978080", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414000218176": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046629088"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414000218176"}], "bases": [{"nodeId": "140414017146544", "args": [{"nodeId": ".1.140414000218176"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414000218176"}]}], "isAbstract": false}, "140414046629088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000218176", "args": [{"nodeId": ".1.140414000218176"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414000218176"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414000218176": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000218176", "variance": "COVARIANT"}, "140414000218512": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046629536"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414000218512"}, {"nodeId": ".2.140414000218512"}], "bases": [{"nodeId": "140414017146208", "args": [{"nodeId": ".1.140414000218512"}, {"nodeId": ".2.140414000218512"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": "140414008334640"}]}], "isAbstract": false}, "140414046629536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000218512", "args": [{"nodeId": ".1.140414000218512"}, {"nodeId": ".2.140414000218512"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413983470672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414000218512": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000218512", "variance": "COVARIANT"}, ".2.140414000218512": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000218512", "variance": "COVARIANT"}, "140413983470672": {"type": "Tuple", "items": [{"nodeId": ".1.140414000218512"}, {"nodeId": ".2.140414000218512"}]}, "140414008334640": {"type": "Tuple", "items": [{"nodeId": ".1.140414000218512"}, {"nodeId": ".2.140414000218512"}]}, "140414000218848": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046629984"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414000218848"}], "bases": [{"nodeId": "140414017146880", "args": [{"nodeId": ".1.140414000218848"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414000218848"}]}], "isAbstract": false}, "140414046629984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000218848", "args": [{"nodeId": ".1.140414000218848"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414000218848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414000218848": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414000218848", "variance": "COVARIANT"}, "140414017154608": {"type": "Concrete", "module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046630432"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414017154608"}, {"nodeId": ".2.140414017154608"}], "bases": [{"nodeId": "140414017149232", "args": [{"nodeId": ".1.140414017154608"}, {"nodeId": ".2.140414017154608"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414017154608"}]}], "isAbstract": false}, "140414046630432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154608", "args": [{"nodeId": ".1.140414017154608"}, {"nodeId": ".2.140414017154608"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017154608"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414017154608": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017154608", "variance": "COVARIANT"}, ".2.140414017154608": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017154608", "variance": "COVARIANT"}, "140414017154944": {"type": "Concrete", "module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046630880"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414017154944"}, {"nodeId": ".2.140414017154944"}], "bases": [{"nodeId": "140414017149904", "args": [{"nodeId": ".1.140414017154944"}, {"nodeId": ".2.140414017154944"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": "140413991276320"}]}], "isAbstract": false}, "140414046630880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017154944", "args": [{"nodeId": ".1.140414017154944"}, {"nodeId": ".2.140414017154944"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413983470896"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414017154944": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017154944", "variance": "COVARIANT"}, ".2.140414017154944": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017154944", "variance": "COVARIANT"}, "140413983470896": {"type": "Tuple", "items": [{"nodeId": ".1.140414017154944"}, {"nodeId": ".2.140414017154944"}]}, "140413991276320": {"type": "Tuple", "items": [{"nodeId": ".1.140414017154944"}, {"nodeId": ".2.140414017154944"}]}, "140414017155280": {"type": "Concrete", "module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046631328"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140414017155280"}, {"nodeId": ".2.140414017155280"}], "bases": [{"nodeId": "140414017149568", "args": [{"nodeId": ".1.140414017155280"}, {"nodeId": ".2.140414017155280"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".2.140414017155280"}]}], "isAbstract": false}, "140414046631328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155280", "args": [{"nodeId": ".1.140414017155280"}, {"nodeId": ".2.140414017155280"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".2.140414017155280"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414017155280": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155280", "variance": "COVARIANT"}, ".2.140414017155280": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155280", "variance": "COVARIANT"}, "140414017155616": {"type": "Concrete", "module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046631776"}, "name": "popitem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046632224"}, "name": "move_to_end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046632672"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046633120"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414046633568"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041538848"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041539296"}, "name": "values"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983469664"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983469776"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}], "typeVars": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}], "bases": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, {"nodeId": "140414092552096", "args": [{"nodeId": ".1.140414017155616"}]}], "isAbstract": false}, "140414046631776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413983471120"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}, ".1.140414017155616": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155616", "variance": "INVARIANT"}, ".2.140414017155616": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155616", "variance": "INVARIANT"}, "140413983471120": {"type": "Tuple", "items": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, "140414046632224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, {"nodeId": ".1.140414017155616"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}, "140414046632672": {"type": "Function", "typeVars": [".-1.140414046632672"], "argTypes": [{"nodeId": ".-1.140414046632672"}], "returnType": {"nodeId": ".-1.140414046632672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414046632672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414046632672", "variance": "INVARIANT"}, "140414046633120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017155616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414046633568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}], "returnType": {"nodeId": "140414017154608", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041538848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}], "returnType": {"nodeId": "140414017154944", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041539296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}], "returnType": {"nodeId": "140414017155280", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983469664": {"type": "Overloaded", "items": [{"nodeId": "140414041539744"}, {"nodeId": "140414041540192"}]}, "140414041539744": {"type": "Function", "typeVars": [".-1.140414041539744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414041539744"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140414017155616", "args": [{"nodeId": ".-1.140414041539744"}, {"nodeId": "140413983471456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140414041539744": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041539744", "variance": "INVARIANT"}, "140413983471456": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414041540192": {"type": "Function", "typeVars": [".-1.140414041540192", ".-2.140414041540192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414041540192"}]}, {"nodeId": ".-2.140414041540192"}], "returnType": {"nodeId": "140414017155616", "args": [{"nodeId": ".-1.140414041540192"}, {"nodeId": ".-2.140414041540192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140414041540192": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041540192", "variance": "INVARIANT"}, ".-2.140414041540192": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041540192", "variance": "INVARIANT"}, "140413983469776": {"type": "Overloaded", "items": [{"nodeId": "140414041540640"}, {"nodeId": "140414041541088"}]}, "140414041540640": {"type": "Function", "typeVars": [".-1.140414041540640"], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": "140413983471680"}]}, {"nodeId": ".1.140414017155616"}], "returnType": {"nodeId": "140413983471792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140413983471680": {"type": "Union", "items": [{"nodeId": ".-1.140414041540640"}, {"nodeId": "N"}]}, ".-1.140414041540640": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041540640", "variance": "INVARIANT"}, "140413983471792": {"type": "Union", "items": [{"nodeId": ".-1.140414041540640"}, {"nodeId": "N"}]}, "140414041541088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155616", "args": [{"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}]}, {"nodeId": ".1.140414017155616"}, {"nodeId": ".2.140414017155616"}], "returnType": {"nodeId": ".2.140414017155616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}, "140414016978416": {"type": "Concrete", "module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008328368"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983471232"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041545120"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041545568"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041546016"}, "name": "copy"}], "typeVars": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}], "bases": [{"nodeId": "140414016327680", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}], "isAbstract": false}, "140414008328368": {"type": "Union", "items": [{"nodeId": "140414020825632"}, {"nodeId": "N"}]}, "140414020825632": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, ".2.140414016978416": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016978416", "variance": "INVARIANT"}, "140413983471232": {"type": "Overloaded", "items": [{"nodeId": "140414041541536"}, {"nodeId": "140414041541984"}, {"nodeId": "140414041542432"}, {"nodeId": "140414041542880"}, {"nodeId": "140414041543328"}, {"nodeId": "140414041543776"}, {"nodeId": "140414041544224"}, {"nodeId": "140414041544672"}]}, "140414041541536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414016978416": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016978416", "variance": "INVARIANT"}, "140414041541984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": ".2.140414016978416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140414041542432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413983472016": {"type": "Union", "items": [{"nodeId": "140413983331648"}, {"nodeId": "N"}]}, "140413983331648": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140414041542880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472128"}, {"nodeId": ".2.140414016978416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140413983472128": {"type": "Union", "items": [{"nodeId": "140413983331872"}, {"nodeId": "N"}]}, "140413983331872": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140414041543328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472240"}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413983472240": {"type": "Union", "items": [{"nodeId": "140413983332096"}, {"nodeId": "N"}]}, "140413983332096": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140414041543776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472352"}, {"nodeId": "140414000229936", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": ".2.140414016978416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140413983472352": {"type": "Union", "items": [{"nodeId": "140413983332320"}, {"nodeId": "N"}]}, "140413983332320": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140414041544224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472464"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413983472688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140413983472464": {"type": "Union", "items": [{"nodeId": "140413983332544"}, {"nodeId": "N"}]}, "140413983332544": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140413983472688": {"type": "Tuple", "items": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}, "140414041544672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": "140413983472800"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413983473024"}]}, {"nodeId": ".2.140414016978416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140413983472800": {"type": "Union", "items": [{"nodeId": "140413983332768"}, {"nodeId": "N"}]}, "140413983332768": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": [], "argNames": []}, "140413983473024": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": ".2.140414016978416"}]}, "140414041545120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016978416", "args": [{"nodeId": ".1.140414016978416"}, {"nodeId": ".2.140414016978416"}]}, {"nodeId": ".1.140414016978416"}], "returnType": {"nodeId": ".2.140414016978416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414041545568": {"type": "Function", "typeVars": [".-1.140414041545568"], "argTypes": [{"nodeId": ".-1.140414041545568"}], "returnType": {"nodeId": ".-1.140414041545568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414041545568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041545568", "variance": "INVARIANT"}, "140414041546016": {"type": "Function", "typeVars": [".-1.140414041546016"], "argTypes": [{"nodeId": ".-1.140414041546016"}], "returnType": {"nodeId": ".-1.140414041546016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414041546016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041546016", "variance": "INVARIANT"}, "140414017155952": {"type": "Concrete", "module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041546464"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041546912"}, "name": "new_child"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413941747712"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041547808"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041548256"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041548704"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041549152"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041549600"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041550048"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041550496"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041550944"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041551392"}, "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983471568"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041552736"}, "name": "copy"}, {"kind": "Variable", "name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413941750176"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983471904"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041554080"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041554528"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983473248"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}], "bases": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "isAbstract": false}, ".1.140414017155952": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155952", "variance": "INVARIANT"}, ".2.140414017155952": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414017155952", "variance": "INVARIANT"}, "140414041546464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}, "140414041546912": {"type": "Function", "typeVars": [".-1.140414041546912"], "argTypes": [{"nodeId": ".-1.140414041546912"}, {"nodeId": "140413983473136"}], "returnType": {"nodeId": ".-1.140414041546912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, ".-1.140414041546912": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041546912", "variance": "INVARIANT"}, "140413983473136": {"type": "Union", "items": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": "N"}]}, "140413941747712": {"type": "Function", "typeVars": [".-1.140413941747712"], "argTypes": [{"nodeId": ".-1.140413941747712"}], "returnType": {"nodeId": ".-1.140413941747712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413941747712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413941747712", "variance": "INVARIANT"}, "140414041547808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414041548256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041548704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}], "returnType": {"nodeId": ".2.140414017155952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041549152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414017155952"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414041549600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414041550048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041550496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}], "returnType": {"nodeId": ".2.140414017155952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140414041550944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041551392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}], "returnType": {"nodeId": ".2.140414017155952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140413983471568": {"type": "Overloaded", "items": [{"nodeId": "140414041551840"}, {"nodeId": "140414041552288"}]}, "140414041551840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}], "returnType": {"nodeId": ".2.140414017155952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140414041552288": {"type": "Function", "typeVars": [".-1.140414041552288"], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": ".1.140414017155952"}, {"nodeId": "140413983473360"}], "returnType": {"nodeId": "140413983473472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140413983473360": {"type": "Union", "items": [{"nodeId": ".2.140414017155952"}, {"nodeId": ".-1.140414041552288"}]}, ".-1.140414041552288": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041552288", "variance": "INVARIANT"}, "140413983473472": {"type": "Union", "items": [{"nodeId": ".2.140414017155952"}, {"nodeId": ".-1.140414041552288"}]}, "140414041552736": {"type": "Function", "typeVars": [".-1.140414041552736"], "argTypes": [{"nodeId": ".-1.140414041552736"}], "returnType": {"nodeId": ".-1.140414041552736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414041552736": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041552736", "variance": "INVARIANT"}, "140413941750176": {"type": "Function", "typeVars": [".-1.140413941750176"], "argTypes": [{"nodeId": ".-1.140413941750176"}], "returnType": {"nodeId": ".-1.140413941750176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413941750176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413941750176", "variance": "INVARIANT"}, "140413983471904": {"type": "Overloaded", "items": [{"nodeId": "140414041553184"}, {"nodeId": "140414041553632"}]}, "140414041553184": {"type": "Function", "typeVars": [".-1.140414041553184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414041553184"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140414017155952", "args": [{"nodeId": ".-1.140414041553184"}, {"nodeId": "140413978591520"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}, ".-1.140414041553184": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041553184", "variance": "INVARIANT"}, "140413978591520": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140414041553632": {"type": "Function", "typeVars": [".-1.140414041553632", ".-2.140414041553632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": ".-1.140414041553632"}]}, {"nodeId": ".-2.140414041553632"}], "returnType": {"nodeId": "140414017155952", "args": [{"nodeId": ".-1.140414041553632"}, {"nodeId": ".-2.140414041553632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140414041553632": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041553632", "variance": "INVARIANT"}, ".-2.140414041553632": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041553632", "variance": "INVARIANT"}, "140414041554080": {"type": "Function", "typeVars": [".-1.140414041554080", ".-2.140414041554080"], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414041554080"}, {"nodeId": ".-2.140414041554080"}]}], "returnType": {"nodeId": "140414017155952", "args": [{"nodeId": "140413978591632"}, {"nodeId": "140413978591744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414041554080": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041554080", "variance": "INVARIANT"}, ".-2.140414041554080": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041554080", "variance": "INVARIANT"}, "140413978591632": {"type": "Union", "items": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".-1.140414041554080"}]}, "140413978591744": {"type": "Union", "items": [{"nodeId": ".2.140414017155952"}, {"nodeId": ".-2.140414041554080"}]}, "140414041554528": {"type": "Function", "typeVars": [".-1.140414041554528", ".-2.140414041554528"], "argTypes": [{"nodeId": "140414017155952", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414041554528"}, {"nodeId": ".-2.140414041554528"}]}], "returnType": {"nodeId": "140414017155952", "args": [{"nodeId": "140413978591856"}, {"nodeId": "140413978591968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414041554528": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041554528", "variance": "INVARIANT"}, ".-2.140414041554528": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041554528", "variance": "INVARIANT"}, "140413978591856": {"type": "Union", "items": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".-1.140414041554528"}]}, "140413978591968": {"type": "Union", "items": [{"nodeId": ".2.140414017155952"}, {"nodeId": ".-2.140414041554528"}]}, "140413983473248": {"type": "Overloaded", "items": [{"nodeId": "140414041686304"}, {"nodeId": "140414041686752"}]}, "140414041686304": {"type": "Function", "typeVars": [".-1.140414041686304"], "argTypes": [{"nodeId": ".-1.140414041686304"}, {"nodeId": "140414000229936", "args": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}], "returnType": {"nodeId": ".-1.140414041686304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414041686304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041686304", "variance": "INVARIANT"}, "140414041686752": {"type": "Function", "typeVars": [".-1.140414041686752"], "argTypes": [{"nodeId": ".-1.140414041686752"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413978592304"}]}], "returnType": {"nodeId": ".-1.140414041686752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414041686752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414041686752", "variance": "INVARIANT"}, "140413978592304": {"type": "Tuple", "items": [{"nodeId": ".1.140414017155952"}, {"nodeId": ".2.140414017155952"}]}, "140414016447072": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016447744": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949969568"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016447408"}], "isAbstract": true}, "140413949969568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016447744"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140414016448080": {"type": "Concrete", "module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041689888"}, "name": "is_package"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041690336"}, "name": "get_code"}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949968672"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041691232"}, "name": "exec_module"}, {"kind": "Variable", "name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949770912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016447408"}], "isAbstract": true}, "140414041689888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448080"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140414041690336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448080"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413982801280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413982801280": {"type": "Union", "items": [{"nodeId": "140413999694224"}, {"nodeId": "N"}]}, "140413949968672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448080"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413982801392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413982801392": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414041691232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448080"}, {"nodeId": "140413999695568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140413949770912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982801616"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413999694224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}, "140413982801616": {"type": "Union", "items": [{"nodeId": "140413982801504"}, {"nodeId": "140414016326000"}]}, "140413982801504": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414016448416": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949770016"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016448080"}], "isAbstract": true}, "140413949770016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448416"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140414016448752": {"type": "Concrete", "module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041692576"}, "name": "path_mtime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041693024"}, "name": "set_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041693472"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041693920"}, "name": "path_stats"}], "typeVars": [], "bases": [{"nodeId": "140414016447744"}, {"nodeId": "140414016448416"}], "isAbstract": true}, "140414041692576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448752"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140414041693024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448752"}, {"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}, "140414041693472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448752"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413982801728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413982801728": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414041693920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016448752"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140414016449088": {"type": "Concrete", "module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041694368"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041694816"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041695264"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140414016447072"}], "isAbstract": false}, "140414041694368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449088"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983031472"}], "returnType": {"nodeId": "140413983031584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140413983031472": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413983031584": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140414041694816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041695264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449088"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983031696"}, {"nodeId": "140413983031808"}], "returnType": {"nodeId": "140413983031920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140413983031696": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413983031808": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413983031920": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140414016449424": {"type": "Concrete", "module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041695712"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041696160"}, "name": "find_loader"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041696608"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041697056"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140414016447072"}], "isAbstract": false}, "140414041695712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449424"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983032032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413983032032": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140414041696160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449424"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983032368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140413983032368": {"type": "Tuple", "items": [{"nodeId": "140413983032144"}, {"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}]}, "140413983032144": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140414041696608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414041697056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449424"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983032480"}], "returnType": {"nodeId": "140413983032592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}, "140413983032480": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413983032592": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140414016449760": {"type": "Concrete", "module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041697504"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041697952"}, "name": "get_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041698400"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041698848"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140414016447744"}, {"nodeId": "140414016448416"}], "isAbstract": true}, "140414041697504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449760"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140414041697952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449760"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140414041698400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449760"}, {"nodeId": "140413983032704"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140413983032704": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414041698848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016449760"}, {"nodeId": "140413983032816"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140413983032816": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016450096": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949765984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949765536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949764864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949765760"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": true}, "140413949765984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450096"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017147216", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140413949765536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450096"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140413949764864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450096"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140413949765760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450096"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016450432": {"type": "Protocol", "module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949763968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949763520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949763296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949762624"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413982800944"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949763072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949762400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949762176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949761952"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}, "140413949763968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949763520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949763296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016450432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949762624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016450432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}, "140413982800944": {"type": "Overloaded", "items": [{"nodeId": "140414045865568"}, {"nodeId": "140414045866016"}, {"nodeId": "140414045866464"}, {"nodeId": "140414045866912"}, {"nodeId": "140414045867360"}, {"nodeId": "140414045867808"}, {"nodeId": "140414045868256"}]}, "140414045865568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983033040"}, {"nodeId": "140414016324320"}, {"nodeId": "140413983033152"}, {"nodeId": "140413983033264"}, {"nodeId": "140413983033376"}], "returnType": {"nodeId": "140414016442368"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983033040": {"type": "TypeAlias", "target": {"nodeId": "140414012780080"}}, "140414012780080": {"type": "Union", "items": [{"nodeId": "140414012777280"}, {"nodeId": "140414012777392"}, {"nodeId": "140414012779968"}]}, "140414012777280": {"type": "TypeAlias", "target": {"nodeId": "140414012779408"}}, "140414012779408": {"type": "Union", "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"}]}, "140414012777392": {"type": "TypeAlias", "target": {"nodeId": "140414012776944"}}, "140414012776944": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140414012779968": {"type": "TypeAlias", "target": {"nodeId": "140414012776496"}}, "140414012776496": {"type": "Union", "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"}]}, "140413983033152": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983033264": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983033376": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414045866016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983033600"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016440016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983033600": {"type": "TypeAlias", "target": {"nodeId": "140414012779856"}}, "140414012779856": {"type": "Union", "items": [{"nodeId": "140414012776272"}, {"nodeId": "140414012779744"}, {"nodeId": "140414012769888"}]}, "140414012776272": {"type": "TypeAlias", "target": {"nodeId": "140414012771792"}}, "140414012771792": {"type": "Union", "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"}]}, "140414012779744": {"type": "TypeAlias", "target": {"nodeId": "140414012774368"}}, "140414012774368": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140414012769888": {"type": "TypeAlias", "target": {"nodeId": "140414012773472"}}, "140414012773472": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140414045866464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983033712"}, {"nodeId": "140413983035056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016441360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983033712": {"type": "TypeAlias", "target": {"nodeId": "140414012771792"}}, "140413983035056": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414045866912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983036288"}, {"nodeId": "140413983036400"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016441024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983036288": {"type": "TypeAlias", "target": {"nodeId": "140414012773472"}}, "140413983036400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414045867360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983037408"}, {"nodeId": "140413983034160"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016440688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983037408": {"type": "TypeAlias", "target": {"nodeId": "140414012774368"}}, "140413983034160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414045867808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983035168"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983035168": {"type": "TypeAlias", "target": {"nodeId": "140414012779856"}}, "140414045868256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140413983034720"}, {"nodeId": "140413983036512"}, {"nodeId": "140413983037296"}], "returnType": {"nodeId": "140414017147216", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413983034720": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983036512": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983037296": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413949763072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949762400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016450432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413949762176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949761952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450432"}, {"nodeId": "140413983035392"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140413983035392": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414016450768": {"type": "Concrete", "module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949760832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045870944"}, "name": "open_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045871392"}, "name": "resource_path"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045871840"}, "name": "is_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414045872288"}, "name": "contents"}], "typeVars": [], "bases": [{"nodeId": "140414016450096"}], "isAbstract": true}, "140413949760832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450768"}], "returnType": {"nodeId": "140414016450432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414045870944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450768"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016440688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140414045871392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450768"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140414045871840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450768"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140414045872288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016450768"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991221088": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949696640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949697088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949696192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949695744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949695296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949693280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949694624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949693504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949691712"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016449088"}, {"nodeId": "140414016448080"}], "isAbstract": false}, "140413949696640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982797808"}], "returnType": {"nodeId": "140413982797920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140413982797808": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982797920": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140413949697088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982798032"}, {"nodeId": "140413982798144"}], "returnType": {"nodeId": "140413982798256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140413982798032": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982798144": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413982798256": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140413949696192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949695744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949695296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949693280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949694624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140413949693504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446400"}], "returnType": {"nodeId": "140413982798368"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140413982798368": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413949691712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140413991221424": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949691936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949691040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949690144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949690592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949689440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949688992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949688544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949687424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949687200"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016449088"}, {"nodeId": "140414016448080"}], "isAbstract": false}, "140413949691936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982798480"}], "returnType": {"nodeId": "140413982798592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140413982798480": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982798592": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140413949691040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982798704"}, {"nodeId": "140413982798816"}], "returnType": {"nodeId": "140413982798928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140413982798704": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982798816": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413982798928": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140413949690144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949690592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949689440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949688992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140413949688544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}, "140413949687424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446400"}], "returnType": {"nodeId": "140413982799040"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140413982799040": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413949687200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999695568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140413991221760": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949686080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949685632"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016449088"}], "isAbstract": false}, "140413949686080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982799152"}], "returnType": {"nodeId": "140413982799264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140413982799152": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982799264": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140413949685632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982799376"}, {"nodeId": "140413982799488"}], "returnType": {"nodeId": "140413982799600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140413982799376": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982799488": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413982799600": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140414016446736": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949684064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949683616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949684512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949683168"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413949684064": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}, "140413949683616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991220416"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016446064"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}, "140413991220416": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991717120"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038084512"}, "name": "__init__"}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949307904"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991717120": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414038084512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991220416"}, {"nodeId": "140413982794784"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}, "140413982794784": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413949307904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991220416"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016446064": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038086752"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038087200"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038087648"}, "name": "locate_file"}], "typeVars": [], "bases": [{"nodeId": "140414016445728"}], "isAbstract": false}, "140414038086752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446064"}, {"nodeId": "140413991490544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140413991490544": {"type": "Concrete", "module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987572192"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020518848"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020519296"}, "name": "__exit__"}, {"kind": "Variable", "name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413957788992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020520192"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020520640"}, "name": "chmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020521984"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020522432"}, "name": "glob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020522880"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020523328"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020523776"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020524224"}, "name": "is_socket"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020524672"}, "name": "is_fifo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020525120"}, "name": "is_block_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020525568"}, "name": "is_char_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020526016"}, "name": "iterdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020526464"}, "name": "lchmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020526912"}, "name": "lstat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020527360"}, "name": "mkdir"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987521024"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020530944"}, "name": "owner"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020531392"}, "name": "group"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020531840"}, "name": "is_mount"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020532288"}, "name": "readlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020532736"}, "name": "rename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020533184"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004118016"}, "name": "resolve"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004118464"}, "name": "rglob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004118912"}, "name": "rmdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004119360"}, "name": "symlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004119808"}, "name": "hardlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004120256"}, "name": "touch"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004120704"}, "name": "unlink"}, {"kind": "Variable", "name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413957791456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004122048"}, "name": "absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004122496"}, "name": "expanduser"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004122944"}, "name": "read_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004123392"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004123840"}, "name": "samefile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004124288"}, "name": "write_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004124736"}, "name": "write_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004125632"}, "name": "link_to"}], "typeVars": [], "bases": [{"nodeId": "140413991489536"}], "isAbstract": false}, "140413987572192": {"type": "Function", "typeVars": [".-1.140413987572192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413987526624"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140413987572192"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, "140413987526624": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414008097952": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}]}, ".-1.140413987572192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987572192", "variance": "INVARIANT"}, "140414020518848": {"type": "Function", "typeVars": [".-1.140414020518848"], "argTypes": [{"nodeId": ".-1.140414020518848"}], "returnType": {"nodeId": ".-1.140414020518848"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414020518848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020518848", "variance": "INVARIANT"}, "140414020519296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987526848"}, {"nodeId": "140413987526960"}, {"nodeId": "140413987527072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413987526848": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413987526960": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413987527072": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413957788992": {"type": "Function", "typeVars": [".-1.140413957788992"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140413957788992"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140413957788992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413957788992", "variance": "INVARIANT"}, "140414020520192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413987527184"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140413987527184": {"type": "TypeAlias", "target": {"nodeId": "140413991615424"}}, "140413991615424": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140414020520640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}, "140414020521984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020522432": {"type": "Function", "typeVars": [".-1.140414020522432"], "argTypes": [{"nodeId": ".-1.140414020522432"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".-1.140414020522432"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140414020522432": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020522432", "variance": "INVARIANT"}, "140414020522880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020523328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020523776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020524224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020524672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020525120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020525568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020526016": {"type": "Function", "typeVars": [".-1.140414020526016"], "argTypes": [{"nodeId": ".-1.140414020526016"}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".-1.140414020526016"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414020526016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020526016", "variance": "INVARIANT"}, "140414020526464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}, "140414020526912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140413987527296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987527296": {"type": "TypeAlias", "target": {"nodeId": "140413991615424"}}, "140414020527360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}, "140413987521024": {"type": "Overloaded", "items": [{"nodeId": "140414020527808"}, {"nodeId": "140414020528256"}, {"nodeId": "140414020528704"}, {"nodeId": "140414020529152"}, {"nodeId": "140414020529600"}, {"nodeId": "140414020530048"}, {"nodeId": "140414020530496"}]}, "140414020527808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987527520"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987527632"}, {"nodeId": "140413987527744"}, {"nodeId": "140413987527856"}], "returnType": {"nodeId": "140414016442368"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987527520": {"type": "TypeAlias", "target": {"nodeId": "140414012780080"}}, "140413987527632": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987527744": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987527856": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414020528256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987528080"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016440016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987528080": {"type": "TypeAlias", "target": {"nodeId": "140414012779856"}}, "140414020528704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987528192"}, {"nodeId": "140413987529536"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016441360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987528192": {"type": "TypeAlias", "target": {"nodeId": "140414012771792"}}, "140413987529536": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414020529152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987530768"}, {"nodeId": "140413987530880"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016441024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987530768": {"type": "TypeAlias", "target": {"nodeId": "140414012773472"}}, "140413987530880": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414020529600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987531888"}, {"nodeId": "140413987528640"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414016440688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987531888": {"type": "TypeAlias", "target": {"nodeId": "140414012774368"}}, "140413987528640": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140414020530048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987529648"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140414017147552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987529648": {"type": "TypeAlias", "target": {"nodeId": "140414012779856"}}, "140414020530496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987529200"}, {"nodeId": "140413987530992"}, {"nodeId": "140413987531776"}], "returnType": {"nodeId": "140414017147216", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140413987529200": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987530992": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987531776": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414020530944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020531392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020531840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020532288": {"type": "Function", "typeVars": [".-1.140414020532288"], "argTypes": [{"nodeId": ".-1.140414020532288"}], "returnType": {"nodeId": ".-1.140414020532288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414020532288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020532288", "variance": "INVARIANT"}, "140414020532736": {"type": "Function", "typeVars": [".-1.140414020532736"], "argTypes": [{"nodeId": ".-1.140414020532736"}, {"nodeId": "140413987529872"}], "returnType": {"nodeId": ".-1.140414020532736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140414020532736": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020532736", "variance": "INVARIANT"}, "140413987529872": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413991489536"}]}, "140413991489536": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957716480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957716032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957716256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957715584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957715360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957715136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957714912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957714688"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987570400"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020802752"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020803200"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020803648"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020804096"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020804544"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020804992"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987571072"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987571296"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020806336"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020806784"}, "name": "as_posix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020807232"}, "name": "as_uri"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020807680"}, "name": "is_absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020808128"}, "name": "is_reserved"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020808576"}, "name": "is_relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020809024"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987570848"}, "name": "relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020809920"}, "name": "with_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020810368"}, "name": "with_stem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020810816"}, "name": "with_suffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987571968"}, "name": "joinpath"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957709088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957711552"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020517952"}, "name": "__class_getitem__"}], "typeVars": [], "bases": [{"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": false}, "140413957716480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957716032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957716256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957715584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957715360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957715136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957714912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413957714688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987570400": {"type": "Function", "typeVars": [".-1.140413987570400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413987525840"}], "returnType": {"nodeId": ".-1.140413987570400"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "140413987525840": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, ".-1.140413987570400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987570400", "variance": "INVARIANT"}, "140414020802752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414020803200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020803648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414020804096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414020804544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414020804992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413987571072": {"type": "Function", "typeVars": [".-1.140413987571072"], "argTypes": [{"nodeId": ".-1.140413987571072"}, {"nodeId": "140413987525952"}], "returnType": {"nodeId": ".-1.140413987571072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413987571072": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987571072", "variance": "INVARIANT"}, "140413987525952": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140413987571296": {"type": "Function", "typeVars": [".-1.140413987571296"], "argTypes": [{"nodeId": ".-1.140413987571296"}, {"nodeId": "140413987526064"}], "returnType": {"nodeId": ".-1.140413987571296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413987571296": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987571296", "variance": "INVARIANT"}, "140413987526064": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414020806336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020806784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020807232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020807680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020808128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020808576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140413987526176"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, "140413987526176": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414020809024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489536"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}, "140413987570848": {"type": "Function", "typeVars": [".-1.140413987570848"], "argTypes": [{"nodeId": ".-1.140413987570848"}, {"nodeId": "140413987526288"}], "returnType": {"nodeId": ".-1.140413987570848"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140413987570848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987570848", "variance": "INVARIANT"}, "140413987526288": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414020809920": {"type": "Function", "typeVars": [".-1.140414020809920"], "argTypes": [{"nodeId": ".-1.140414020809920"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414020809920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, ".-1.140414020809920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020809920", "variance": "INVARIANT"}, "140414020810368": {"type": "Function", "typeVars": [".-1.140414020810368"], "argTypes": [{"nodeId": ".-1.140414020810368"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414020810368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}, ".-1.140414020810368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020810368", "variance": "INVARIANT"}, "140414020810816": {"type": "Function", "typeVars": [".-1.140414020810816"], "argTypes": [{"nodeId": ".-1.140414020810816"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414020810816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}, ".-1.140414020810816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020810816", "variance": "INVARIANT"}, "140413987571968": {"type": "Function", "typeVars": [".-1.140413987571968"], "argTypes": [{"nodeId": ".-1.140413987571968"}, {"nodeId": "140413987526400"}], "returnType": {"nodeId": ".-1.140413987571968"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140413987571968": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413987571968", "variance": "INVARIANT"}, "140413987526400": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140413957709088": {"type": "Function", "typeVars": [".-1.140413957709088"], "argTypes": [{"nodeId": ".-1.140413957709088"}], "returnType": {"nodeId": "140414092555120", "args": [{"nodeId": ".-1.140413957709088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413957709088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413957709088", "variance": "INVARIANT"}, "140413957711552": {"type": "Function", "typeVars": [".-1.140413957711552"], "argTypes": [{"nodeId": ".-1.140413957711552"}], "returnType": {"nodeId": ".-1.140413957711552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413957711552": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413957711552", "variance": "INVARIANT"}, "140414020517952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}, "140414020533184": {"type": "Function", "typeVars": [".-1.140414020533184"], "argTypes": [{"nodeId": ".-1.140414020533184"}, {"nodeId": "140413987532560"}], "returnType": {"nodeId": ".-1.140414020533184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140414020533184": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414020533184", "variance": "INVARIANT"}, "140413987532560": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413991489536"}]}, "140414004118016": {"type": "Function", "typeVars": [".-1.140414004118016"], "argTypes": [{"nodeId": ".-1.140414004118016"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": ".-1.140414004118016"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}, ".-1.140414004118016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414004118016", "variance": "INVARIANT"}, "140414004118464": {"type": "Function", "typeVars": [".-1.140414004118464"], "argTypes": [{"nodeId": ".-1.140414004118464"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".-1.140414004118464"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140414004118464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414004118464", "variance": "INVARIANT"}, "140414004118912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004119360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987529760"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}, "140413987529760": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413991490544"}]}, "140414004119808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987530096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140413987530096": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413991490544"}]}, "140414004120256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}, "140414004120704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}, "140413957791456": {"type": "Function", "typeVars": [".-1.140413957791456"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140413957791456"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140413957791456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413957791456", "variance": "INVARIANT"}, "140414004122048": {"type": "Function", "typeVars": [".-1.140414004122048"], "argTypes": [{"nodeId": ".-1.140414004122048"}], "returnType": {"nodeId": ".-1.140414004122048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414004122048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414004122048", "variance": "INVARIANT"}, "140414004122496": {"type": "Function", "typeVars": [".-1.140414004122496"], "argTypes": [{"nodeId": ".-1.140414004122496"}], "returnType": {"nodeId": ".-1.140414004122496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414004122496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414004122496", "variance": "INVARIANT"}, "140414004122944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004123392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987532672"}, {"nodeId": "140413987528528"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140413987532672": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987528528": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004123840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987528976"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}, "140413987528976": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414004124288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987529088"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140413987529088": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414004124736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987529984"}, {"nodeId": "140413987530208"}, {"nodeId": "140413987530320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}, "140413987529984": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987530208": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987530320": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004125632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991490544"}, {"nodeId": "140413987530432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140413987530432": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140414038087200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446064"}, {"nodeId": "140413982795008"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140413982795008": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414038087648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016446064"}, {"nodeId": "140413982795120"}], "returnType": {"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140413982795120": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140414016445728": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949311488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949311040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949310144"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413982792096"}, "items": [{"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "discover"}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949310368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949309696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949310592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949309472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949309248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949309024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949308800"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": true}, "140413949311488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413982793888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140413982793888": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413949311040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}, {"nodeId": "140413982794000"}], "returnType": {"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140413982794000": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140413949310144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016445728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}, "140413982792096": {"type": "Overloaded", "items": [{"nodeId": "140414037653344"}, {"nodeId": "140414037653792"}]}, "140414037653344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413991220416"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016445728"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}, "140414037653792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140413982794224"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016445728"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}, "140413982794224": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413949310368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982794448"}], "returnType": {"nodeId": "140414016446064"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}, "140413982794448": {"type": "TypeAlias", "target": {"nodeId": "140414008097952"}}, "140413949309696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140414016443040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016443040": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021059968"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021060416"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021060864"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021061312"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021061760"}, "name": "get_all"}, {"kind": "Variable", "name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949398144"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}, "140414021059968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443040"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414021060416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443040"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414021060864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443040"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414021061312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443040"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414021061760": {"type": "Function", "typeVars": [".-1.140414021061760"], "argTypes": [{"nodeId": "140414016443040"}, {"nodeId": "140414016326000"}, {"nodeId": ".-1.140414021061760"}], "returnType": {"nodeId": "140413982791536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140414021061760": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021061760", "variance": "INVARIANT"}, "140413982791536": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140414021061760"}]}, "140413949398144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443040"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140413982791648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982791648": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}, "140413949310592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140414016444720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016444720": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037646176"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037646624"}, "name": "select"}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949332608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949334624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414003712112"}]}], "isAbstract": false}, "140414037646176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016444720"}, {"nodeId": "140413982792768"}], "returnType": {"nodeId": "140413982793552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413982792768": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140413982793552": {"type": "TypeAlias", "target": {"nodeId": "140413991378768"}}, "140413991378768": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414037646624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016444720"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016444720"}, "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"]}, "140413949332608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016444720"}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949334624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016444720"}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414003712112": {"type": "TypeAlias", "target": {"nodeId": "140413991378768"}}, "140413949309472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949309248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140413982794560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982794560": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140413991491888"}]}, {"nodeId": "N"}]}, "140413991491888": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037650208"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037650656"}, "name": "read_binary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037651104"}, "name": "locate"}, {"kind": "Variable", "name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991378544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991380560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016445728"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413991489872"}], "isAbstract": false}, "140414037650208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491888"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140414037650656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491888"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414037651104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991491888"}], "returnType": {"nodeId": "140413991217056", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991378544": {"type": "Union", "items": [{"nodeId": "140414016445392"}, {"nodeId": "N"}]}, "140414016445392": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037651552"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414037651552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445392"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140413991380560": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413991489872": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140413991489536"}], "isAbstract": false}, "140413949309024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140413982794672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982794672": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413949308800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949684512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982799712"}, {"nodeId": "140413982799824"}], "returnType": {"nodeId": "140413982799936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140413982799712": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982799824": {"type": "Union", "items": [{"nodeId": "140413999695568"}, {"nodeId": "N"}]}, "140413982799936": {"type": "Union", "items": [{"nodeId": "140414016446400"}, {"nodeId": "N"}]}, "140413949683168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982800048"}], "returnType": {"nodeId": "140413982800160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140413982800048": {"type": "Union", "items": [{"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140413982800160": {"type": "Union", "items": [{"nodeId": "140414016447408"}, {"nodeId": "N"}]}, "140413991222096": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071807936"}, "name": "__init__"}, {"kind": "Variable", "name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949682496"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016449424"}], "isAbstract": false}, "140414071807936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991222096"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982800384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}, "140413982800384": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}, "140413949682496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413982800608"}], "returnType": {"nodeId": "140413987947008"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}, "140413982800608": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}, "140413987947008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016449424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413991222432": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071808832"}, "name": "set_data"}], "typeVars": [], "bases": [{"nodeId": "140414016449760"}, {"nodeId": "140414016448752"}], "isAbstract": false}, "140414071808832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991222432"}, {"nodeId": "140414016326000"}, {"nodeId": "140413982800720"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}, "140413982800720": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413991222768": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016449760"}, {"nodeId": "140414016448752"}], "isAbstract": false}, "140413991485504": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071809280"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071809728"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071810176"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071810624"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071811072"}, "name": "exec_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071811520"}, "name": "get_code"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414071811968"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140414016448416"}], "isAbstract": false}, "140414071809280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}, "140414071809728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140413982800832"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140413982800832": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414071810176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140414071810624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140414016446400"}], "returnType": {"nodeId": "140413999695568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140414071811072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140413999695568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140414071811520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140414071811968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485504"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414008306240": {"type": "Concrete", "module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008305904"}], "isAbstract": false}, "140413991486176": {"type": "Concrete", "module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041705600"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041706048"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041706496"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041706944"}, "name": "LoadLibrary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041707392"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413991486176"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414041705600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486176", "args": [{"nodeId": ".1.140413991486176"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}, ".1.140413991486176": {"type": "TypeVar", "varName": "_DLLT", "values": [], "upperBound": {"nodeId": "140414008305904"}, "def": "140413991486176", "variance": "INVARIANT"}, "140414041706048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486176", "args": [{"nodeId": ".1.140413991486176"}]}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".1.140413991486176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041706496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486176", "args": [{"nodeId": ".1.140413991486176"}]}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".1.140413991486176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041706944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486176", "args": [{"nodeId": ".1.140413991486176"}]}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".1.140413991486176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140414041707392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140414008306576": {"type": "Concrete", "module": "ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413987958656"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414041707840"}, "name": "__rmul__"}], "typeVars": [], "bases": [{"nodeId": "140414016323648"}], "isAbstract": false}, "140413987958656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414041707840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414008308592": {"type": "Concrete", "module": "ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414008309600": {"type": "Concrete", "module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414008309936": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042104640"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414017150240"}]}], "isAbstract": false}, "140414042104640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008309936"}, {"nodeId": "140413983271152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140413983271152": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140414008310272": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042105088"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414008307584"}, {"nodeId": "140414008309264", "args": [{"nodeId": "140413991385712"}]}], "isAbstract": false}, "140414042105088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008310272"}, {"nodeId": "140413983271264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140413983271264": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413991385712": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140414008310608": {"type": "Concrete", "module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324656"}]}], "isAbstract": false}, "140414008310944": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324656"}]}], "isAbstract": false}, "140414008311280": {"type": "Concrete", "module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324656"}]}], "isAbstract": false}, "140414012735888": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012736224": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012736560": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012736896": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012737232": {"type": "Concrete", "module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012737568": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012737904": {"type": "Concrete", "module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012738240": {"type": "Concrete", "module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012738576": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012738912": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012739248": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012739584": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012739920": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012740256": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012740592": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012740928": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012741264": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012741600": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140414012741936": {"type": "Concrete", "module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008307584"}, {"nodeId": "140414008309264", "args": [{"nodeId": "140413991385488"}]}], "isAbstract": false}, "140413991385488": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414012742272": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": false}, "140414012742608": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042105536"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414008307584"}, {"nodeId": "140414008309264", "args": [{"nodeId": "140413991385936"}]}], "isAbstract": false}, "140414042105536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012742608"}, {"nodeId": "140413983271376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140413983271376": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991385936": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414012742944": {"type": "Concrete", "module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042105984"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414008309264", "args": [{"nodeId": "140414092547728"}]}], "isAbstract": false}, "140414042105984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012742944"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140414012743280": {"type": "Concrete", "module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.140414012743280"}], "bases": [{"nodeId": "140414008307248"}, {"nodeId": "140414008309264", "args": [{"nodeId": ".1.140414012743280"}]}], "isAbstract": false}, ".1.140414012743280": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012743280", "variance": "INVARIANT"}, "140414012743616": {"type": "Concrete", "module": "ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414012743952": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092555120", "args": [{"nodeId": "140414008339232"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042106432"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414008306576"}], "isAbstract": false}, "140414008339232": {"type": "Union", "items": [{"nodeId": "140414008339568"}, {"nodeId": "140414008339792"}]}, "140414008339568": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "0"}]}, "140414008339792": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "0"}, {"nodeId": "140414016324320"}]}, "140414042106432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012743952"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414012743616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414012744288": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042106880"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042107328"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042107776"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "140414008306912"}], "isAbstract": false}, "140414042106880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012744288"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}, "140414042107328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012744288"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042107776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012744288"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140414012744624": {"type": "Concrete", "module": "ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "140414012744288"}], "isAbstract": false}, "140414012744960": {"type": "Concrete", "module": "ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "140414012744288"}], "isAbstract": false}, "140414012745296": {"type": "Concrete", "module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140414012744960"}], "isAbstract": false}, "140414012745632": {"type": "Concrete", "module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140414012744960"}], "isAbstract": false}, "140413991486848": {"type": "Concrete", "module": "ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983270256"}, "items": [{"kind": "Variable", "name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945731040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_length_"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983270368"}, "items": [{"kind": "Variable", "name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945731488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_type_"}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017150240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042110016"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983271936"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983272048"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042292736"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042293184"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042293632"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413991486848"}], "bases": [{"nodeId": "140414008306912"}], "isAbstract": true}, "140413983270256": {"type": "Overloaded", "items": [{"nodeId": "140414042108224"}]}, "140414042108224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413991486848": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140414008306912"}, "def": "140413991486848", "variance": "INVARIANT"}, "140413945731040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983270368": {"type": "Overloaded", "items": [{"nodeId": "140414042109120"}]}, "140414042109120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413945731488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042110016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140413983271936": {"type": "Overloaded", "items": [{"nodeId": "140414042110464"}, {"nodeId": "140414042110912"}]}, "140414042110464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042110912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}, {"nodeId": "140414016326672"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983272048": {"type": "Overloaded", "items": [{"nodeId": "140414042111360"}, {"nodeId": "140414042292288"}]}, "140414042111360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}, {"nodeId": "140414016324320"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414042292288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}, {"nodeId": "140414016326672"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414042292736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042293184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991486848", "args": [{"nodeId": ".1.140413991486848"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042293632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140413999706992": {"type": "Protocol", "module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042307968"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042341440"}, "name": "readline"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["read", "readline"]}, "140414042307968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706992"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414042341440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706992"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999707664": {"type": "Concrete", "module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140413999708000": {"type": "Concrete", "module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140413999707664"}], "isAbstract": false}, "140413999708336": {"type": "Concrete", "module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140413999707664"}], "isAbstract": false}, "140413999708672": {"type": "Concrete", "module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092556464", "args": [{"nodeId": "140414016323648"}, {"nodeId": "140414017046112"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016323648"}, {"nodeId": "140414020828768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042346816"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042347264"}, "name": "reducer_override"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042348160"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042348608"}, "name": "clear_memo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042349056"}, "name": "persistent_id"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414017046112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "140414000042768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414000042768": {"type": "TypeAlias", "target": {"nodeId": "140414000048704"}}, "140414000048704": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414000045904"}, {"nodeId": "140414000046576"}, {"nodeId": "140414000047472"}, {"nodeId": "140414000048592"}]}, "140414000045904": {"type": "Tuple", "items": [{"nodeId": "140414017052160"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}]}, "140414017052160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414000046576": {"type": "Tuple", "items": [{"nodeId": "140414017054176"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}, "140414017054176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414000047472": {"type": "Tuple", "items": [{"nodeId": "140414017045664"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140414000047360"}]}, "140414017045664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414000047360": {"type": "Union", "items": [{"nodeId": "140414092551760", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414000048592": {"type": "Tuple", "items": [{"nodeId": "140414017045440"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140414000048256"}, {"nodeId": "140414000048480"}]}, "140414017045440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414000048256": {"type": "Union", "items": [{"nodeId": "140414092551760", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414000048480": {"type": "Union", "items": [{"nodeId": "140414092551760", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414020828768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413999709008": {"type": "Concrete", "module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414004686944"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042349504"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042350400"}, "name": "load"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042350848"}, "name": "find_class"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042351296"}, "name": "persistent_load"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414004686944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042349504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}, {"nodeId": "140413999706992"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987525056"}], "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"]}, "140413987525056": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140414042350400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042350848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414042351296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709008"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}, "140414042346816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999708672"}, {"nodeId": "140414000232288", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987524160"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987524272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}, "140413987524160": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987524272": {"type": "TypeAlias", "target": {"nodeId": "140413999578608"}}, "140413999578608": {"type": "Union", "items": [{"nodeId": "140414017052832"}, {"nodeId": "N"}]}, "140414017052832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999707328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042347264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999708672"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140414042348160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999708672"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414042348608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999708672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042349056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999708672"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140413999709344": {"type": "Concrete", "module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042353312"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042354208"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042354656"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042355104"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042355552"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042356000"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042356448"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042356896"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414042357344"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028792096"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987521584"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140413999709344"}], "bases": [{"nodeId": "140414092556800", "args": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}]}], "isAbstract": false}, "140414042353312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": "140414092556800", "args": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}]}, {"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"]}, ".1.140413999709344": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999709344", "variance": "INVARIANT"}, "140414042354208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}], "returnType": {"nodeId": ".1.140413999709344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}, "140414042354656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414042355104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": ".1.140413999709344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042355552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": ".1.140413999709344"}], "returnType": {"nodeId": ".1.140413999709344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414042356000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414042356448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140413999709344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042356896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414042357344": {"type": "Function", "typeVars": [".-1.140414042357344", ".-2.140414042357344"], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414042357344"}, {"nodeId": ".-2.140414042357344"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413987531440"}, {"nodeId": "140413987531552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414042357344": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414042357344", "variance": "INVARIANT"}, ".-2.140414042357344": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414042357344", "variance": "INVARIANT"}, "140413987531440": {"type": "Union", "items": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".-1.140414042357344"}]}, "140413987531552": {"type": "Union", "items": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".-2.140414042357344"}]}, "140414028792096": {"type": "Function", "typeVars": [".-1.140414028792096", ".-2.140414028792096"], "argTypes": [{"nodeId": "140413999709344", "args": [{"nodeId": ".1.140413999709344"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": ".-1.140414028792096"}, {"nodeId": ".-2.140414028792096"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140413987531664"}, {"nodeId": "140413987532000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414028792096": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028792096", "variance": "INVARIANT"}, ".-2.140414028792096": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028792096", "variance": "INVARIANT"}, "140413987531664": {"type": "Union", "items": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".-1.140414028792096"}]}, "140413987532000": {"type": "Union", "items": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".-2.140414028792096"}]}, "140413987521584": {"type": "Overloaded", "items": [{"nodeId": "140414028792544"}, {"nodeId": "140414028792992"}]}, "140414028792544": {"type": "Function", "typeVars": [".-1.140414028792544"], "argTypes": [{"nodeId": ".-1.140414028792544"}, {"nodeId": "140414092556464", "args": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}]}], "returnType": {"nodeId": ".-1.140414028792544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414028792544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028792544", "variance": "INVARIANT"}, "140414028792992": {"type": "Function", "typeVars": [".-1.140414028792992"], "argTypes": [{"nodeId": ".-1.140414028792992"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413987532336"}]}], "returnType": {"nodeId": ".-1.140414028792992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414028792992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028792992", "variance": "INVARIANT"}, "140413987532336": {"type": "Tuple", "items": [{"nodeId": ".1.140413999709344"}, {"nodeId": ".1.140413999709344"}]}, "140413991216720": {"type": "Concrete", "module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958347616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958079872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958078752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958060096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958061440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958060992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958061216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958060544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958060768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958059648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958059872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958060320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958059424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958059200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958058752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958058528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958058976"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324656"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}], "isAbstract": false}, "140413958347616": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958079872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987532784"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987532784": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958078752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987532896"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987532896": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958060096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533008"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533008": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958061440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533120"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533120": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958060992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533232"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533232": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958061216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533344"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533344": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958060544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533456"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533456": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958060768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533568"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533568": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958059648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533680"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533680": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958059872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533792"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533792": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958060320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987533904"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987533904": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958059424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987534016"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987534016": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958059200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987534128"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987534128": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958058752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987534240"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987534240": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958058528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987534352"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987534352": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958058976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987534464"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987534464": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413999709680": {"type": "Concrete", "module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958054272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958053600"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028805536"}, "name": "inode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028805984"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028806432"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028806880"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028807328"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028807776"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028923168"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999709680"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413958054272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}], "returnType": {"nodeId": ".1.140413999709680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999709680": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999709680", "variance": "INVARIANT"}, "140413958053600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}], "returnType": {"nodeId": ".1.140413999709680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414028805536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414028805984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140414028806432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140414028806880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414028807328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413987534912"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140413987534912": {"type": "TypeAlias", "target": {"nodeId": "140413991615424"}}, "140414028807776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413999709680"}]}], "returnType": {"nodeId": ".1.140413999709680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414028923168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140413991217392": {"type": "Concrete", "module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958355120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958047776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958046432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958046208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958045984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958045760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958028896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958028672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958028448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958028224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958028000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958027776"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413958355120": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958047776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535248"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535248": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958046432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535360"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535360": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958046208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535472"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535472": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958045984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535584"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535584": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958045760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535696"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535696": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958028896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535808"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535808": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958028672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987535920"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987535920": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958028448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987536032"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987536032": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958028224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987536144"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987536144": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958028000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987536256"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987536256": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958027776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987536368"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987536368": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991217728": {"type": "Concrete", "module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958356800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958026208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958021280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958025312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958024640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958024192"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": false}, "140413958356800": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958026208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987750064"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987750064": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958021280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987750176"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987750176": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958025312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987750288"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987750288": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958024640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987750400"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987750400": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958024192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987750512"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987750512": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413991218064": {"type": "Concrete", "module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958557024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958020384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958018816"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413958557024": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958020384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987759024"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987759024": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958018816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987759136"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987759136": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991218400": {"type": "Concrete", "module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414029480672"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414029481120"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414029481568"}, "name": "close"}], "typeVars": [{"nodeId": ".1.140413991218400"}], "bases": [{"nodeId": "140414092551760", "args": [{"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413991218400"}]}]}, {"nodeId": "140414012745968", "args": [{"nodeId": "140413991218400", "args": [{"nodeId": ".1.140413991218400"}]}]}], "isAbstract": false}, "140414029480672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991218400", "args": [{"nodeId": ".1.140413991218400"}]}], "returnType": {"nodeId": "140413999709680", "args": [{"nodeId": ".1.140413991218400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413991218400": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413991218400", "variance": "INVARIANT"}, "140414029481120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991218400", "args": [{"nodeId": ".1.140413991218400"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140414029481568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991218400", "args": [{"nodeId": ".1.140413991218400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012745968": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025573184"}, "name": "__enter__"}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945976800"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414012745968"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__enter__", "__exit__"]}, "140414025573184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012745968"}]}], "returnType": {"nodeId": ".1.140414012745968"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140414012745968": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012745968", "variance": "COVARIANT"}, "140413945976800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012745968"}]}, {"nodeId": "140413983273616"}, {"nodeId": "140413983273728"}, {"nodeId": "140413983273840"}], "returnType": {"nodeId": "140413983273952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413983273616": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983273728": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983273840": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413983273952": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413991218736": {"type": "Concrete", "module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414024712928"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414024713376"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140414016442368"}], "isAbstract": false}, "140414024712928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991218736"}, {"nodeId": "140414016442368"}, {"nodeId": "140413999703968", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}, "140413999703968": {"type": "Concrete", "module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991612512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991610608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991287184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999574016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999574128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987094224"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003904800"}, "name": "poll"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003905248"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003905696"}, "name": "communicate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003906144"}, "name": "send_signal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003906592"}, "name": "terminate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003907040"}, "name": "kill"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003907488"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003907936"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003908384"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999703968"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991612512": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413991273072": {"type": "Union", "items": [{"nodeId": "140413991278672"}, {"nodeId": "140414092555120", "args": [{"nodeId": "140413991278784"}]}]}, "140413991278672": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413991278784": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413991610608": {"type": "Union", "items": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "N"}]}, ".1.140413999703968": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999703968", "variance": "INVARIANT"}, "140413991287184": {"type": "Union", "items": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "N"}]}, "140413999574016": {"type": "Union", "items": [{"nodeId": "140414017147216", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "N"}]}, "140413999574128": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "A"}]}, "140413987094224": {"type": "Overloaded", "items": [{"nodeId": "140414017050144"}, {"nodeId": "140414008631904"}, {"nodeId": "140414008632352"}, {"nodeId": "140414008632800"}, {"nodeId": "140414008633248"}, {"nodeId": "140414008633696"}]}, "140414017050144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987248992"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987249216"}, {"nodeId": "140413987249440"}, {"nodeId": "140413987249664"}, {"nodeId": "140413987249888"}, {"nodeId": "140413987250000"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987250336"}, {"nodeId": "140413987250560"}, {"nodeId": "140413987250672"}, {"nodeId": "140413987250896"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413987251008"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987251120"}, {"nodeId": "140413987251232"}, {"nodeId": "140413987251344"}, {"nodeId": "140413987251568"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987248992": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987249216": {"type": "Union", "items": [{"nodeId": "140413987249104"}, {"nodeId": "N"}]}, "140413987249104": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987249440": {"type": "Union", "items": [{"nodeId": "140413987249328"}, {"nodeId": "N"}]}, "140413987249328": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413999572672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140414016324320"}, {"nodeId": "140414017147216", "args": [{"nodeId": "A"}]}]}, "140413987249664": {"type": "Union", "items": [{"nodeId": "140413987249552"}, {"nodeId": "N"}]}, "140413987249552": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987249888": {"type": "Union", "items": [{"nodeId": "140413987249776"}, {"nodeId": "N"}]}, "140413987249776": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987250000": {"type": "Union", "items": [{"nodeId": "140414017044768"}, {"nodeId": "N"}]}, "140414017044768": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987250336": {"type": "Union", "items": [{"nodeId": "140413987250224"}, {"nodeId": "N"}]}, "140413987250224": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987250560": {"type": "Union", "items": [{"nodeId": "140413987250448"}, {"nodeId": "N"}]}, "140413987250448": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413991287520": {"type": "Union", "items": [{"nodeId": "140414092556464", "args": [{"nodeId": "140414017150240"}, {"nodeId": "140413991287072"}]}, {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140413991282480"}]}]}, "140413991287072": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413991282480": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987250672": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987250896": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987251008": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987251120": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987251232": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987251344": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987251568": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987251456"}]}, {"nodeId": "N"}]}, "140413987251456": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414008631904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987251680"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987251904"}, {"nodeId": "140413987252128"}, {"nodeId": "140413987252352"}, {"nodeId": "140413987252576"}, {"nodeId": "140413987252688"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987253024"}, {"nodeId": "140413987253248"}, {"nodeId": "140413987253360"}, {"nodeId": "140413987253584"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413987253696"}, {"nodeId": "140413987253808"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987253920"}, {"nodeId": "140413987254032"}, {"nodeId": "140413987254256"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987251680": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987251904": {"type": "Union", "items": [{"nodeId": "140413987251792"}, {"nodeId": "N"}]}, "140413987251792": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987252128": {"type": "Union", "items": [{"nodeId": "140413987252016"}, {"nodeId": "N"}]}, "140413987252016": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987252352": {"type": "Union", "items": [{"nodeId": "140413987252240"}, {"nodeId": "N"}]}, "140413987252240": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987252576": {"type": "Union", "items": [{"nodeId": "140413987252464"}, {"nodeId": "N"}]}, "140413987252464": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987252688": {"type": "Union", "items": [{"nodeId": "140414017045216"}, {"nodeId": "N"}]}, "140414017045216": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987253024": {"type": "Union", "items": [{"nodeId": "140413987252912"}, {"nodeId": "N"}]}, "140413987252912": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987253248": {"type": "Union", "items": [{"nodeId": "140413987253136"}, {"nodeId": "N"}]}, "140413987253136": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413987253360": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987253584": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987253696": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987253808": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987253920": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987254032": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987254256": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987254144"}]}, {"nodeId": "N"}]}, "140413987254144": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414008632352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987254368"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987254592"}, {"nodeId": "140413987254816"}, {"nodeId": "140413987255040"}, {"nodeId": "140413987255264"}, {"nodeId": "140413987255376"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987255712"}, {"nodeId": "140413987255936"}, {"nodeId": "0"}, {"nodeId": "140413987256272"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413987256384"}, {"nodeId": "140413987256496"}, {"nodeId": "140413987256608"}, {"nodeId": "140413987256720"}, {"nodeId": "140413987256832"}, {"nodeId": "140413987257056"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987254368": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987254592": {"type": "Union", "items": [{"nodeId": "140413987254480"}, {"nodeId": "N"}]}, "140413987254480": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987254816": {"type": "Union", "items": [{"nodeId": "140413987254704"}, {"nodeId": "N"}]}, "140413987254704": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987255040": {"type": "Union", "items": [{"nodeId": "140413987254928"}, {"nodeId": "N"}]}, "140413987254928": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987255264": {"type": "Union", "items": [{"nodeId": "140413987255152"}, {"nodeId": "N"}]}, "140413987255152": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987255376": {"type": "Union", "items": [{"nodeId": "140414017049248"}, {"nodeId": "N"}]}, "140414017049248": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987255712": {"type": "Union", "items": [{"nodeId": "140413987255600"}, {"nodeId": "N"}]}, "140413987255600": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987255936": {"type": "Union", "items": [{"nodeId": "140413987255824"}, {"nodeId": "N"}]}, "140413987255824": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413987256272": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987256384": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987256496": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987256608": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987256720": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987256832": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987257056": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987256944"}]}, {"nodeId": "N"}]}, "140413987256944": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414008632800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987257168"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987257392"}, {"nodeId": "140413987257616"}, {"nodeId": "140413987257840"}, {"nodeId": "140413987258064"}, {"nodeId": "140413987258176"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987291424"}, {"nodeId": "140413987291648"}, {"nodeId": "140413987291760"}, {"nodeId": "140413987291984"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "0"}, {"nodeId": "140413987292208"}, {"nodeId": "140413987292320"}, {"nodeId": "140413987292432"}, {"nodeId": "140413987292544"}, {"nodeId": "140413987292768"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987257168": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987257392": {"type": "Union", "items": [{"nodeId": "140413987257280"}, {"nodeId": "N"}]}, "140413987257280": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987257616": {"type": "Union", "items": [{"nodeId": "140413987257504"}, {"nodeId": "N"}]}, "140413987257504": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987257840": {"type": "Union", "items": [{"nodeId": "140413987257728"}, {"nodeId": "N"}]}, "140413987257728": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987258064": {"type": "Union", "items": [{"nodeId": "140413987257952"}, {"nodeId": "N"}]}, "140413987257952": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987258176": {"type": "Union", "items": [{"nodeId": "140414017049472"}, {"nodeId": "N"}]}, "140414017049472": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987291424": {"type": "Union", "items": [{"nodeId": "140413987291312"}, {"nodeId": "N"}]}, "140413987291312": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987291648": {"type": "Union", "items": [{"nodeId": "140413987291536"}, {"nodeId": "N"}]}, "140413987291536": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413987291760": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987291984": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987292208": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987292320": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987292432": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987292544": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987292768": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987292656"}]}, {"nodeId": "N"}]}, "140413987292656": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414008633248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987292880"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987293104"}, {"nodeId": "140413987293328"}, {"nodeId": "140413987293552"}, {"nodeId": "140413987293776"}, {"nodeId": "140413987293888"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987294224"}, {"nodeId": "140413987294448"}, {"nodeId": "140413987294672"}, {"nodeId": "140413987294896"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413987295120"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140413987295232"}, {"nodeId": "140413987295344"}, {"nodeId": "140413987295568"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987292880": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987293104": {"type": "Union", "items": [{"nodeId": "140413987292992"}, {"nodeId": "N"}]}, "140413987292992": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987293328": {"type": "Union", "items": [{"nodeId": "140413987293216"}, {"nodeId": "N"}]}, "140413987293216": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987293552": {"type": "Union", "items": [{"nodeId": "140413987293440"}, {"nodeId": "N"}]}, "140413987293440": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987293776": {"type": "Union", "items": [{"nodeId": "140413987293664"}, {"nodeId": "N"}]}, "140413987293664": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987293888": {"type": "Union", "items": [{"nodeId": "140414017050592"}, {"nodeId": "N"}]}, "140414017050592": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987294224": {"type": "Union", "items": [{"nodeId": "140413987294112"}, {"nodeId": "N"}]}, "140413987294112": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987294448": {"type": "Union", "items": [{"nodeId": "140413987294336"}, {"nodeId": "N"}]}, "140413987294336": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413987294672": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413987294896": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987295120": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140413987295232": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987295344": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987295568": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987295456"}]}, {"nodeId": "N"}]}, "140413987295456": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414008633696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": "A"}]}, {"nodeId": "140413987295792"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987296016"}, {"nodeId": "140413987296240"}, {"nodeId": "140413987296464"}, {"nodeId": "140413987296688"}, {"nodeId": "140413987296800"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413987297136"}, {"nodeId": "140413987297360"}, {"nodeId": "140413987297472"}, {"nodeId": "140413987297696"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092554784", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140413987297808"}, {"nodeId": "140413987297920"}, {"nodeId": "140413987298032"}, {"nodeId": "140413987298144"}, {"nodeId": "140413987298256"}, {"nodeId": "140413987298480"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "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"]}, "140413987295792": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987296016": {"type": "Union", "items": [{"nodeId": "140413987295904"}, {"nodeId": "N"}]}, "140413987295904": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987296240": {"type": "Union", "items": [{"nodeId": "140413987296128"}, {"nodeId": "N"}]}, "140413987296128": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987296464": {"type": "Union", "items": [{"nodeId": "140413987296352"}, {"nodeId": "N"}]}, "140413987296352": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987296688": {"type": "Union", "items": [{"nodeId": "140413987296576"}, {"nodeId": "N"}]}, "140413987296576": {"type": "TypeAlias", "target": {"nodeId": "140413999572672"}}, "140413987296800": {"type": "Union", "items": [{"nodeId": "140414017047680"}, {"nodeId": "N"}]}, "140414017047680": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140413987297136": {"type": "Union", "items": [{"nodeId": "140413987297024"}, {"nodeId": "N"}]}, "140413987297024": {"type": "TypeAlias", "target": {"nodeId": "140414008329376"}}, "140413987297360": {"type": "Union", "items": [{"nodeId": "140413987297248"}, {"nodeId": "N"}]}, "140413987297248": {"type": "TypeAlias", "target": {"nodeId": "140413991287520"}}, "140413987297472": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987297696": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140413987297808": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140413987297920": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987298032": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413987298144": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987298256": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413987298480": {"type": "Union", "items": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413987298368"}]}, {"nodeId": "N"}]}, "140413987298368": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414003904800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}], "returnType": {"nodeId": "140413987298592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987298592": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414003905248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "140413987298704"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140413987298704": {"type": "Union", "items": [{"nodeId": "140414016324656"}, {"nodeId": "N"}]}, "140414003905696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "140413987298816"}, {"nodeId": "140413987298928"}], "returnType": {"nodeId": "140413987299152"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}, "140413987298816": {"type": "Union", "items": [{"nodeId": ".1.140413999703968"}, {"nodeId": "N"}]}, "140413987298928": {"type": "Union", "items": [{"nodeId": "140414016324656"}, {"nodeId": "N"}]}, "140413987299152": {"type": "Tuple", "items": [{"nodeId": ".1.140413999703968"}, {"nodeId": ".1.140413999703968"}]}, "140414003906144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}, "140414003906592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414003907040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414003907488": {"type": "Function", "typeVars": [".-1.140414003907488"], "argTypes": [{"nodeId": ".-1.140414003907488"}], "returnType": {"nodeId": ".-1.140414003907488"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414003907488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414003907488", "variance": "INVARIANT"}, "140414003907936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703968", "args": [{"nodeId": ".1.140413999703968"}]}, {"nodeId": "140413987299264"}, {"nodeId": "140413987299376"}, {"nodeId": "140413987299488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413987299264": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413987299376": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413987299488": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414003908384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140414024713376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991218736"}], "returnType": {"nodeId": "140413987903120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987903120": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413991219072": {"type": "Concrete", "module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958566208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958008480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958007584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958007136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958007360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413957711104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324656"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324656"}]}], "isAbstract": false}, "140413958566208": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958008480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987904912"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987904912": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958007584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987904800"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987904800": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958007136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987905136"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987905136": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413958007360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987905472"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987905472": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413957711104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987905584"}], "returnType": {"nodeId": "140414016324656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987905584": {"type": "Tuple", "items": [{"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}, {"nodeId": "140414016324656"}]}, "140413991219408": {"type": "Concrete", "module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413958568448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958233824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958234944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958235168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958235392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958235616"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413958568448": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413958233824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987907040"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987907040": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958234944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987907376"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987907376": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958235168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987907712"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987907712": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958235392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987907824"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987907824": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413958235616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987907936"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987907936": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413991219744": {"type": "Concrete", "module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413953556880"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414024829856"}, "name": "__new__"}, {"kind": "Variable", "name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413958236960"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414000232624", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016324320"}]}], "isAbstract": false}, "140413953556880": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}]}, "140414024829856": {"type": "Function", "typeVars": [".-1.140414024829856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414024829856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}, ".-1.140414024829856": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414024829856", "variance": "INVARIANT"}, "140413958236960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413987911184"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987911184": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}]}, "140414016976736": {"type": "Concrete", "module": "abc", "simpleName": "abstractclassmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028631168"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140414016976736"}], "bases": [{"nodeId": "140414092557808", "args": [{"nodeId": ".1.140414016976736"}]}], "isAbstract": false}, "140414028631168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016976736", "args": [{"nodeId": ".1.140414016976736"}]}, {"nodeId": "140413983335456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140414016976736": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016976736", "variance": "COVARIANT"}, "140413983335456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414016976736"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414016977072": {"type": "Concrete", "module": "abc", "simpleName": "abstractstaticmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028631616"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140414016977072"}], "bases": [{"nodeId": "140414092557472", "args": [{"nodeId": ".1.140414016977072"}]}], "isAbstract": false}, "140414028631616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016977072", "args": [{"nodeId": ".1.140414016977072"}]}, {"nodeId": "140413983334784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140414016977072": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414016977072", "variance": "COVARIANT"}, "140413983334784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140414016977072"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414016977408": {"type": "Concrete", "module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016328352"}], "isAbstract": false}, "140414016977744": {"type": "Concrete", "module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414000219184": {"type": "Protocol", "module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028633632"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028634080"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028634528"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["close", "seek", "write"]}, "140414028633632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219184"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414028634080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219184"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414028634528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219184"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414000219520": {"type": "Protocol", "module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028634976"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028635424"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028635872"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["close", "read", "seek"]}, "140414028634976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219520"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414028635424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219520"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140414028635872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219520"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413991487184": {"type": "Protocol", "module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140414000219184"}, {"nodeId": "140414000219520"}], "protocolMembers": ["close", "read", "seek", "write"]}, "140414000219856": {"type": "Protocol", "module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028636320"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028636320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000219856"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413978592752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140413978592752": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414000220192": {"type": "Protocol", "module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028636768"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028636768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000220192"}, {"nodeId": "140414017150240"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413978592976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140413978592976": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414000220528": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028637216"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028637216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000220528"}, {"nodeId": "140414000219520"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413991488864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140413991488864": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000219520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025433376"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025433824"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025434272"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025434720"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025435168"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025435616"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025436064"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025436512"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025436960"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025437408"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414000221872"}], "isAbstract": false}, "140414025433376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140414000219520"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140414025433824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}, "140414025434272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140413978598912"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}, "140413978598912": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025434720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140413978599024"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}, "140413978599024": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025435168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025435616": {"type": "Function", "typeVars": [".-1.140414025435616"], "argTypes": [{"nodeId": ".-1.140414025435616"}], "returnType": {"nodeId": ".-1.140414025435616"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025435616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025435616", "variance": "INVARIANT"}, "140414025436064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140413978599136"}, {"nodeId": "140413978599248"}, {"nodeId": "140413978599360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413978599136": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413978599248": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413978599360": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414025436512": {"type": "Function", "typeVars": [".-1.140414025436512"], "argTypes": [{"nodeId": ".-1.140414025436512"}], "returnType": {"nodeId": ".-1.140414025436512"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025436512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025436512", "variance": "INVARIANT"}, "140414025436960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025437408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488864"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983333664"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413983333664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414000221872": {"type": "Concrete", "module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025307232"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025307680"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414025307232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000221872"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413978596784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140413978596784": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414025307680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000221872"}, {"nodeId": "140414017150240"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413978597008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140413978597008": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414000220864": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028637664"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028637664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000220864"}, {"nodeId": "140414000219184"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413991488528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140413991488528": {"type": "Concrete", "module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414000219184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025315296"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025315744"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025316192"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025316640"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025317088"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025317536"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025317984"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140414000221872"}], "isAbstract": false}, "140414025315296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}, {"nodeId": "140414000219184"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140414025315744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}, "140414025316192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140414025316640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025317088": {"type": "Function", "typeVars": [".-1.140414025317088"], "argTypes": [{"nodeId": ".-1.140414025317088"}], "returnType": {"nodeId": ".-1.140414025317088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025317088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025317088", "variance": "INVARIANT"}, "140414025317536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}, {"nodeId": "140413978598352"}, {"nodeId": "140413978598464"}, {"nodeId": "140413978598576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413978598352": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413978598464": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413978598576": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414025317984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488528"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983332992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413983332992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414000221200": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028638112"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028638112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000221200"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414000222208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140414000222208": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025308128"}, "name": "__init__"}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413936741376"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025309024"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025309472"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025309920"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": true}, "140414025308128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222208"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140413936741376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222208"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140414025309024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025309472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222208"}], "returnType": {"nodeId": "140413978597120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978597120": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414025309920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222208"}, {"nodeId": "140413978597232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140413978597232": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414000221536": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028638560"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__call__"]}, "140414028638560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000221536"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414000222544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140413991487520": {"type": "Concrete", "module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936820384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936812096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936813664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936745408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936743392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413936744512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414028641696"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414092547392"}]}], "isAbstract": false}, "140413936820384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593200"}], "returnType": {"nodeId": "140414000219856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593200": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140413936812096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593312"}], "returnType": {"nodeId": "140414000220192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593312": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140413936813664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593424"}], "returnType": {"nodeId": "140414000220528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593424": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140413936745408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593536"}], "returnType": {"nodeId": "140414000220864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593536": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140413936743392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593648"}], "returnType": {"nodeId": "140414000221200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593648": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140413936744512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413978593760"}], "returnType": {"nodeId": "140414000221536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413978593760": {"type": "Tuple", "items": [{"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}]}, "140414028641696": {"type": "Function", "typeVars": [".-1.140414028641696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140413978593088"}, {"nodeId": "140413978593872"}, {"nodeId": "140413978593984"}, {"nodeId": "140413978594096"}, {"nodeId": "140413978594208"}, {"nodeId": "140413978594320"}], "returnType": {"nodeId": ".-1.140414028641696"}, "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"]}, "140413978593088": {"type": "Union", "items": [{"nodeId": "140414000220528"}, {"nodeId": "N"}]}, "140413978593872": {"type": "Union", "items": [{"nodeId": "140414000220864"}, {"nodeId": "N"}]}, "140413978593984": {"type": "Union", "items": [{"nodeId": "140414000221200"}, {"nodeId": "N"}]}, "140413978594096": {"type": "Union", "items": [{"nodeId": "140414000221536"}, {"nodeId": "N"}]}, "140413978594208": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413978594320": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, ".-1.140414028641696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414028641696", "variance": "INVARIANT"}, "140413991487856": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025312608"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413936739584"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025313504"}, "name": "encode"}], "typeVars": [], "bases": [{"nodeId": "140414000222208"}], "isAbstract": true}, "140414025312608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991487856"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140413936739584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991487856"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140414025313504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991487856"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140413991488192": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414017150240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025313952"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413936738464"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025314848"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140414000222544"}], "isAbstract": true}, "140414025313952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488192"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140413936738464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488192"}, {"nodeId": "140413978597904"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413978598128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140413978597904": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413978598128": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414025314848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991488192"}, {"nodeId": "140413978598240"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140413978598240": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413991489200": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991487184"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025437856"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025438304"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025438752"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025439200"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025439648"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025440096"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025440544"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025440992"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025441440"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025441888"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025442336"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025442784"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025443232"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025443680"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025444128"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025444576"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025445024"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025445472"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025445920"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025446368"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025446816"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025447264"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140414017147888"}], "isAbstract": false}, "140414025437856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140413991487184"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}, "140414025438304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140414025438752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140413978599696"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140413978599696": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025439200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140413978599808"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140413978599808": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025439648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025440096": {"type": "Function", "typeVars": [".-1.140414025440096"], "argTypes": [{"nodeId": ".-1.140414025440096"}], "returnType": {"nodeId": ".-1.140414025440096"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025440096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025440096", "variance": "INVARIANT"}, "140414025440544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140414025440992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140414025441440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025441888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140414025442336": {"type": "Function", "typeVars": [".-1.140414025442336"], "argTypes": [{"nodeId": ".-1.140414025442336"}], "returnType": {"nodeId": ".-1.140414025442336"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025442336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025442336", "variance": "INVARIANT"}, "140414025442784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140413978599920"}, {"nodeId": "140413978600032"}, {"nodeId": "140413978600144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413978599920": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413978600032": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413978600144": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414025443232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414025443680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025444128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025444576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025445024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025445472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025445920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}, {"nodeId": "140413978600368"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140413978600368": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025446368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025446816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025447264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991489200"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414000222880": {"type": "Concrete", "module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025447712"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025448160"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025448608"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025449056"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025564448"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025564896"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025565344"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025565792"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025566240"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025566688"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025567136"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025567584"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025568032"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025568480"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025568928"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025569376"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025569824"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025570272"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025570720"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025571168"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025571616"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025572064"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140414017147552"}], "isAbstract": false}, "140414025447712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140413991487184"}, {"nodeId": "140414000219856"}, {"nodeId": "140414000220192"}, {"nodeId": "140414000220528"}, {"nodeId": "140414000220864"}, {"nodeId": "140414016326000"}], "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"]}, "140414025448160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140414025448608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140413978600480"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140413978600480": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025449056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140413978600592"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414017150240"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140413978600592": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025564448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025564896": {"type": "Function", "typeVars": [".-1.140414025564896"], "argTypes": [{"nodeId": ".-1.140414025564896"}], "returnType": {"nodeId": ".-1.140414025564896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025564896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025564896", "variance": "INVARIANT"}, "140414025565344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140414017150240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140414025565792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414017150240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140414025566240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025566688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414025567136": {"type": "Function", "typeVars": [".-1.140414025567136"], "argTypes": [{"nodeId": ".-1.140414025567136"}], "returnType": {"nodeId": ".-1.140414025567136"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025567136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025567136", "variance": "INVARIANT"}, "140414025567584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140413978600816"}, {"nodeId": "140413978600928"}, {"nodeId": "140413978601040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413978600816": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413978600928": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413978601040": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414025568032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140414025568480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025568928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025569376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025569824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025570272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025570720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}, {"nodeId": "140413978601152"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140413978601152": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414025571168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025571616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025572064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000222880"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012746304": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983327840"}, "name": "__aenter__"}, {"kind": "Variable", "name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945974336"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140414012746304"}], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__aenter__", "__aexit__"]}, "140413983327840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012746304", "args": [{"nodeId": ".1.140414012746304"}]}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140414012746304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140414012746304": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012746304", "variance": "COVARIANT"}, "140413945974336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012746304", "args": [{"nodeId": ".1.140414012746304"}]}, {"nodeId": "140413983274176"}, {"nodeId": "140413983274288"}, {"nodeId": "140413983274400"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140413983274512"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140413983274176": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983274288": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983274400": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413983274512": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414012746640": {"type": "Concrete", "module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025574976"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414025574976": {"type": "Function", "typeVars": [".-1.140414025574976"], "argTypes": [{"nodeId": "140414012746640"}, {"nodeId": ".-1.140414025574976"}], "returnType": {"nodeId": ".-1.140414025574976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140414025574976": {"type": "TypeVar", "varName": "_F", "values": [], "upperBound": {"nodeId": "140414020824288"}, "def": "140414025574976", "variance": "INVARIANT"}, "140414020824288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414012746976": {"type": "Concrete", "module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025575424"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414012746976"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414020825856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025575872"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140414012746976"}], "bases": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012746976"}]}, {"nodeId": "140414012746640"}], "isAbstract": false}, "140414025575424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012746976", "args": [{"nodeId": ".1.140414012746976"}]}, {"nodeId": "140413983327616"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140414012746976": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012746976", "variance": "COVARIANT"}, "140413983327616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".1.140414012746976"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414020825856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".1.140414012746976"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414025575872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012746976", "args": [{"nodeId": ".1.140414012746976"}]}, {"nodeId": "140413983275072"}, {"nodeId": "140413983275184"}, {"nodeId": "140413983275296"}], "returnType": {"nodeId": "140413983275408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413983275072": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983275184": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983275296": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413983275408": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414012747312": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025576768"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414025576768": {"type": "Function", "typeVars": [".-1.140414025576768"], "argTypes": [{"nodeId": "140414012747312"}, {"nodeId": ".-1.140414025576768"}], "returnType": {"nodeId": ".-1.140414025576768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140414025576768": {"type": "TypeVar", "varName": "_AF", "values": [], "upperBound": {"nodeId": "140414020825408"}, "def": "140414025576768", "variance": "INVARIANT"}, "140414020825408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414012747648": {"type": "Concrete", "module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025577216"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414012747648"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008126464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983329184"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140414012747648"}], "bases": [{"nodeId": "140414012746304", "args": [{"nodeId": ".1.140414012747648"}]}, {"nodeId": "140414012747312"}], "isAbstract": false}, "140414025577216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012747648", "args": [{"nodeId": ".1.140414012747648"}]}, {"nodeId": "140413983329408"}, {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140414012747648": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012747648", "variance": "COVARIANT"}, "140413983329408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092553776", "args": [{"nodeId": ".1.140414012747648"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414008126464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414092554112", "args": [{"nodeId": ".1.140414012747648"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140413983329184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012747648", "args": [{"nodeId": ".1.140414012747648"}]}, {"nodeId": "140413983275856"}, {"nodeId": "140413983275968"}, {"nodeId": "140413983276080"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140413983276192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}, "140413983275856": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983275968": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983276080": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140413983276192": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414012747984": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025579456"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["close"]}, "140414025579456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012747984"}], "returnType": {"nodeId": "140414092547392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012748320": {"type": "Concrete", "module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025579904"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025629760"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140414012748320"}], "bases": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012748320"}]}], "isAbstract": false}, "140414025579904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012748320", "args": [{"nodeId": ".1.140414012748320"}]}, {"nodeId": ".1.140414012748320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140414012748320": {"type": "TypeVar", "varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140414012747984"}, "def": "140414012748320", "variance": "INVARIANT"}, "140414025629760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012748320", "args": [{"nodeId": ".1.140414012748320"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140414012748656": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025630208"}, "name": "aclose"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["aclose"]}, "140414025630208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012748656"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": "140414092547392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012748992": {"type": "Concrete", "module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025630656"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983330080"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140414012748992"}], "bases": [{"nodeId": "140414012746304", "args": [{"nodeId": ".1.140414012748992"}]}], "isAbstract": false}, "140414025630656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012748992", "args": [{"nodeId": ".1.140414012748992"}]}, {"nodeId": ".1.140414012748992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140414012748992": {"type": "TypeVar", "varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140414012748656"}, "def": "140414012748992", "variance": "INVARIANT"}, "140413983330080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012748992", "args": [{"nodeId": ".1.140414012748992"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}, "140414012749328": {"type": "Concrete", "module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025631552"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025632000"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140414012745968", "args": [{"nodeId": "N"}]}], "isAbstract": false}, "140414025631552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012749328"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}, "140414025632000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012749328"}, {"nodeId": "140413983276528"}, {"nodeId": "140413983276640"}, {"nodeId": "140413983276752"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413983276528": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983276640": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983276752": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414012749664": {"type": "Concrete", "module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025632448"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025632896"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140414012749664"}], "bases": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012749664"}]}], "isAbstract": false}, "140414025632448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012749664", "args": [{"nodeId": ".1.140414012749664"}]}, {"nodeId": ".1.140414012749664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}, ".1.140414012749664": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140414008763536"}, "def": "140414012749664", "variance": "INVARIANT"}, "140414008763536": {"type": "Union", "items": [{"nodeId": "140414017147216", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414025632896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012749664", "args": [{"nodeId": ".1.140414012749664"}]}, {"nodeId": "140413983276864"}, {"nodeId": "140413983457344"}, {"nodeId": "140413983457456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413983276864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983457344": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983457456": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414012750000": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140414012750000"}], "bases": [{"nodeId": "140414012749664", "args": [{"nodeId": ".1.140414012750000"}]}], "isAbstract": false}, ".1.140414012750000": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140414008763536"}, "def": "140414012750000", "variance": "INVARIANT"}, "140414012750336": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140414012750336"}], "bases": [{"nodeId": "140414012749664", "args": [{"nodeId": ".1.140414012750336"}]}], "isAbstract": false}, ".1.140414012750336": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140414008763536"}, "def": "140414012750336", "variance": "INVARIANT"}, "140414012750672": {"type": "Concrete", "module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025633344"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025633792"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025634240"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025634688"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025635136"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025635584"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025636032"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414025633344": {"type": "Function", "typeVars": [".-1.140414025633344"], "argTypes": [{"nodeId": "140414012750672"}, {"nodeId": "140414012745968", "args": [{"nodeId": ".-1.140414025633344"}]}], "returnType": {"nodeId": ".-1.140414025633344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140414025633344": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025633344", "variance": "INVARIANT"}, "140414025633792": {"type": "Function", "typeVars": [".-1.140414025633792"], "argTypes": [{"nodeId": "140414012750672"}, {"nodeId": ".-1.140414025633792"}], "returnType": {"nodeId": ".-1.140414025633792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140414025633792": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140413991534768"}, "def": "140414025633792", "variance": "INVARIANT"}, "140413991534768": {"type": "Union", "items": [{"nodeId": "140414012745968", "args": [{"nodeId": "A"}]}, {"nodeId": "140413991534656"}]}, "140413991534656": {"type": "TypeAlias", "target": {"nodeId": "140414008636160"}}, "140414008636160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008338336"}, {"nodeId": "140414008337776"}, {"nodeId": "140414008338000"}], "returnType": {"nodeId": "140414008338112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414008338336": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140414008337776": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140414008338000": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414008338112": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414025634240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012750672"}, {"nodeId": "140413983330304"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140413983330528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140413983330304": {"type": "Function", "typeVars": [".-2.140413983330304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140413983330304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983330304": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983330304", "variance": "INVARIANT"}, "140413983330528": {"type": "Function", "typeVars": [".-2.140413983330528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140413983330528"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983330528": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983330528", "variance": "INVARIANT"}, "140414025634688": {"type": "Function", "typeVars": [".-1.140414025634688"], "argTypes": [{"nodeId": ".-1.140414025634688"}], "returnType": {"nodeId": ".-1.140414025634688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414025634688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025634688", "variance": "INVARIANT"}, "140414025635136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012750672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025635584": {"type": "Function", "typeVars": [".-1.140414025635584"], "argTypes": [{"nodeId": ".-1.140414025635584"}], "returnType": {"nodeId": ".-1.140414025635584"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414025635584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025635584", "variance": "INVARIANT"}, "140414025636032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012750672"}, {"nodeId": "140413983457904"}, {"nodeId": "140413983457680"}, {"nodeId": "140413983457792"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140413983457904": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983457680": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983457792": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414012751008": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025636480"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140413983330752"}, "name": "enter_async_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025637376"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025637824"}, "name": "push_async_exit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025638272"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025638720"}, "name": "push_async_callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025636928"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025639168"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025640064"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025639616"}, "name": "__aexit__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414025636480": {"type": "Function", "typeVars": [".-1.140414025636480"], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": "140414012745968", "args": [{"nodeId": ".-1.140414025636480"}]}], "returnType": {"nodeId": ".-1.140414025636480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140414025636480": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025636480", "variance": "INVARIANT"}, "140413983330752": {"type": "Function", "typeVars": [".-1.140413983330752"], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": "140414012746304", "args": [{"nodeId": ".-1.140413983330752"}]}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140413983330752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140413983330752": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983330752", "variance": "INVARIANT"}, "140414025637376": {"type": "Function", "typeVars": [".-1.140414025637376"], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": ".-1.140414025637376"}], "returnType": {"nodeId": ".-1.140414025637376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140414025637376": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140413991534768"}, "def": "140414025637376", "variance": "INVARIANT"}, "140414025637824": {"type": "Function", "typeVars": [".-1.140414025637824"], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": ".-1.140414025637824"}], "returnType": {"nodeId": ".-1.140414025637824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140414025637824": {"type": "TypeVar", "varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140413991535776"}, "def": "140414025637824", "variance": "INVARIANT"}, "140413991535776": {"type": "Union", "items": [{"nodeId": "140414012746304", "args": [{"nodeId": "A"}]}, {"nodeId": "140413991536112"}]}, "140413991536112": {"type": "TypeAlias", "target": {"nodeId": "140414008635264"}}, "140414008635264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008334752"}, {"nodeId": "140414008335312"}, {"nodeId": "140414008334304"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": "140414008334416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414008334752": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140414008335312": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140414008334304": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414008334416": {"type": "Union", "items": [{"nodeId": "140414092547728"}, {"nodeId": "N"}]}, "140414025638272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": "140413983327168"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140413983330976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140413983327168": {"type": "Function", "typeVars": [".-2.140413983327168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140413983327168"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983327168": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983327168", "variance": "INVARIANT"}, "140413983330976": {"type": "Function", "typeVars": [".-2.140413983330976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140413983330976"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983330976": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983330976", "variance": "INVARIANT"}, "140414025638720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": "140413983326720"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140413983331424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140413983326720": {"type": "Function", "typeVars": [".-2.140413983326720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".-2.140413983326720"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983326720": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983326720", "variance": "INVARIANT"}, "140413983331424": {"type": "Function", "typeVars": [".-2.140413983331424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140414092552768", "args": [{"nodeId": ".-2.140413983331424"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140413983331424": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413983331424", "variance": "INVARIANT"}, "140414025636928": {"type": "Function", "typeVars": [".-1.140414025636928"], "argTypes": [{"nodeId": ".-1.140414025636928"}], "returnType": {"nodeId": ".-1.140414025636928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414025636928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025636928", "variance": "INVARIANT"}, "140414025639168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751008"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025640064": {"type": "Function", "typeVars": [".-1.140414025640064"], "argTypes": [{"nodeId": ".-1.140414025640064"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140414025640064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414025640064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414025640064", "variance": "INVARIANT"}, "140414025639616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751008"}, {"nodeId": "140413983458352"}, {"nodeId": "140413983458688"}, {"nodeId": "140413983458800"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140414092547728"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140413983458352": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140413983458688": {"type": "Union", "items": [{"nodeId": "140414016331712"}, {"nodeId": "N"}]}, "140413983458800": {"type": "Union", "items": [{"nodeId": "140413999699264"}, {"nodeId": "N"}]}, "140414012751344": {"type": "Concrete", "module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140414012751344"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983458240"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025641856"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025642304"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025641408"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414025642752"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140414012751344"}], "bases": [{"nodeId": "140414012745968", "args": [{"nodeId": ".1.140414012751344"}]}, {"nodeId": "140414012746304", "args": [{"nodeId": ".1.140414012751344"}]}], "isAbstract": false}, ".1.140414012751344": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012751344", "variance": "INVARIANT"}, "140413983458240": {"type": "Overloaded", "items": [{"nodeId": "140414025640512"}, {"nodeId": "140414025640960"}]}, "140414025640512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}, "140414025640960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": ".1.140414012751344"}]}, {"nodeId": ".1.140414012751344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}, "140414025641856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": ".1.140414012751344"}]}], "returnType": {"nodeId": ".1.140414012751344"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414025642304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": ".1.140414012751344"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140414025641408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": ".1.140414012751344"}]}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140414012751344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414025642752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414012751344", "args": [{"nodeId": ".1.140414012751344"}]}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092553104", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}, "140413999706320": {"type": "Concrete", "module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961891264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961889024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961888128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961887456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961886784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961886112"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987248880"}, "items": [{"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "expand"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987302960"}, "items": [{"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "group"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987303744"}, "items": [{"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groups"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987303968"}, "items": [{"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groupdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037319840"}, "name": "start"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037320288"}, "name": "end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037320736"}, "name": "span"}, {"kind": "Variable", "name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961885440"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987305088"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037322528"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037322976"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037323424"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999706320"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413961891264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999706320": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999706320", "variance": "INVARIANT"}, "140413961889024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413961888128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140413987303520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987303520": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413961887456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140413987303632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987303632": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413961886784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": ".1.140413999706320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413961886112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413999706656": {"type": "Concrete", "module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961782656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961783104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961784000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413961784672"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987305536"}, "items": [{"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "search"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987306768"}, "items": [{"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "match"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987422384"}, "items": [{"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fullmatch"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987422832"}, "items": [{"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "split"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987423280"}, "items": [{"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "findall"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987423728"}, "items": [{"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "finditer"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987424400"}, "items": [{"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sub"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413987424848"}, "items": [{"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037415008"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037415456"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037415904"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999706656"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413961782656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140413999706656": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999706656", "variance": "INVARIANT"}, "140413961783104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}], "returnType": {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413961784000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413961784672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}], "returnType": {"nodeId": ".1.140413999706656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987305536": {"type": "Overloaded", "items": [{"nodeId": "140414037325664"}, {"nodeId": "140414017053504"}]}, "140414037325664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987422496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987422496": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414017053504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987422608"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987422720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987422608": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987422720": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "N"}]}, "140413987306768": {"type": "Overloaded", "items": [{"nodeId": "140414037326560"}, {"nodeId": "140414017048128"}]}, "140414037326560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987422944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987422944": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414017048128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987423056"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987423168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987423056": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987423168": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "N"}]}, "140413987422384": {"type": "Overloaded", "items": [{"nodeId": "140414037327456"}, {"nodeId": "140414017046560"}]}, "140414037327456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987423392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987423392": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414017046560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987423504"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987423616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987423504": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987423616": {"type": "Union", "items": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "N"}]}, "140413987422832": {"type": "Overloaded", "items": [{"nodeId": "140414037410528"}, {"nodeId": "140414017050368"}]}, "140414037410528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413987423952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140413987423952": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "140414017050368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987424064"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413987424288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140413987424064": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987424288": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "A"}]}, "140413987423280": {"type": "Overloaded", "items": [{"nodeId": "140414037411424"}, {"nodeId": "140414017060000"}]}, "140414037411424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140414017060000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987424624"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987424624": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987423728": {"type": "Overloaded", "items": [{"nodeId": "140414037412320"}, {"nodeId": "140414017048800"}]}, "140414037412320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140414017048800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987424960"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140413987424960": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987424400": {"type": "Overloaded", "items": [{"nodeId": "140414037413216"}, {"nodeId": "140414017047904"}]}, "140414037413216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987425184"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140413987425184": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017045888"}]}, "140414017045888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414017047904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987425408"}, {"nodeId": "140413987425632"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140413987425408": {"type": "Union", "items": [{"nodeId": "140413987425296"}, {"nodeId": "140414017056416"}]}, "140413987425296": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414017056416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}], "returnType": {"nodeId": "140413987425520"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413987425520": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987425632": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987424848": {"type": "Overloaded", "items": [{"nodeId": "140414037414112"}, {"nodeId": "140414017057536"}]}, "140414037414112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140413987425856"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987426080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140413987425856": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017056192"}]}, "140414017056192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413987426080": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140414017057536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987426304"}, {"nodeId": "140413987426528"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413987426752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140413987426304": {"type": "Union", "items": [{"nodeId": "140413987426192"}, {"nodeId": "140414017060224"}]}, "140413987426192": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140414017060224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}], "returnType": {"nodeId": "140413987426416"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413987426416": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987426528": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987426752": {"type": "Tuple", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414016324320"}]}, "140414037415008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}], "returnType": {"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414037415456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999706656", "args": [{"nodeId": ".1.140413999706656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414037415904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140413987248880": {"type": "Overloaded", "items": [{"nodeId": "140414037315808"}, {"nodeId": "140414017049920"}]}, "140414037315808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140414017049920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": "140414017150240"}]}, {"nodeId": "140413987303856"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140413987303856": {"type": "TypeAlias", "target": {"nodeId": "140414021319392"}}, "140413987302960": {"type": "Overloaded", "items": [{"nodeId": "140414037316704"}, {"nodeId": "140414037317152"}, {"nodeId": "140414037317600"}]}, "140414037316704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140413999706320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140414037317152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987304192"}], "returnType": {"nodeId": "140413987304416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140413987304192": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413987304416": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": "A"}]}, "140414037317600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987304528"}, {"nodeId": "140413987304640"}, {"nodeId": "140413987304752"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140413987304976"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}, "140413987304528": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413987304640": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413987304752": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "140413987304976": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": "A"}]}, "140413987303744": {"type": "Overloaded", "items": [{"nodeId": "140414037318048"}, {"nodeId": "140414037318496"}]}, "140414037318048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140413987305312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987305312": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": "A"}]}, "140414037318496": {"type": "Function", "typeVars": [".-1.140414037318496"], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": ".-1.140414037318496"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140413987305424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140414037318496": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414037318496", "variance": "INVARIANT"}, "140413987305424": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": ".-1.140414037318496"}]}, "140413987303968": {"type": "Overloaded", "items": [{"nodeId": "140414037318944"}, {"nodeId": "140414037319392"}]}, "140414037318944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140413987305760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987305760": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": "A"}]}, "140414037319392": {"type": "Function", "typeVars": [".-1.140414037319392"], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": ".-1.140414037319392"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140413987305872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140414037319392": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414037319392", "variance": "INVARIANT"}, "140413987305872": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": ".-1.140414037319392"}]}, "140414037319840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987305984"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413987305984": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414037320288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987306096"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413987306096": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140414037320736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987306208"}], "returnType": {"nodeId": "140413987306432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140413987306208": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140413987306432": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413961885440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "140413987306656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987306656": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413987305088": {"type": "Overloaded", "items": [{"nodeId": "140414037321632"}, {"nodeId": "140414037322080"}]}, "140414037321632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140413999706320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414037322080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "140413987306992"}], "returnType": {"nodeId": "140413987307216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413987306992": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}]}, "140413987307216": {"type": "Union", "items": [{"nodeId": ".1.140413999706320"}, {"nodeId": "A"}]}, "140414037322528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}], "returnType": {"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414037322976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999706320", "args": [{"nodeId": ".1.140413999706320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140414037323424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140413991216384": {"type": "Concrete", "module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016452784"}], "isAbstract": false}, "140414016452784": {"type": "Concrete", "module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012137408"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012137856"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012138304"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012138752"}, "name": "__xor__"}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945107776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945108672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945109568"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016324320"}, {"nodeId": "140414016452448"}], "isAbstract": false}, "140414012137408": {"type": "Function", "typeVars": [".-1.140414012137408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414012137408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140414012137408": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012137408", "variance": "INVARIANT"}, "140414012137856": {"type": "Function", "typeVars": [".-1.140414012137856"], "argTypes": [{"nodeId": ".-1.140414012137856"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414012137856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012137856": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012137856", "variance": "INVARIANT"}, "140414012138304": {"type": "Function", "typeVars": [".-1.140414012138304"], "argTypes": [{"nodeId": ".-1.140414012138304"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414012138304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012138304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012138304", "variance": "INVARIANT"}, "140414012138752": {"type": "Function", "typeVars": [".-1.140414012138752"], "argTypes": [{"nodeId": ".-1.140414012138752"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414012138752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012138752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012138752", "variance": "INVARIANT"}, "140413945107776": {"type": "Function", "typeVars": [".-1.140413945107776"], "argTypes": [{"nodeId": ".-1.140413945107776"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945107776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413945107776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945107776", "variance": "INVARIANT"}, "140413945108672": {"type": "Function", "typeVars": [".-1.140413945108672"], "argTypes": [{"nodeId": ".-1.140413945108672"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945108672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413945108672": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945108672", "variance": "INVARIANT"}, "140413945109568": {"type": "Function", "typeVars": [".-1.140413945109568"], "argTypes": [{"nodeId": ".-1.140413945109568"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140413945109568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140413945109568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945109568", "variance": "INVARIANT"}, "140414016452448": {"type": "Concrete", "module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008770144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945019328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945102400"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012132032"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012132480"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012132928"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012133376"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012133824"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012134272"}, "name": "__invert__"}], "typeVars": [], "bases": [{"nodeId": "140414016451776"}], "isAbstract": false}, "140414008770144": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413945019328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016452448"}], "returnType": {"nodeId": "140413983040320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983040320": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413945102400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016452448"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012132032": {"type": "Function", "typeVars": [".-1.140414012132032"], "argTypes": [{"nodeId": ".-1.140414012132032"}, {"nodeId": ".-1.140414012132032"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012132032": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012132032", "variance": "INVARIANT"}, "140414012132480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016452448"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012132928": {"type": "Function", "typeVars": [".-1.140414012132928"], "argTypes": [{"nodeId": ".-1.140414012132928"}, {"nodeId": ".-1.140414012132928"}], "returnType": {"nodeId": ".-1.140414012132928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012132928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012132928", "variance": "INVARIANT"}, "140414012133376": {"type": "Function", "typeVars": [".-1.140414012133376"], "argTypes": [{"nodeId": ".-1.140414012133376"}, {"nodeId": ".-1.140414012133376"}], "returnType": {"nodeId": ".-1.140414012133376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012133376": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012133376", "variance": "INVARIANT"}, "140414012133824": {"type": "Function", "typeVars": [".-1.140414012133824"], "argTypes": [{"nodeId": ".-1.140414012133824"}, {"nodeId": ".-1.140414012133824"}], "returnType": {"nodeId": ".-1.140414012133824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012133824": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012133824", "variance": "INVARIANT"}, "140414012134272": {"type": "Function", "typeVars": [".-1.140414012134272"], "argTypes": [{"nodeId": ".-1.140414012134272"}], "returnType": {"nodeId": ".-1.140414012134272"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414012134272": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012134272", "variance": "INVARIANT"}, "140414016451776": {"type": "Concrete", "module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945014624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945015296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008770032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945015520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945015744"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012536448"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012536896"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012537344"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012537792"}, "name": "__reduce_ex__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413945014624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451776"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413945015296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414008770032": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}, "140413945015520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, "140413945015744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}, "140414012536448": {"type": "Function", "typeVars": [".-1.140414012536448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": ".-1.140414012536448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140414012536448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012536448", "variance": "INVARIANT"}, "140414012536896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451776"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012537344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451776"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}, "140414012537792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451776"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414016327008", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}, "140414016443712": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949342912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016963296"}], "isAbstract": false}, "140413949342912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443712"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016444384": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999706656", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037643936"}, "name": "load"}, {"kind": "Variable", "name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949339104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949338432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949338880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414003712000"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414037645728"}, "name": "matches"}], "typeVars": [], "bases": [{"nodeId": "140414016444048"}], "isAbstract": false}, "140414037643936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982792880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982792880": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413949339104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982793104"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982793104": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413949338432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982793216"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982793216": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413949338880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982793328"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982793328": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414003712000": {"type": "Union", "items": [{"nodeId": "140414016445728"}, {"nodeId": "N"}]}, "140414037645728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413982793440"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414092547728"}, "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"]}, "140413982793440": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414016444048": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414003713680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414003713232"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414008637280"}, "name": "_replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414008637952"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414008636384"}, "name": "_asdict"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008636608"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140414016327008", "args": [{"nodeId": "140414016326000"}]}], "isAbstract": false}, "140414003713680": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414003713232": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140414008637280": {"type": "Function", "typeVars": [".-1.140414008637280"], "argTypes": [{"nodeId": ".-1.140414008637280"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414008637280"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}, ".-1.140414008637280": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140414003713456"}, "def": "140414008637280", "variance": "INVARIANT"}, "140414003713456": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414008637952": {"type": "Function", "typeVars": [".-1.140414008637952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414008637952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}, ".-1.140414008637952": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140414003713456"}, "def": "140414008637952", "variance": "INVARIANT"}, "140414008636384": {"type": "Function", "typeVars": [".-1.140414008636384"], "argTypes": [{"nodeId": ".-1.140414008636384"}], "returnType": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}, ".-1.140414008636384": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140414003713456"}, "def": "140414008636384", "variance": "INVARIANT"}, "140414008636608": {"type": "Function", "typeVars": [".-1.140414008636608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414008636608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_cls", "iterable", "new", "len"]}, ".-1.140414008636608": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140414003713456"}, "def": "140414008636608", "variance": "INVARIANT"}, "140414016445056": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949331488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949330816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413949330144"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413982792208"}, "items": [{"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "select"}], "typeVars": [], "bases": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016444720"}]}], "isAbstract": false}, "140413949331488": {"type": "Function", "typeVars": [".-1.140413949331488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413982793664"}]}], "returnType": {"nodeId": ".-1.140413949331488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}, "140413982793664": {"type": "TypeAlias", "target": {"nodeId": "140413991378768"}}, ".-1.140413949331488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413949331488", "variance": "INVARIANT"}, "140413949330816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445056"}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413949330144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445056"}], "returnType": {"nodeId": "140414017150912", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413982792208": {"type": "Overloaded", "items": [{"nodeId": "140414037649312"}, {"nodeId": "140414037649760"}]}, "140414037649312": {"type": "Function", "typeVars": [".-1.140414037649312"], "argTypes": [{"nodeId": ".-1.140414037649312"}], "returnType": {"nodeId": ".-1.140414037649312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414037649312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414037649312", "variance": "INVARIANT"}, "140414037649760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016445056"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016444720"}, "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"]}, "140413991220080": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "type": {"nodeId": "140413991220416"}}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949308128"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016449088"}], "isAbstract": true}, "140413949308128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991220080"}, {"nodeId": "140413991220416"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016445728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}, "140413991220752": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413949305888"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038086304"}, "name": "invalidate_caches"}], "typeVars": [], "bases": [{"nodeId": "140413991220080"}], "isAbstract": false}, "140413949305888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140413991220416"}], "returnType": {"nodeId": "140414092551424", "args": [{"nodeId": "140414016446064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}, "140414038086304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991220752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140413999702624": {"type": "Concrete", "module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140413999702624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140413999702624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038096160"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038096608"}, "name": "check_returncode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414038097056"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140413999702624"}], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, ".1.140413999702624": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413999702624", "variance": "INVARIANT"}, "140414038096160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999702624", "args": [{"nodeId": ".1.140413999702624"}]}, {"nodeId": "140413987080896"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987081008"}, {"nodeId": "140413987081120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}, "140413987080896": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987081008": {"type": "Union", "items": [{"nodeId": ".1.140413999702624"}, {"nodeId": "N"}]}, "140413987081120": {"type": "Union", "items": [{"nodeId": ".1.140413999702624"}, {"nodeId": "N"}]}, "140414038096608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999702624", "args": [{"nodeId": ".1.140413999702624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414038097056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140413999700608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140413999702960": {"type": "Concrete", "module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140413999703296": {"type": "Concrete", "module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414008126688"}, "name": "__init__"}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991608816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991287296"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140413999702960"}], "isAbstract": false}, "140414008126688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703296"}, {"nodeId": "140413987248208"}, {"nodeId": "140414016324656"}, {"nodeId": "140413987248320"}, {"nodeId": "140413987248432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}, "140413987248208": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987248320": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413987248432": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413991608816": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413991287296": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413999703632": {"type": "Concrete", "module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414008127136"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140413999702960"}], "isAbstract": false}, "140414008127136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999703632"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987248544"}, {"nodeId": "140413987248656"}, {"nodeId": "140413987248768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}, "140413987248544": {"type": "TypeAlias", "target": {"nodeId": "140413991273072"}}, "140413987248656": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413987248768": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140414000232960": {"type": "Concrete", "module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414003912640"}, "name": "size"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414003912640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000232960"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414016451104": {"type": "Concrete", "module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012525248"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012525696"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}], "isAbstract": false}, "140414012525248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012525696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451104"}, {"nodeId": "140414016326000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140414016451440": {"type": "Concrete", "module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012527488"}, "name": "__new__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945009920"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012529280"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012529728"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012530176"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012530624"}, "name": "__getitem__"}, {"kind": "Variable", "name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945010144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012531520"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012531968"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012532416"}, "name": "__dir__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983034944"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "Variable", "name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016451776"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "A"}, {"nodeId": "140414016451776"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414016976400"}], "isAbstract": false}, "140414012527488": {"type": "Function", "typeVars": [".-1.140414012527488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "140414016451104"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140414012527488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}, ".-1.140414012527488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012527488", "variance": "INVARIANT"}, "140413945009920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414016323648"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016451104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}, "140414012529280": {"type": "Function", "typeVars": [".-1.140414012529280"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".-1.140414012529280"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414012529280": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012529280", "variance": "INVARIANT"}, "140414012529728": {"type": "Function", "typeVars": [".-1.140414012529728"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": ".-1.140414012529728"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140414012529728": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012529728", "variance": "INVARIANT"}, "140414012530176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414012530624": {"type": "Function", "typeVars": [".-1.140414012530624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414012530624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140414012530624": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012530624", "variance": "INVARIANT"}, "140413945010144": {"type": "Function", "typeVars": [".-1.140413945010144"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140413999694560", "args": [{"nodeId": "140414016326000"}, {"nodeId": ".-1.140413945010144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140413945010144": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140413945010144", "variance": "INVARIANT"}, "140414012531520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451440"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414012531968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012532416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451440"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983034944": {"type": "Overloaded", "items": [{"nodeId": "140414012532864"}, {"nodeId": "140414012533760"}]}, "140414012532864": {"type": "Function", "typeVars": [".-1.140414012532864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140414012532864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}, ".-1.140414012532864": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012532864", "variance": "INVARIANT"}, "140414012533760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016451440"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983039200"}, {"nodeId": "140413983039312"}, {"nodeId": "140413983039424"}, {"nodeId": "140413983039536"}, {"nodeId": "140414016324320"}], "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"]}, "140413983039200": {"type": "TypeAlias", "target": {"nodeId": "140414008770368"}}, "140414008770368": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414092551424", "args": [{"nodeId": "140414003710992"}]}]}, {"nodeId": "140414092556464", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}]}, "140414003710992": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "140413983039312": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983039424": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983039536": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "N"}]}, "140414016452112": {"type": "Concrete", "module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945017760"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012129344"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140414016324320"}, {"nodeId": "140414016451776"}], "isAbstract": false}, "140413945017760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016452112"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012129344": {"type": "Function", "typeVars": [".-1.140414012129344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": ".-1.140414012129344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140414012129344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012129344", "variance": "INVARIANT"}, "140413991485840": {"type": "Concrete", "module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413945018432"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012130688"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140414016452784"}], "isAbstract": false}, "140413945018432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413991485840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414012130688": {"type": "Function", "typeVars": [".-1.140414012130688"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140414012130688"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140414012130688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414012130688", "variance": "INVARIANT"}, "140413999705648": {"type": "Concrete", "module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999575136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999577600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414012145248"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140413999575136": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413999577600": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414012145248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705648"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987303072"}, {"nodeId": "140413987302736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}, "140413987303072": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "N"}]}, "140413987302736": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413999705984": {"type": "Concrete", "module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021058848"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140414016324320"}], "isAbstract": false}, "140414021058848": {"type": "Function", "typeVars": [".-1.140414021058848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": ".-1.140414021058848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}, ".-1.140414021058848": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021058848", "variance": "INVARIANT"}, "140414016443376": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021062656"}, "name": "joinpath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021063104"}, "name": "parent"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021063552"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021064000"}, "name": "__truediv__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}, "140414021062656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443376"}], "returnType": {"nodeId": "140414016443376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021063104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443376"}], "returnType": {"nodeId": "140414016443376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021063552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443376"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021064000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016443376"}], "returnType": {"nodeId": "140414016443376"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414016454128": {"type": "Concrete", "module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016453120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991717008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991384816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414008298512"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021065120"}, "name": "is_multipart"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021065568"}, "name": "set_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021066016"}, "name": "get_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021066464"}, "name": "attach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021066912"}, "name": "get_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021067360"}, "name": "set_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021067808"}, "name": "set_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021068256"}, "name": "get_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021068704"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021069152"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021069600"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021070048"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021070496"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021070944"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021071392"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021071840"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021072288"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021072736"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021073184"}, "name": "get_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021073632"}, "name": "add_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021074080"}, "name": "replace_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021074528"}, "name": "get_content_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021124384"}, "name": "get_content_maintype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021124832"}, "name": "get_content_subtype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021125280"}, "name": "get_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021125728"}, "name": "set_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021126176"}, "name": "get_params"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021126624"}, "name": "get_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021127072"}, "name": "del_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021127520"}, "name": "set_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021127968"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021128416"}, "name": "get_boundary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021128864"}, "name": "set_boundary"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140413983034608"}, "items": [{"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get_content_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021130208"}, "name": "get_charsets"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021130656"}, "name": "walk"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021131104"}, "name": "get_content_disposition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021131552"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021132000"}, "name": "as_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021132448"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021132896"}, "name": "set_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021133344"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021133792"}, "name": "set_raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021134240"}, "name": "raw_items"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414016453120": {"type": "Concrete", "module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008768576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008768800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004500896"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004501344"}, "name": "clone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004501792"}, "name": "handle_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004502240"}, "name": "register_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004502688"}, "name": "header_max_count"}, {"kind": "Variable", "name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945197760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945197312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945197088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945196864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413945196640"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": true}, "140414008768576": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414008768800": {"type": "Union", "items": [{"nodeId": "140414020826080"}, {"nodeId": "N"}]}, "140414020826080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}], "returnType": {"nodeId": "140414016454128"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414004500896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140413983040432"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983040544"}], "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"]}, "140413983040432": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983040544": {"type": "Union", "items": [{"nodeId": "140413987953728"}, {"nodeId": "N"}]}, "140413987953728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}], "returnType": {"nodeId": "140414016454128"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414004501344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "A"}], "returnType": {"nodeId": "140414016453120"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}, "140414004501792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016454128"}, {"nodeId": "140414008298512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140414008298512": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004499552"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414016339104"}], "isAbstract": false}, "140414004499552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008298512"}, {"nodeId": "140413983264656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}, "140413983264656": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004502240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016454128"}, {"nodeId": "140414008298512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140414004502688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983040768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140413983040768": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413945197760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140413983040992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140413983040992": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413945197312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983041216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413983041216": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140413945197088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413945196864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413945196640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413991717008": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413991384816": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021065120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021065568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}, "140414021066016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140413983042560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983042560": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021066464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016454128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}, "140414021066912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140413983042672"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}, "140413983042672": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414021067360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140413983042896"}, {"nodeId": "140413983043008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}, "140413983042896": {"type": "TypeAlias", "target": {"nodeId": "140414003707968"}}, "140414003707968": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016454128"}]}, {"nodeId": "140414016326000"}, {"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}]}, "140413983043008": {"type": "TypeAlias", "target": {"nodeId": "140413991384592"}}, "140413991384592": {"type": "Union", "items": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414008305568": {"type": "Concrete", "module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008766672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008766784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008766896"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004359936"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004360384"}, "name": "get_body_encoding"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004360832"}, "name": "get_output_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004361280"}, "name": "header_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004361728"}, "name": "header_encode_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004362176"}, "name": "body_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004362624"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004494400"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414008766672": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414008766784": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414008766896": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004359936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}, "140414004360384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004360832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}], "returnType": {"nodeId": "140413983266224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983266224": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004361280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140414004361728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092551760", "args": [{"nodeId": "140414016324320"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}, "140414004362176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140414004362624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414004494400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305568"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414021067808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140413983043120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}, "140413983043120": {"type": "TypeAlias", "target": {"nodeId": "140413991384592"}}, "140414021068256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140413983043232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983043232": {"type": "TypeAlias", "target": {"nodeId": "140413991384592"}}, "140414021068704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414021069152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414021069600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414021070048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983043344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413983043344": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021070496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983043456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413983043456": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021070944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414021071392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021071840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413983043568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983043568": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021072288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "140413983043904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983043904": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413983043680"}]}, "140413983043680": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021072736": {"type": "Function", "typeVars": [".-1.140414021072736"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": ".-1.140414021072736"}], "returnType": {"nodeId": "140413983044128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140414021072736": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021072736", "variance": "INVARIANT"}, "140413983044128": {"type": "Union", "items": [{"nodeId": "140413983044016"}, {"nodeId": ".-1.140414021072736"}]}, "140413983044016": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021073184": {"type": "Function", "typeVars": [".-1.140414021073184"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": ".-1.140414021073184"}], "returnType": {"nodeId": "140413983044352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140414021073184": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021073184", "variance": "INVARIANT"}, "140413983044352": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140413983044240"}]}, {"nodeId": ".-1.140414021073184"}]}, "140413983044240": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021073632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983044464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}, "140413983044464": {"type": "TypeAlias", "target": {"nodeId": "140414008764992"}}, "140414008764992": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}, {"nodeId": "140414008767904"}]}, "140414008767904": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414008767680"}, {"nodeId": "140414016326000"}]}, "140414008767680": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021074080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983044576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}, "140413983044576": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021074528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021124384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021124832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021125280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021125728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}, "140414021126176": {"type": "Function", "typeVars": [".-1.140414021126176"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": ".-1.140414021126176"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413983044912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}, ".-1.140414021126176": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021126176", "variance": "INVARIANT"}, "140413983044912": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140413983044800"}]}, {"nodeId": ".-1.140414021126176"}]}, "140413983044800": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414021126624": {"type": "Function", "typeVars": [".-1.140414021126624"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": ".-1.140414021126624"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "140413983045136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}, ".-1.140414021126624": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021126624", "variance": "INVARIANT"}, "140413983045136": {"type": "Union", "items": [{"nodeId": ".-1.140414021126624"}, {"nodeId": "140413983045024"}]}, "140413983045024": {"type": "TypeAlias", "target": {"nodeId": "140414008766224"}}, "140414008766224": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414008767456"}]}, "140414008767456": {"type": "Tuple", "items": [{"nodeId": "140414008767568"}, {"nodeId": "140414008766336"}, {"nodeId": "140414016326000"}]}, "140414008767568": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414008766336": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021127072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}, "140414021127520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}, "140414021127968": {"type": "Function", "typeVars": [".-1.140414021127968"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": ".-1.140414021127968"}], "returnType": {"nodeId": "140413983045360"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140414021127968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021127968", "variance": "INVARIANT"}, "140413983045360": {"type": "Union", "items": [{"nodeId": ".-1.140414021127968"}, {"nodeId": "140414016326000"}]}, "140414021128416": {"type": "Function", "typeVars": [".-1.140414021128416"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": ".-1.140414021128416"}], "returnType": {"nodeId": "140413983044688"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140414021128416": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021128416", "variance": "INVARIANT"}, "140413983044688": {"type": "Union", "items": [{"nodeId": ".-1.140414021128416"}, {"nodeId": "140414016326000"}]}, "140414021128864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}, "140413983034608": {"type": "Overloaded", "items": [{"nodeId": "140414021129312"}, {"nodeId": "140414021129760"}]}, "140414021129312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140413983045584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983045584": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021129760": {"type": "Function", "typeVars": [".-1.140414021129760"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": ".-1.140414021129760"}], "returnType": {"nodeId": "140413983045696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}, ".-1.140414021129760": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021129760", "variance": "INVARIANT"}, "140413983045696": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": ".-1.140414021129760"}]}, "140414021130208": {"type": "Function", "typeVars": [".-1.140414021130208"], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": ".-1.140414021130208"}], "returnType": {"nodeId": "140413983045808"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140414021130208": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021130208", "variance": "INVARIANT"}, "140413983045808": {"type": "Union", "items": [{"nodeId": ".-1.140414021130208"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}]}, "140414021130656": {"type": "Function", "typeVars": [".-1.140414021130656"], "argTypes": [{"nodeId": ".-1.140414021130656"}], "returnType": {"nodeId": "140414092552432", "args": [{"nodeId": ".-1.140414021130656"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140414021130656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140414092547392"}, "def": "140414021130656", "variance": "INVARIANT"}, "140414021131104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140413983045920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983045920": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021131552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016324320"}, {"nodeId": "140413983046032"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140413983046032": {"type": "Union", "items": [{"nodeId": "140414016453120"}, {"nodeId": "N"}]}, "140414021132000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983046144"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}, "140413983046144": {"type": "Union", "items": [{"nodeId": "140414016453120"}, {"nodeId": "N"}]}, "140414021132448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021132896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983046256"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}], "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"]}, "140413983046256": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021133344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016453120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140414021133792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983046368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413983046368": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414021134240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016454128"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140413983046704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413983046704": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140413983046480"}]}, "140413983046480": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140414008295488": {"type": "Concrete", "module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021134688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021135136"}, "name": "get_body"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021135584"}, "name": "iter_attachments"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021136032"}, "name": "iter_parts"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021136480"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021136928"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021137376"}, "name": "make_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021137824"}, "name": "make_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021138272"}, "name": "make_mixed"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021138720"}, "name": "add_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021139168"}, "name": "add_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021139616"}, "name": "add_attachment"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414021140064"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020796704"}, "name": "clear_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020797152"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414020797600"}, "name": "is_attachment"}], "typeVars": [], "bases": [{"nodeId": "140414016454128"}], "isAbstract": false}, "140414021134688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140413983046816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140413983046816": {"type": "Union", "items": [{"nodeId": "140414016453120"}, {"nodeId": "N"}]}, "140414021135136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140414092555120", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140413983046928"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}, "140413983046928": {"type": "Union", "items": [{"nodeId": "140414016454128"}, {"nodeId": "N"}]}, "140414021135584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016454128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021136032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}], "returnType": {"nodeId": "140414092551760", "args": [{"nodeId": "140414016454128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414021136480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "A"}, {"nodeId": "140413983047152"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140413983047152": {"type": "Union", "items": [{"nodeId": "140414008305232"}, {"nodeId": "N"}]}, "140414008305232": {"type": "Concrete", "module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004496864"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004497312"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004497760"}, "name": "add_get_handler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004498208"}, "name": "add_set_handler"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414004496864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305232"}, {"nodeId": "140414016454128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}, "140414004497312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305232"}, {"nodeId": "140414016454128"}, {"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"]}, "140414004497760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305232"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987957536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}, "140413987957536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414004498208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008305232"}, {"nodeId": "140414016323648"}, {"nodeId": "140413987957312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}, "140413987957312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140414021136928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "A"}, {"nodeId": "140413983260736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140413983260736": {"type": "Union", "items": [{"nodeId": "140414008305232"}, {"nodeId": "N"}]}, "140414021137376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140413983260960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140413983260960": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021137824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140413983261072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140413983261072": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021138272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140413983261184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140413983261184": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414021138720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "A"}, {"nodeId": "140413983261408"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140413983261408": {"type": "Union", "items": [{"nodeId": "140414008305232"}, {"nodeId": "N"}]}, "140414021139168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "A"}, {"nodeId": "140413983261744"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140413983261744": {"type": "Union", "items": [{"nodeId": "140414008305232"}, {"nodeId": "N"}]}, "140414021139616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "A"}, {"nodeId": "140413983262080"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140413983262080": {"type": "Union", "items": [{"nodeId": "140414008305232"}, {"nodeId": "N"}]}, "140414021140064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020796704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414020797152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983262304"}, {"nodeId": "140413983262416"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140413983262304": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983262416": {"type": "Union", "items": [{"nodeId": "140414016453120"}, {"nodeId": "N"}]}, "140414020797600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008295488"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414008295824": {"type": "Concrete", "module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008295488"}], "isAbstract": false}, "140413991490208": {"type": "Concrete", "module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140413991489536"}], "isAbstract": false}, "140413991490880": {"type": "Concrete", "module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140413991490544"}, {"nodeId": "140413991489872"}], "isAbstract": false}, "140413991491216": {"type": "Concrete", "module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140413991490544"}, {"nodeId": "140413991490208"}], "isAbstract": false}, "140413999704304": {"type": "Concrete", "module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140413999704640": {"type": "Concrete", "module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413999572896"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991608256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966896256"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004227072"}, "name": "opengroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004227520"}, "name": "closegroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004227968"}, "name": "checkgroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004228416"}, "name": "checklookbehindgroup"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413999572896": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413991608256": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413966896256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704640"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004227072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704640"}, {"nodeId": "140413987300272"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140413987300272": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004227520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704640"}, {"nodeId": "140414016324320"}, {"nodeId": "140413999704976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}, "140413999704976": {"type": "Concrete", "module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140413991612400"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991544176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413999704640"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004228864"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004229760"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004230208"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004230656"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004231104"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004231552"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004346944"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004347392"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004347840"}, "name": "getwidth"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991612400": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140413991610048": {"type": "Tuple", "items": [{"nodeId": "140413999705984"}, {"nodeId": "140413991609040"}]}, "140413991609040": {"type": "TypeAlias", "target": {"nodeId": "140413991609600"}}, "140413991609600": {"type": "Union", "items": [{"nodeId": "140413991611616"}, {"nodeId": "140413991612176"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140413999704976"}]}, {"nodeId": "140413991609376"}, {"nodeId": "140413991609488"}]}, "140413991611616": {"type": "TypeAlias", "target": {"nodeId": "140414016327344", "args": [{"nodeId": "140413999574688"}]}}, "140413999574688": {"type": "Tuple", "items": [{"nodeId": "140413999705984"}, {"nodeId": "140414016324320"}]}, "140413991612176": {"type": "TypeAlias", "target": {"nodeId": "140413991288640"}}, "140413991288640": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140413999704976"}]}]}, "140413991609376": {"type": "TypeAlias", "target": {"nodeId": "140413991288528"}}, "140413991288528": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140413999704976"}, {"nodeId": "140413999704976"}]}, "140413991609488": {"type": "TypeAlias", "target": {"nodeId": "140413991614080"}}, "140413991614080": {"type": "Tuple", "items": [{"nodeId": "140413999573344"}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}, {"nodeId": "140413999704976"}]}, "140413999573344": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413991544176": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414004228864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140413999704640"}, {"nodeId": "140413987300496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}, "140413987300496": {"type": "Union", "items": [{"nodeId": "140414016327344", "args": [{"nodeId": "140413987300384"}]}, {"nodeId": "N"}]}, "140413987300384": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140414004229760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}, "140414004230208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140414004230656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140413987300944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413987300944": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326672"}]}, "140414004231104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140413987300832"}], "returnType": {"nodeId": "140413987301056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413987300832": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326672"}]}, "140413987301056": {"type": "Union", "items": [{"nodeId": "140413999704976"}, {"nodeId": "140413987300608"}]}, "140413987300608": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140414004231552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140413987301392"}, {"nodeId": "140413987301280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140413987301392": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016326672"}]}, "140413987301280": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140414004346944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140414016324320"}, {"nodeId": "140413987301616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}, "140413987301616": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140414004347392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}, {"nodeId": "140413987301504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}, "140413987301504": {"type": "TypeAlias", "target": {"nodeId": "140413991610048"}}, "140414004347840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704976"}], "returnType": {"nodeId": "140413987301840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987301840": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140414004227968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704640"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}, "140414004228416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999704640"}, {"nodeId": "140414016324320"}, {"nodeId": "140413999705312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}, "140413999705312": {"type": "Concrete", "module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140413991549552"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004348288"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004348736"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004349184"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004349632"}, "name": "getwhile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004350080"}, "name": "getuntil"}, {"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140413966874912"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004351424"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004351872"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004352320"}, "name": "error"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140413991549552": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004348288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140414004348736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}, "140414004349184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}], "returnType": {"nodeId": "140413987301952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140413987301952": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004349632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "140414016324320"}, {"nodeId": "140414092551424", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}, "140414004350080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}, "140413966874912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004351424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140414004351872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}, "140414004352320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140413999705312"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "140413999705648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}, "140414008296496": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414016333056"}], "isAbstract": false}, "140414008296832": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008296496"}], "isAbstract": false}, "140414008297168": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008296832"}], "isAbstract": false}, "140414008297504": {"type": "Concrete", "module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008296832"}], "isAbstract": false}, "140414008297840": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008296496"}, {"nodeId": "140414016338768"}], "isAbstract": false}, "140414008298176": {"type": "Concrete", "module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008296496"}], "isAbstract": false}, "140414008298848": {"type": "Concrete", "module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008299184": {"type": "Concrete", "module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008299520": {"type": "Concrete", "module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008299856": {"type": "Concrete", "module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008300192": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008300528": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008300864": {"type": "Concrete", "module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008301200": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008301536": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008301872": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008302208": {"type": "Concrete", "module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008302544": {"type": "Concrete", "module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008302880": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008298512"}], "isAbstract": false}, "140414008303216": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414008303552": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414008303888": {"type": "Concrete", "module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004500000"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414004500000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008303888"}, {"nodeId": "140413983264768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}, "140413983264768": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414008304224": {"type": "Concrete", "module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414008304560": {"type": "Concrete", "module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414008304896": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140414008302880"}], "isAbstract": false}, "140414016453456": {"type": "Concrete", "module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004505376"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004505824"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004506272"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004506720"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004507168"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140414016453120"}], "isAbstract": false}, "140414004505376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453456"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140413983041440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140413983041440": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414004505824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453456"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983041664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413983041664": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414004506272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453456"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983041776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413983041776": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414008296160"}]}, "140414008296160": {"type": "Concrete", "module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004682464"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004682912"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004683360"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004683808"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004684256"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140414092547392"}], "isAbstract": false}, "140414004682464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008296160"}, {"nodeId": "140413983262528"}, {"nodeId": "140413983262640"}, {"nodeId": "140413983262752"}, {"nodeId": "140413983262864"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "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"]}, "140413983262528": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983262640": {"type": "Union", "items": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413983262752": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983262864": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004682912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008296160"}, {"nodeId": "140413983262976"}, {"nodeId": "140413983263088"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}, "140413983262976": {"type": "Union", "items": [{"nodeId": "140414017150240"}, {"nodeId": "140414017150576"}, {"nodeId": "140414016326000"}]}, "140413983263088": {"type": "Union", "items": [{"nodeId": "140414008305568"}, {"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140414004683360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008296160"}, {"nodeId": "140414016326000"}, {"nodeId": "140413983263200"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}, "140413983263200": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140414004683808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008296160"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414004684256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414008296160"}, {"nodeId": "140414092547392"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414004506720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453456"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140414004507168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453456"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140414016453792": {"type": "Concrete", "module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414092547728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414020827200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414008305232"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004507616"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004508064"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004508512"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004508960"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004509408"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140414004509856"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140414016453120"}], "isAbstract": false}, "140414020827200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414004507616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140413983041888"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}, {"nodeId": "140414092547728"}, {"nodeId": "140414092547728"}, {"nodeId": "140413983042000"}, {"nodeId": "140414092547728"}, {"nodeId": "140414016326000"}, {"nodeId": "140413987958432"}, {"nodeId": "140414008305232"}], "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"]}, "140413983041888": {"type": "Union", "items": [{"nodeId": "140414016324320"}, {"nodeId": "N"}]}, "140413983042000": {"type": "Union", "items": [{"nodeId": "140413987958208"}, {"nodeId": "N"}]}, "140413987958208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453120"}], "returnType": {"nodeId": "140414016454128"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413987958432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140414004508064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140414016327344", "args": [{"nodeId": "140414016326000"}]}], "returnType": {"nodeId": "140413983042224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140413983042224": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414004508512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140413983042448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413983042448": {"type": "Tuple", "items": [{"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}]}, "140414004508960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140414004509408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414016326000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140414004509856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016453792"}, {"nodeId": "140414016326000"}, {"nodeId": "140414016326000"}], "returnType": {"nodeId": "140414017150240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140413925027712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413925027488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}, "140413925026592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}, "140413925022560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}, "140413925024352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "140414016324320"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}, "140413925020768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}, "140413925008976": {"type": "Overloaded", "items": [{"nodeId": "140413924930304"}, {"nodeId": "140413924931648"}]}, "140413924930304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016328016"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413924931648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}, {"nodeId": "140414017156960"}], "returnType": {"nodeId": "140414016328016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140413925006624": {"type": "Overloaded", "items": [{"nodeId": "140413924928288"}, {"nodeId": "140413924926944"}, {"nodeId": "140413924927616"}]}, "140413924928288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414000229936", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}, "140413924926944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551424", "args": [{"nodeId": "140413925007296"}]}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}, "140413925007296": {"type": "Tuple", "items": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}, "140413924927616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR_2"], "argNames": ["kwargs"]}, "140413924929184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413925000688": {"type": "Overloaded", "items": [{"nodeId": "140413924920672"}, {"nodeId": "140413924920224"}]}, "140413924920672": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "0"}]}, "argKinds": [], "argNames": []}, "140413924920224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092551424", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "140414016327344", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140413974561504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140413979555568"}], "returnType": {"nodeId": "140414092547728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140413979555568": {"type": "TypeAlias", "target": {"nodeId": "140414016352240"}}, "140414016352240": {"type": "Union", "items": [{"nodeId": "140414016323648"}, {"nodeId": "140413999701280"}, {"nodeId": "140414016327008", "args": [{"nodeId": "140414000053632"}]}]}, "140414000053632": {"type": "TypeAlias", "target": {"nodeId": "140414016352240"}}, "140413924917984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}, {"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["component_size", "u_node", "v_node"]}, "140413974660368": {"type": "Overloaded", "items": [{"nodeId": "140414054188416"}, {"nodeId": "140414054188864"}]}, "140414054188416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140413974668096"}, {"nodeId": "140413974664512"}, {"nodeId": "140413974665184"}, {"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"]}, "140413974668096": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974664512": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974665184": {"type": "Union", "items": [{"nodeId": "140414000232288", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}, "140414054188864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140414092547392"}, {"nodeId": "140413974666080"}, {"nodeId": "140413974666304"}, {"nodeId": "140413974666416"}, {"nodeId": "140414092547728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED"], "argNames": ["values", "sep", "end", "file", "flush"]}, "140413974666080": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974666304": {"type": "Union", "items": [{"nodeId": "140414016326000"}, {"nodeId": "N"}]}, "140413974666416": {"type": "Union", "items": [{"nodeId": "140413991213696", "args": [{"nodeId": "140414016326000"}]}, {"nodeId": "N"}]}}, "types": {"boruvka": [{"startOffset": 440, "endOffset": 451, "line": 13, "type": {"nodeId": "140414016324320"}}, {"startOffset": 418, "endOffset": 436, "line": 13, "type": {"nodeId": "140414016324320"}}, {"startOffset": 418, "endOffset": 421, "line": 13, "type": {"nodeId": "140413991492224"}}, {"startOffset": 461, "endOffset": 472, "line": 14, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}]}}, {"startOffset": 461, "endOffset": 464, "line": 14, "type": {"nodeId": "140413991492224"}}, {"startOffset": 504, "endOffset": 519, "line": 15, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 504, "endOffset": 507, "line": 15, "type": {"nodeId": "140413991492224"}}, {"startOffset": 724, "endOffset": 729, "line": 20, "type": {"nodeId": "140414016324320"}}, {"startOffset": 732, "endOffset": 737, "line": 20, "type": {"nodeId": "140414016324320"}}, {"startOffset": 740, "endOffset": 745, "line": 20, "type": {"nodeId": "140414016324320"}}, {"startOffset": 703, "endOffset": 721, "line": 20, "type": {"nodeId": "140413925027712"}}, {"startOffset": 703, "endOffset": 714, "line": 20, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}]}}, {"startOffset": 703, "endOffset": 706, "line": 20, "type": {"nodeId": "140413991492224"}}, {"startOffset": 883, "endOffset": 898, "line": 25, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 883, "endOffset": 886, "line": 25, "type": {"nodeId": "140413991492224"}}, {"startOffset": 900, "endOffset": 905, "line": 25, "type": {"nodeId": "140414016324320"}}, {"startOffset": 911, "endOffset": 916, "line": 25, "type": {"nodeId": "140414016324320"}}, {"startOffset": 938, "endOffset": 943, "line": 26, "type": {"nodeId": "140414016324320"}}, {"startOffset": 980, "endOffset": 995, "line": 27, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 980, "endOffset": 983, "line": 27, "type": {"nodeId": "140413991492224"}}, {"startOffset": 997, "endOffset": 1002, "line": 27, "type": {"nodeId": "140414016324320"}}, {"startOffset": 960, "endOffset": 978, "line": 27, "type": {"nodeId": "140413925027488"}}, {"startOffset": 960, "endOffset": 963, "line": 27, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1125, "endOffset": 1140, "line": 32, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 1125, "endOffset": 1128, "line": 32, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1142, "endOffset": 1147, "line": 32, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1153, "endOffset": 1158, "line": 32, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1177, "endOffset": 1177, "line": 33, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1182, "endOffset": 1197, "line": 33, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 1182, "endOffset": 1185, "line": 33, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1258, "endOffset": 1258, "line": 34, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1238, "endOffset": 1256, "line": 34, "type": {"nodeId": "140413925026592"}}, {"startOffset": 1238, "endOffset": 1241, "line": 34, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1216, "endOffset": 1231, "line": 34, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 1216, "endOffset": 1219, "line": 34, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1233, "endOffset": 1233, "line": 34, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1551, "endOffset": 1564, "line": 41, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1566, "endOffset": 1571, "line": 41, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1577, "endOffset": 1590, "line": 41, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1592, "endOffset": 1597, "line": 41, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1640, "endOffset": 1645, "line": 42, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1613, "endOffset": 1628, "line": 42, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 1613, "endOffset": 1616, "line": 42, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1630, "endOffset": 1635, "line": 42, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1685, "endOffset": 1698, "line": 43, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1700, "endOffset": 1705, "line": 43, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1659, "endOffset": 1672, "line": 43, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1674, "endOffset": 1679, "line": 43, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1739, "endOffset": 1744, "line": 44, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1720, "endOffset": 1737, "line": 44, "type": {"nodeId": "140413925022560"}}, {"startOffset": 1720, "endOffset": 1723, "line": 44, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1761, "endOffset": 1774, "line": 46, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1776, "endOffset": 1781, "line": 46, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1787, "endOffset": 1800, "line": 46, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1802, "endOffset": 1807, "line": 46, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1870, "endOffset": 1875, "line": 47, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1850, "endOffset": 1868, "line": 47, "type": {"nodeId": "140413925024352"}}, {"startOffset": 1850, "endOffset": 1853, "line": 47, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1823, "endOffset": 1838, "line": 47, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 1823, "endOffset": 1826, "line": 47, "type": {"nodeId": "140413991492224"}}, {"startOffset": 1840, "endOffset": 1845, "line": 47, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1916, "endOffset": 1929, "line": 48, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1931, "endOffset": 1936, "line": 48, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1890, "endOffset": 1903, "line": 48, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 1905, "endOffset": 1910, "line": 48, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1970, "endOffset": 1975, "line": 49, "type": {"nodeId": "140414016324320"}}, {"startOffset": 1951, "endOffset": 1968, "line": 49, "type": {"nodeId": "140413925020768"}}, {"startOffset": 1951, "endOffset": 1954, "line": 49, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2136, "endOffset": 2149, "line": 55, "type": {"nodeId": "0"}}, {"startOffset": 2164, "endOffset": 2173, "line": 56, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2223, "endOffset": 2241, "line": 58, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2223, "endOffset": 2226, "line": 58, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2188, "endOffset": 2206, "line": 58, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 2321, "endOffset": 2324, "line": 61, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2335, "endOffset": 2353, "line": 61, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2335, "endOffset": 2338, "line": 61, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2329, "endOffset": 2333, "line": 61, "type": {"nodeId": "140413925008976"}}, {"startOffset": 2393, "endOffset": 2397, "line": 62, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2400, "endOffset": 2403, "line": 62, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2369, "endOffset": 2391, "line": 62, "type": {"nodeId": "140413925006624"}}, {"startOffset": 2369, "endOffset": 2384, "line": 62, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 2369, "endOffset": 2372, "line": 62, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2419, "endOffset": 2439, "line": 63, "type": {"nodeId": "140413924929184"}}, {"startOffset": 2419, "endOffset": 2432, "line": 63, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 2473, "endOffset": 2491, "line": 65, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2473, "endOffset": 2476, "line": 65, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2453, "endOffset": 2469, "line": 65, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2508, "endOffset": 2524, "line": 67, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2547, "endOffset": 2550, "line": 68, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 2555, "endOffset": 2566, "line": 68, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}]}}, {"startOffset": 2555, "endOffset": 2558, "line": 68, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2595, "endOffset": 2598, "line": 69, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 2585, "endOffset": 2585, "line": 69, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2588, "endOffset": 2588, "line": 69, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2591, "endOffset": 2591, "line": 69, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2631, "endOffset": 2646, "line": 71, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 2631, "endOffset": 2634, "line": 71, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2648, "endOffset": 2648, "line": 71, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2617, "endOffset": 2627, "line": 71, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2681, "endOffset": 2696, "line": 72, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 2681, "endOffset": 2684, "line": 72, "type": {"nodeId": "140413991492224"}}, {"startOffset": 2698, "endOffset": 2698, "line": 72, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2667, "endOffset": 2677, "line": 72, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2721, "endOffset": 2731, "line": 74, "type": {"nodeId": "140414016324320"}}, {"startOffset": 2736, "endOffset": 2746, "line": 74, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3326, "endOffset": 3334, "line": 85, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3340, "endOffset": 3350, "line": 85, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3353, "endOffset": 3363, "line": 85, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3428, "endOffset": 3446, "line": 87, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 3448, "endOffset": 3456, "line": 87, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3500, "endOffset": 3518, "line": 88, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 3520, "endOffset": 3528, "line": 88, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3536, "endOffset": 3536, "line": 88, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3627, "endOffset": 3627, "line": 90, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3630, "endOffset": 3630, "line": 90, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3633, "endOffset": 3633, "line": 90, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3593, "endOffset": 3611, "line": 90, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 3613, "endOffset": 3621, "line": 90, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3661, "endOffset": 3679, "line": 92, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 3718, "endOffset": 3721, "line": 93, "type": {"nodeId": "140413925000688"}}, {"startOffset": 3701, "endOffset": 3710, "line": 93, "type": {"nodeId": "140413974561504"}}, {"startOffset": 3755, "endOffset": 3758, "line": 94, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 3745, "endOffset": 3745, "line": 94, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3748, "endOffset": 3748, "line": 94, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3751, "endOffset": 3751, "line": 94, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3795, "endOffset": 3810, "line": 96, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 3795, "endOffset": 3798, "line": 96, "type": {"nodeId": "140413991492224"}}, {"startOffset": 3812, "endOffset": 3812, "line": 96, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3781, "endOffset": 3791, "line": 96, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3849, "endOffset": 3864, "line": 97, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016324320"}, {"nodeId": "140414016324320"}]}}, {"startOffset": 3849, "endOffset": 3852, "line": 97, "type": {"nodeId": "140413991492224"}}, {"startOffset": 3866, "endOffset": 3866, "line": 97, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3835, "endOffset": 3845, "line": 97, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3893, "endOffset": 3903, "line": 99, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3908, "endOffset": 3918, "line": 99, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3959, "endOffset": 3959, "line": 100, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3945, "endOffset": 3954, "line": 100, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3996, "endOffset": 4009, "line": 101, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "140414016324320"}]}}, {"startOffset": 4012, "endOffset": 4022, "line": 101, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4025, "endOffset": 4035, "line": 101, "type": {"nodeId": "140414016324320"}}, {"startOffset": 3985, "endOffset": 3994, "line": 101, "type": {"nodeId": "140413924917984"}}, {"startOffset": 3985, "endOffset": 3988, "line": 101, "type": {"nodeId": "140413991492224"}}, {"startOffset": 4068, "endOffset": 4083, "line": 102, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4068, "endOffset": 4089, "line": 102, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4068, "endOffset": 4109, "line": 102, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4062, "endOffset": 4066, "line": 102, "type": {"nodeId": "140413974660368"}}, {"startOffset": 4140, "endOffset": 4156, "line": 103, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4205, "endOffset": 4223, "line": 105, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4205, "endOffset": 4208, "line": 105, "type": {"nodeId": "140413991492224"}}, {"startOffset": 4176, "endOffset": 4194, "line": 105, "type": {"nodeId": "140414016327344", "args": [{"nodeId": "A"}]}}, {"startOffset": 4239, "endOffset": 4301, "line": 106, "type": {"nodeId": "140414016324320"}}, {"startOffset": 4233, "endOffset": 4237, "line": 106, "type": {"nodeId": "140413974660368"}}]}, "definitions": {"boruvka": {"__name__": {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, "__doc__": {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, "__file__": {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, "__package__": {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016326000"}, "isInitializedInClass": false}, "__annotations__": {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140414016327680", "args": [{"nodeId": "140414016326000"}, {"nodeId": "A"}]}, "isInitializedInClass": false}, "Graph": {"kind": "ClassDef", "type": {"nodeId": "140413991492224"}}}, "builtins": {"object": {"kind": "ClassDef", "type": {"nodeId": "140414092547392"}}, "bool": {"kind": "ClassDef", "type": {"nodeId": "140414092547728"}}, "function": {"kind": "ClassDef", "type": {"nodeId": "140414092548064"}}, "staticmethod": {"kind": "ClassDef", "type": {"nodeId": "140414092557472"}}, "classmethod": {"kind": "ClassDef", "type": {"nodeId": "140414092557808"}}, "type": {"kind": "ClassDef", "type": {"nodeId": "140414016323648"}}, "super": {"kind": "ClassDef", "type": {"nodeId": "140414016323984"}}, "int": {"kind": "ClassDef", "type": {"nodeId": "140414016324320"}}, "float": {"kind": "ClassDef", "type": {"nodeId": "140414016324656"}}, "complex": {"kind": "ClassDef", "type": {"nodeId": "140414016324992"}}, "_FormatMapMapping": {"kind": "ClassDef", "type": {"nodeId": "140414016325328"}}, "_TranslateTable": {"kind": "ClassDef", "type": {"nodeId": "140414016325664"}}, "str": {"kind": "ClassDef", "type": {"nodeId": "140414016326000"}}, "bytes": {"kind": "ClassDef", "type": {"nodeId": "140414017150240"}}, "bytearray": {"kind": "ClassDef", "type": {"nodeId": "140414017150576"}}, "memoryview": {"kind": "ClassDef", "type": {"nodeId": "140414016326336"}}, "slice": {"kind": "ClassDef", "type": {"nodeId": "140414016326672"}}, "tuple": {"kind": "ClassDef", "type": {"nodeId": "140414016327008"}}, "list": {"kind": "ClassDef", "type": {"nodeId": "140414016327344"}}, "dict": {"kind": "ClassDef", "type": {"nodeId": "140414016327680"}}, "set": {"kind": "ClassDef", "type": {"nodeId": "140414017150912"}}, "frozenset": {"kind": "ClassDef", "type": {"nodeId": "140414017151248"}}, "enumerate": {"kind": "ClassDef", "type": {"nodeId": "140414017151584"}}, "range": {"kind": "ClassDef", "type": {"nodeId": "140414016328016"}}, "property": {"kind": "ClassDef", "type": {"nodeId": "140414016328352"}}, "_NotImplementedType": {"kind": "ClassDef", "type": {"nodeId": "140414016328688"}}, "_PathLike": {"kind": "ClassDef", "type": {"nodeId": "140413991213360"}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "type": {"nodeId": "140414016329024"}}, "filter": {"kind": "ClassDef", "type": {"nodeId": "140414017151920"}}, "_GetItemIterable": {"kind": "ClassDef", "type": {"nodeId": "140414016329360"}}, "map": {"kind": "ClassDef", "type": {"nodeId": "140414017152256"}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "type": {"nodeId": "140413991213696"}}, "_SupportsPow2": {"kind": "ClassDef", "type": {"nodeId": "140414016329696"}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "type": {"nodeId": "140414016330032"}}, "_SupportsPow3": {"kind": "ClassDef", "type": {"nodeId": "140414016330368"}}, "reversed": {"kind": "ClassDef", "type": {"nodeId": "140414017152592"}}, "_SupportsRound1": {"kind": "ClassDef", "type": {"nodeId": "140414016330704"}}, "_SupportsRound2": {"kind": "ClassDef", "type": {"nodeId": "140414016331040"}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "type": {"nodeId": "140413991214032"}}, "zip": {"kind": "ClassDef", "type": {"nodeId": "140414017152928"}}, "ellipsis": {"kind": "ClassDef", "type": {"nodeId": "140414016331376"}}, "BaseException": {"kind": "ClassDef", "type": {"nodeId": "140414016331712"}}, "GeneratorExit": {"kind": "ClassDef", "type": {"nodeId": "140414016332048"}}, "KeyboardInterrupt": {"kind": "ClassDef", "type": {"nodeId": "140414016332384"}}, "SystemExit": {"kind": "ClassDef", "type": {"nodeId": "140414016332720"}}, "Exception": {"kind": "ClassDef", "type": {"nodeId": "140414016333056"}}, "StopIteration": {"kind": "ClassDef", "type": {"nodeId": "140414016333392"}}, "OSError": {"kind": "ClassDef", "type": {"nodeId": "140414016333728"}}, "ArithmeticError": {"kind": "ClassDef", "type": {"nodeId": "140414016334064"}}, "AssertionError": {"kind": "ClassDef", "type": {"nodeId": "140414016334400"}}, "AttributeError": {"kind": "ClassDef", "type": {"nodeId": "140414016334736"}}, "BufferError": {"kind": "ClassDef", "type": {"nodeId": "140414016335072"}}, "EOFError": {"kind": "ClassDef", "type": {"nodeId": "140414016335408"}}, "ImportError": {"kind": "ClassDef", "type": {"nodeId": "140414016335744"}}, "LookupError": {"kind": "ClassDef", "type": {"nodeId": "140414016336080"}}, "MemoryError": {"kind": "ClassDef", "type": {"nodeId": "140414016336416"}}, "NameError": {"kind": "ClassDef", "type": {"nodeId": "140414016336752"}}, "ReferenceError": {"kind": "ClassDef", "type": {"nodeId": "140414016337088"}}, "RuntimeError": {"kind": "ClassDef", "type": {"nodeId": "140414016337424"}}, "StopAsyncIteration": {"kind": "ClassDef", "type": {"nodeId": "140414016337760"}}, "SyntaxError": {"kind": "ClassDef", "type": {"nodeId": "140414016338096"}}, "SystemError": {"kind": "ClassDef", "type": {"nodeId": "140414016338432"}}, "TypeError": {"kind": "ClassDef", "type": {"nodeId": "140414016338768"}}, "ValueError": {"kind": "ClassDef", "type": {"nodeId": "140414016339104"}}, "FloatingPointError": {"kind": "ClassDef", "type": {"nodeId": "140414016339440"}}, "OverflowError": {"kind": "ClassDef", "type": {"nodeId": "140414016962624"}}, "ZeroDivisionError": {"kind": "ClassDef", "type": {"nodeId": "140414016962960"}}, "ModuleNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140414016963296"}}, "IndexError": {"kind": "ClassDef", "type": {"nodeId": "140414016963632"}}, "KeyError": {"kind": "ClassDef", "type": {"nodeId": "140414016963968"}}, "UnboundLocalError": {"kind": "ClassDef", "type": {"nodeId": "140414016964304"}}, "BlockingIOError": {"kind": "ClassDef", "type": {"nodeId": "140414016964640"}}, "ChildProcessError": {"kind": "ClassDef", "type": {"nodeId": "140414016964976"}}, "ConnectionError": {"kind": "ClassDef", "type": {"nodeId": "140414016965312"}}, "BrokenPipeError": {"kind": "ClassDef", "type": {"nodeId": "140414016965648"}}, "ConnectionAbortedError": {"kind": "ClassDef", "type": {"nodeId": "140414016965984"}}, "ConnectionRefusedError": {"kind": "ClassDef", "type": {"nodeId": "140414016966320"}}, "ConnectionResetError": {"kind": "ClassDef", "type": {"nodeId": "140414016966656"}}, "FileExistsError": {"kind": "ClassDef", "type": {"nodeId": "140414016966992"}}, "FileNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140414016967328"}}, "InterruptedError": {"kind": "ClassDef", "type": {"nodeId": "140414016967664"}}, "IsADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140414016968000"}}, "NotADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140414016968336"}}, "PermissionError": {"kind": "ClassDef", "type": {"nodeId": "140414016968672"}}, "ProcessLookupError": {"kind": "ClassDef", "type": {"nodeId": "140414016969008"}}, "TimeoutError": {"kind": "ClassDef", "type": {"nodeId": "140414016969344"}}, "NotImplementedError": {"kind": "ClassDef", "type": {"nodeId": "140414016969680"}}, "RecursionError": {"kind": "ClassDef", "type": {"nodeId": "140414016970016"}}, "IndentationError": {"kind": "ClassDef", "type": {"nodeId": "140414016970352"}}, "TabError": {"kind": "ClassDef", "type": {"nodeId": "140414016970688"}}, "UnicodeError": {"kind": "ClassDef", "type": {"nodeId": "140414016971024"}}, "UnicodeDecodeError": {"kind": "ClassDef", "type": {"nodeId": "140414016971360"}}, "UnicodeEncodeError": {"kind": "ClassDef", "type": {"nodeId": "140414016971696"}}, "UnicodeTranslateError": {"kind": "ClassDef", "type": {"nodeId": "140414016972032"}}, "Warning": {"kind": "ClassDef", "type": {"nodeId": "140414016972368"}}, "UserWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016972704"}}, "DeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016973040"}}, "SyntaxWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016973376"}}, "RuntimeWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016973712"}}, "FutureWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016974048"}}, "PendingDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016974384"}}, "ImportWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016974720"}}, "UnicodeWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016975056"}}, "BytesWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016975392"}}, "ResourceWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016975728"}}, "EncodingWarning": {"kind": "ClassDef", "type": {"nodeId": "140414016976064"}}}, "_ast": {"AST": {"kind": "ClassDef", "type": {"nodeId": "140414000233296"}}, "mod": {"kind": "ClassDef", "type": {"nodeId": "140414000233632"}}, "type_ignore": {"kind": "ClassDef", "type": {"nodeId": "140414000233968"}}, "TypeIgnore": {"kind": "ClassDef", "type": {"nodeId": "140414000431168"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140414000431504"}}, "Module": {"kind": "ClassDef", "type": {"nodeId": "140414000431840"}}, "Interactive": {"kind": "ClassDef", "type": {"nodeId": "140414000432176"}}, "Expression": {"kind": "ClassDef", "type": {"nodeId": "140414000432512"}}, "stmt": {"kind": "ClassDef", "type": {"nodeId": "140414000432848"}}, "FunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140414000433184"}}, "AsyncFunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140414000433520"}}, "ClassDef": {"kind": "ClassDef", "type": {"nodeId": "140414000433856"}}, "Return": {"kind": "ClassDef", "type": {"nodeId": "140414000434192"}}, "Delete": {"kind": "ClassDef", "type": {"nodeId": "140414000434528"}}, "Assign": {"kind": "ClassDef", "type": {"nodeId": "140414000434864"}}, "AugAssign": {"kind": "ClassDef", "type": {"nodeId": "140414000435200"}}, "AnnAssign": {"kind": "ClassDef", "type": {"nodeId": "140414000435536"}}, "For": {"kind": "ClassDef", "type": {"nodeId": "140414000435872"}}, "AsyncFor": {"kind": "ClassDef", "type": {"nodeId": "140414000436208"}}, "While": {"kind": "ClassDef", "type": {"nodeId": "140414000436544"}}, "If": {"kind": "ClassDef", "type": {"nodeId": "140414000436880"}}, "With": {"kind": "ClassDef", "type": {"nodeId": "140414000437216"}}, "AsyncWith": {"kind": "ClassDef", "type": {"nodeId": "140414000437552"}}, "Raise": {"kind": "ClassDef", "type": {"nodeId": "140414000437888"}}, "Try": {"kind": "ClassDef", "type": {"nodeId": "140414000438224"}}, "Assert": {"kind": "ClassDef", "type": {"nodeId": "140414000438560"}}, "Import": {"kind": "ClassDef", "type": {"nodeId": "140414000438896"}}, "ImportFrom": {"kind": "ClassDef", "type": {"nodeId": "140414000439232"}}, "Global": {"kind": "ClassDef", "type": {"nodeId": "140414000439568"}}, "Nonlocal": {"kind": "ClassDef", "type": {"nodeId": "140414000439904"}}, "Expr": {"kind": "ClassDef", "type": {"nodeId": "140414000440240"}}, "Pass": {"kind": "ClassDef", "type": {"nodeId": "140414000440576"}}, "Break": {"kind": "ClassDef", "type": {"nodeId": "140414000440912"}}, "Continue": {"kind": "ClassDef", "type": {"nodeId": "140414000441248"}}, "expr": {"kind": "ClassDef", "type": {"nodeId": "140414000441584"}}, "BoolOp": {"kind": "ClassDef", "type": {"nodeId": "140414000441920"}}, "BinOp": {"kind": "ClassDef", "type": {"nodeId": "140414000442256"}}, "UnaryOp": {"kind": "ClassDef", "type": {"nodeId": "140414000442592"}}, "Lambda": {"kind": "ClassDef", "type": {"nodeId": "140414000442928"}}, "IfExp": {"kind": "ClassDef", "type": {"nodeId": "140414000443264"}}, "Dict": {"kind": "ClassDef", "type": {"nodeId": "140414000443600"}}, "Set": {"kind": "ClassDef", "type": {"nodeId": "140414000443936"}}, "ListComp": {"kind": "ClassDef", "type": {"nodeId": "140414000444272"}}, "SetComp": {"kind": "ClassDef", "type": {"nodeId": "140414000444608"}}, "DictComp": {"kind": "ClassDef", "type": {"nodeId": "140414000444944"}}, "GeneratorExp": {"kind": "ClassDef", "type": {"nodeId": "140414000445280"}}, "Await": {"kind": "ClassDef", "type": {"nodeId": "140414000445616"}}, "Yield": {"kind": "ClassDef", "type": {"nodeId": "140414000445952"}}, "YieldFrom": {"kind": "ClassDef", "type": {"nodeId": "140414000446288"}}, "Compare": {"kind": "ClassDef", "type": {"nodeId": "140414000446624"}}, "Call": {"kind": "ClassDef", "type": {"nodeId": "140414000446960"}}, "FormattedValue": {"kind": "ClassDef", "type": {"nodeId": "140414000545856"}}, "JoinedStr": {"kind": "ClassDef", "type": {"nodeId": "140414000546192"}}, "Constant": {"kind": "ClassDef", "type": {"nodeId": "140414000546528"}}, "NamedExpr": {"kind": "ClassDef", "type": {"nodeId": "140414000546864"}}, "Attribute": {"kind": "ClassDef", "type": {"nodeId": "140414000547200"}}, "Slice": {"kind": "ClassDef", "type": {"nodeId": "140414000547536"}}, "Subscript": {"kind": "ClassDef", "type": {"nodeId": "140414000547872"}}, "Starred": {"kind": "ClassDef", "type": {"nodeId": "140414000548208"}}, "Name": {"kind": "ClassDef", "type": {"nodeId": "140414000548544"}}, "List": {"kind": "ClassDef", "type": {"nodeId": "140414000548880"}}, "Tuple": {"kind": "ClassDef", "type": {"nodeId": "140414000549216"}}, "expr_context": {"kind": "ClassDef", "type": {"nodeId": "140414000549552"}}, "Del": {"kind": "ClassDef", "type": {"nodeId": "140414000549888"}}, "Load": {"kind": "ClassDef", "type": {"nodeId": "140414000550224"}}, "Store": {"kind": "ClassDef", "type": {"nodeId": "140414000550560"}}, "boolop": {"kind": "ClassDef", "type": {"nodeId": "140414000550896"}}, "And": {"kind": "ClassDef", "type": {"nodeId": "140414000551232"}}, "Or": {"kind": "ClassDef", "type": {"nodeId": "140414000551568"}}, "operator": {"kind": "ClassDef", "type": {"nodeId": "140414000551904"}}, "Add": {"kind": "ClassDef", "type": {"nodeId": "140414000552240"}}, "BitAnd": {"kind": "ClassDef", "type": {"nodeId": "140414000552576"}}, "BitOr": {"kind": "ClassDef", "type": {"nodeId": "140414000552912"}}, "BitXor": {"kind": "ClassDef", "type": {"nodeId": "140414000553248"}}, "Div": {"kind": "ClassDef", "type": {"nodeId": "140414000553584"}}, "FloorDiv": {"kind": "ClassDef", "type": {"nodeId": "140414000553920"}}, "LShift": {"kind": "ClassDef", "type": {"nodeId": "140414000554256"}}, "Mod": {"kind": "ClassDef", "type": {"nodeId": "140414000554592"}}, "Mult": {"kind": "ClassDef", "type": {"nodeId": "140414000554928"}}, "MatMult": {"kind": "ClassDef", "type": {"nodeId": "140414000555264"}}, "Pow": {"kind": "ClassDef", "type": {"nodeId": "140414000555600"}}, "RShift": {"kind": "ClassDef", "type": {"nodeId": "140414000555936"}}, "Sub": {"kind": "ClassDef", "type": {"nodeId": "140414000556272"}}, "unaryop": {"kind": "ClassDef", "type": {"nodeId": "140414000556608"}}, "Invert": {"kind": "ClassDef", "type": {"nodeId": "140414000556944"}}, "Not": {"kind": "ClassDef", "type": {"nodeId": "140414000557280"}}, "UAdd": {"kind": "ClassDef", "type": {"nodeId": "140414000557616"}}, "USub": {"kind": "ClassDef", "type": {"nodeId": "140414000557952"}}, "cmpop": {"kind": "ClassDef", "type": {"nodeId": "140414000558288"}}, "Eq": {"kind": "ClassDef", "type": {"nodeId": "140414000558624"}}, "Gt": {"kind": "ClassDef", "type": {"nodeId": "140414000558960"}}, "GtE": {"kind": "ClassDef", "type": {"nodeId": "140414000559296"}}, "In": {"kind": "ClassDef", "type": {"nodeId": "140414000559632"}}, "Is": {"kind": "ClassDef", "type": {"nodeId": "140414000559968"}}, "IsNot": {"kind": "ClassDef", "type": {"nodeId": "140414000560304"}}, "Lt": {"kind": "ClassDef", "type": {"nodeId": "140414000560640"}}, "LtE": {"kind": "ClassDef", "type": {"nodeId": "140414000560976"}}, "NotEq": {"kind": "ClassDef", "type": {"nodeId": "140414000561312"}}, "NotIn": {"kind": "ClassDef", "type": {"nodeId": "140414000561648"}}, "comprehension": {"kind": "ClassDef", "type": {"nodeId": "140413991206976"}}, "excepthandler": {"kind": "ClassDef", "type": {"nodeId": "140413991207312"}}, "ExceptHandler": {"kind": "ClassDef", "type": {"nodeId": "140413991207648"}}, "arguments": {"kind": "ClassDef", "type": {"nodeId": "140413991207984"}}, "arg": {"kind": "ClassDef", "type": {"nodeId": "140413991208320"}}, "keyword": {"kind": "ClassDef", "type": {"nodeId": "140413991208656"}}, "alias": {"kind": "ClassDef", "type": {"nodeId": "140413991208992"}}, "withitem": {"kind": "ClassDef", "type": {"nodeId": "140413991209328"}}, "Match": {"kind": "ClassDef", "type": {"nodeId": "140413991209664"}}, "pattern": {"kind": "ClassDef", "type": {"nodeId": "140413991210000"}}, "match_case": {"kind": "ClassDef", "type": {"nodeId": "140413991210336"}}, "MatchValue": {"kind": "ClassDef", "type": {"nodeId": "140413991210672"}}, "MatchSingleton": {"kind": "ClassDef", "type": {"nodeId": "140413991211008"}}, "MatchSequence": {"kind": "ClassDef", "type": {"nodeId": "140413991211344"}}, "MatchStar": {"kind": "ClassDef", "type": {"nodeId": "140413991211680"}}, "MatchMapping": {"kind": "ClassDef", "type": {"nodeId": "140413991212016"}}, "MatchClass": {"kind": "ClassDef", "type": {"nodeId": "140413991212352"}}, "MatchAs": {"kind": "ClassDef", "type": {"nodeId": "140413991212688"}}, "MatchOr": {"kind": "ClassDef", "type": {"nodeId": "140413991213024"}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140413999701616"}}, "_flags": {"kind": "ClassDef", "type": {"nodeId": "140413991214368"}}, "_float_info": {"kind": "ClassDef", "type": {"nodeId": "140413991214704"}}, "_hash_info": {"kind": "ClassDef", "type": {"nodeId": "140413991215040"}}, "_implementation": {"kind": "ClassDef", "type": {"nodeId": "140413999701952"}}, "_int_info": {"kind": "ClassDef", "type": {"nodeId": "140413991215376"}}, "_version_info": {"kind": "ClassDef", "type": {"nodeId": "140413991215712"}}, "UnraisableHookArgs": {"kind": "ClassDef", "type": {"nodeId": "140413999702288"}}, "_asyncgen_hooks": {"kind": "ClassDef", "type": {"nodeId": "140413991216048"}}}, "types": {"_Cell": {"kind": "ClassDef", "type": {"nodeId": "140414017158640"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140413999693888"}}, "CodeType": {"kind": "ClassDef", "type": {"nodeId": "140413999694224"}}, "MappingProxyType": {"kind": "ClassDef", "type": {"nodeId": "140413999694560"}}, "SimpleNamespace": {"kind": "ClassDef", "type": {"nodeId": "140413999694896"}}, "_LoaderProtocol": {"kind": "ClassDef", "type": {"nodeId": "140413999695232"}}, "ModuleType": {"kind": "ClassDef", "type": {"nodeId": "140413999695568"}}, "GeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140413999695904"}}, "AsyncGeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140413999696240"}}, "CoroutineType": {"kind": "ClassDef", "type": {"nodeId": "140413999696576"}}, "_StaticFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140413999696912"}}, "MethodType": {"kind": "ClassDef", "type": {"nodeId": "140413999697248"}}, "BuiltinFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140413999697584"}}, "WrapperDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140413999697920"}}, "MethodWrapperType": {"kind": "ClassDef", "type": {"nodeId": "140413999698256"}}, "MethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140413999698592"}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140413999698928"}}, "TracebackType": {"kind": "ClassDef", "type": {"nodeId": "140413999699264"}}, "FrameType": {"kind": "ClassDef", "type": {"nodeId": "140413999699600"}}, "GetSetDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140413999699936"}}, "MemberDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140413999700272"}}, "GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "140413999700608"}}, "NoneType": {"kind": "ClassDef", "type": {"nodeId": "140413999700944"}}, "UnionType": {"kind": "ClassDef", "type": {"nodeId": "140413999701280"}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "type": {"nodeId": "140414017149232"}}, "dict_values": {"kind": "ClassDef", "type": {"nodeId": "140414017149568"}}, "dict_items": {"kind": "ClassDef", "type": {"nodeId": "140414017149904"}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "type": {"nodeId": "140414000223552"}}, "SupportsNext": {"kind": "ClassDef", "type": {"nodeId": "140414000223888"}}, "SupportsAnext": {"kind": "ClassDef", "type": {"nodeId": "140414000224224"}}, "SupportsDunderLT": {"kind": "ClassDef", "type": {"nodeId": "140414000224560"}}, "SupportsDunderGT": {"kind": "ClassDef", "type": {"nodeId": "140414000224896"}}, "SupportsDunderLE": {"kind": "ClassDef", "type": {"nodeId": "140414000225232"}}, "SupportsDunderGE": {"kind": "ClassDef", "type": {"nodeId": "140414000225568"}}, "SupportsAllComparisons": {"kind": "ClassDef", "type": {"nodeId": "140414000225904"}}, "SupportsAdd": {"kind": "ClassDef", "type": {"nodeId": "140414000226240"}}, "SupportsRAdd": {"kind": "ClassDef", "type": {"nodeId": "140414000226576"}}, "SupportsSub": {"kind": "ClassDef", "type": {"nodeId": "140414000226912"}}, "SupportsRSub": {"kind": "ClassDef", "type": {"nodeId": "140414000227248"}}, "SupportsDivMod": {"kind": "ClassDef", "type": {"nodeId": "140414000227584"}}, "SupportsRDivMod": {"kind": "ClassDef", "type": {"nodeId": "140414000227920"}}, "SupportsIter": {"kind": "ClassDef", "type": {"nodeId": "140414000228256"}}, "SupportsAiter": {"kind": "ClassDef", "type": {"nodeId": "140414000228592"}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140414000228928"}}, "SupportsTrunc": {"kind": "ClassDef", "type": {"nodeId": "140414000229264"}}, "SupportsItems": {"kind": "ClassDef", "type": {"nodeId": "140414000229600"}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140414000229936"}}, "SupportsGetItem": {"kind": "ClassDef", "type": {"nodeId": "140414000230272"}}, "SupportsItemAccess": {"kind": "ClassDef", "type": {"nodeId": "140414000230608"}}, "HasFileno": {"kind": "ClassDef", "type": {"nodeId": "140414000230944"}}, "SupportsRead": {"kind": "ClassDef", "type": {"nodeId": "140414000231280"}}, "SupportsReadline": {"kind": "ClassDef", "type": {"nodeId": "140414000231616"}}, "SupportsNoArgReadline": {"kind": "ClassDef", "type": {"nodeId": "140414000231952"}}, "SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140414000232288"}}, "structseq": {"kind": "ClassDef", "type": {"nodeId": "140414000232624"}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "type": {"nodeId": "140414016438672"}}, "IOBase": {"kind": "ClassDef", "type": {"nodeId": "140414016439008"}}, "RawIOBase": {"kind": "ClassDef", "type": {"nodeId": "140414016439344"}}, "BufferedIOBase": {"kind": "ClassDef", "type": {"nodeId": "140414016439680"}}, "FileIO": {"kind": "ClassDef", "type": {"nodeId": "140414016440016"}}, "BytesIO": {"kind": "ClassDef", "type": {"nodeId": "140414016440352"}}, "BufferedReader": {"kind": "ClassDef", "type": {"nodeId": "140414016440688"}}, "BufferedWriter": {"kind": "ClassDef", "type": {"nodeId": "140414016441024"}}, "BufferedRandom": {"kind": "ClassDef", "type": {"nodeId": "140414016441360"}}, "BufferedRWPair": {"kind": "ClassDef", "type": {"nodeId": "140414016441696"}}, "TextIOBase": {"kind": "ClassDef", "type": {"nodeId": "140414016442032"}}, "TextIOWrapper": {"kind": "ClassDef", "type": {"nodeId": "140414016442368"}}, "StringIO": {"kind": "ClassDef", "type": {"nodeId": "140414016442704"}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "type": {"nodeId": "140413991491552"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140414017157968"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140414092548400"}}, "_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140414092548736"}}, "ParamSpecArgs": {"kind": "ClassDef", "type": {"nodeId": "140414092549072"}}, "ParamSpecKwargs": {"kind": "ClassDef", "type": {"nodeId": "140414092549408"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140414092549744"}}, "NewType": {"kind": "ClassDef", "type": {"nodeId": "140414092550080"}}, "_Alias": {"kind": "ClassDef", "type": {"nodeId": "140414092550416"}}, "_ProtocolMeta": {"kind": "ClassDef", "type": {"nodeId": "140414017142848"}}, "SupportsInt": {"kind": "ClassDef", "type": {"nodeId": "140414017143184"}}, "SupportsFloat": {"kind": "ClassDef", "type": {"nodeId": "140414017143520"}}, "SupportsComplex": {"kind": "ClassDef", "type": {"nodeId": "140414017143856"}}, "SupportsBytes": {"kind": "ClassDef", "type": {"nodeId": "140414017144192"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140414017144528"}}, "SupportsAbs": {"kind": "ClassDef", "type": {"nodeId": "140414092550752"}}, "SupportsRound": {"kind": "ClassDef", "type": {"nodeId": "140414092551088"}}, "Sized": {"kind": "ClassDef", "type": {"nodeId": "140414017144864"}}, "Hashable": {"kind": "ClassDef", "type": {"nodeId": "140414017145200"}}, "Iterable": {"kind": "ClassDef", "type": {"nodeId": "140414092551424"}}, "Iterator": {"kind": "ClassDef", "type": {"nodeId": "140414092551760"}}, "Reversible": {"kind": "ClassDef", "type": {"nodeId": "140414092552096"}}, "Generator": {"kind": "ClassDef", "type": {"nodeId": "140414092552432"}}, "Awaitable": {"kind": "ClassDef", "type": {"nodeId": "140414092552768"}}, "Coroutine": {"kind": "ClassDef", "type": {"nodeId": "140414092553104"}}, "AwaitableGenerator": {"kind": "ClassDef", "type": {"nodeId": "140414017145536"}}, "AsyncIterable": {"kind": "ClassDef", "type": {"nodeId": "140414092553440"}}, "AsyncIterator": {"kind": "ClassDef", "type": {"nodeId": "140414092553776"}}, "AsyncGenerator": {"kind": "ClassDef", "type": {"nodeId": "140414092554112"}}, "Container": {"kind": "ClassDef", "type": {"nodeId": "140414092554448"}}, "Collection": {"kind": "ClassDef", "type": {"nodeId": "140414092554784"}}, "Sequence": {"kind": "ClassDef", "type": {"nodeId": "140414092555120"}}, "MutableSequence": {"kind": "ClassDef", "type": {"nodeId": "140414092555456"}}, "AbstractSet": {"kind": "ClassDef", "type": {"nodeId": "140414092555792"}}, "MutableSet": {"kind": "ClassDef", "type": {"nodeId": "140414092556128"}}, "MappingView": {"kind": "ClassDef", "type": {"nodeId": "140414017145872"}}, "ItemsView": {"kind": "ClassDef", "type": {"nodeId": "140414017146208"}}, "KeysView": {"kind": "ClassDef", "type": {"nodeId": "140414017146544"}}, "ValuesView": {"kind": "ClassDef", "type": {"nodeId": "140414017146880"}}, "Mapping": {"kind": "ClassDef", "type": {"nodeId": "140414092556464"}}, "MutableMapping": {"kind": "ClassDef", "type": {"nodeId": "140414092556800"}}, "IO": {"kind": "ClassDef", "type": {"nodeId": "140414017147216"}}, "BinaryIO": {"kind": "ClassDef", "type": {"nodeId": "140414017147552"}}, "TextIO": {"kind": "ClassDef", "type": {"nodeId": "140414017147888"}}, "ByteString": {"kind": "ClassDef", "type": {"nodeId": "140414017148224"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140414017148560"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140414017148896"}}, "ForwardRef": {"kind": "ClassDef", "type": {"nodeId": "140414092557136"}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140414017156288"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140414017156624"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140414017156960"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140414017157296"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140414017157632"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140414017157968"}}, "TypeVarTuple": {"kind": "ClassDef", "type": {"nodeId": "140414017158304"}}}, "collections": {"UserDict": {"kind": "ClassDef", "type": {"nodeId": "140414017153264"}}, "UserList": {"kind": "ClassDef", "type": {"nodeId": "140414017153600"}}, "UserString": {"kind": "ClassDef", "type": {"nodeId": "140414017153936"}}, "deque": {"kind": "ClassDef", "type": {"nodeId": "140414017154272"}}, "Counter": {"kind": "ClassDef", "type": {"nodeId": "140414016978080"}}, "_OrderedDictKeysView": {"kind": "ClassDef", "type": {"nodeId": "140414000218176"}}, "_OrderedDictItemsView": {"kind": "ClassDef", "type": {"nodeId": "140414000218512"}}, "_OrderedDictValuesView": {"kind": "ClassDef", "type": {"nodeId": "140414000218848"}}, "_odict_keys": {"kind": "ClassDef", "type": {"nodeId": "140414017154608"}}, "_odict_items": {"kind": "ClassDef", "type": {"nodeId": "140414017154944"}}, "_odict_values": {"kind": "ClassDef", "type": {"nodeId": "140414017155280"}}, "OrderedDict": {"kind": "ClassDef", "type": {"nodeId": "140414017155616"}}, "defaultdict": {"kind": "ClassDef", "type": {"nodeId": "140414016978416"}}, "ChainMap": {"kind": "ClassDef", "type": {"nodeId": "140414017155952"}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "type": {"nodeId": "140414016447072"}}, "Loader": {"kind": "ClassDef", "type": {"nodeId": "140414016447408"}}, "ResourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140414016447744"}}, "InspectLoader": {"kind": "ClassDef", "type": {"nodeId": "140414016448080"}}, "ExecutionLoader": {"kind": "ClassDef", "type": {"nodeId": "140414016448416"}}, "SourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140414016448752"}}, "MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140414016449088"}}, "PathEntryFinder": {"kind": "ClassDef", "type": {"nodeId": "140414016449424"}}, "FileLoader": {"kind": "ClassDef", "type": {"nodeId": "140414016449760"}}, "ResourceReader": {"kind": "ClassDef", "type": {"nodeId": "140414016450096"}}, "Traversable": {"kind": "ClassDef", "type": {"nodeId": "140414016450432"}}, "TraversableResources": {"kind": "ClassDef", "type": {"nodeId": "140414016450768"}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "type": {"nodeId": "140414016446400"}}, "BuiltinImporter": {"kind": "ClassDef", "type": {"nodeId": "140413991221088"}}, "FrozenImporter": {"kind": "ClassDef", "type": {"nodeId": "140413991221424"}}, "WindowsRegistryFinder": {"kind": "ClassDef", "type": {"nodeId": "140413991221760"}}, "PathFinder": {"kind": "ClassDef", "type": {"nodeId": "140414016446736"}}, "FileFinder": {"kind": "ClassDef", "type": {"nodeId": "140413991222096"}}, "SourceFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140413991222432"}}, "SourcelessFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140413991222768"}}, "ExtensionFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140413991485504"}}}, "array": {"array": {"kind": "ClassDef", "type": {"nodeId": "140414000223216"}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "type": {"nodeId": "140414008305904"}}, "PyDLL": {"kind": "ClassDef", "type": {"nodeId": "140414008306240"}}, "LibraryLoader": {"kind": "ClassDef", "type": {"nodeId": "140413991486176"}}, "_CDataMeta": {"kind": "ClassDef", "type": {"nodeId": "140414008306576"}}, "_CData": {"kind": "ClassDef", "type": {"nodeId": "140414008306912"}}, "_CanCastTo": {"kind": "ClassDef", "type": {"nodeId": "140414008307248"}}, "_PointerLike": {"kind": "ClassDef", "type": {"nodeId": "140414008307584"}}, "_FuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140414008307920"}}, "_NamedFuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140414008308256"}}, "ArgumentError": {"kind": "ClassDef", "type": {"nodeId": "140414008308592"}}, "_CArgObject": {"kind": "ClassDef", "type": {"nodeId": "140414008308928"}}, "_Pointer": {"kind": "ClassDef", "type": {"nodeId": "140413991486512"}}, "_SimpleCData": {"kind": "ClassDef", "type": {"nodeId": "140414008309264"}}, "c_byte": {"kind": "ClassDef", "type": {"nodeId": "140414008309600"}}, "c_char": {"kind": "ClassDef", "type": {"nodeId": "140414008309936"}}, "c_char_p": {"kind": "ClassDef", "type": {"nodeId": "140414008310272"}}, "c_double": {"kind": "ClassDef", "type": {"nodeId": "140414008310608"}}, "c_longdouble": {"kind": "ClassDef", "type": {"nodeId": "140414008310944"}}, "c_float": {"kind": "ClassDef", "type": {"nodeId": "140414008311280"}}, "c_int": {"kind": "ClassDef", "type": {"nodeId": "140414012735552"}}, "c_int8": {"kind": "ClassDef", "type": {"nodeId": "140414012735888"}}, "c_int16": {"kind": "ClassDef", "type": {"nodeId": "140414012736224"}}, "c_int32": {"kind": "ClassDef", "type": {"nodeId": "140414012736560"}}, "c_int64": {"kind": "ClassDef", "type": {"nodeId": "140414012736896"}}, "c_long": {"kind": "ClassDef", "type": {"nodeId": "140414012737232"}}, "c_longlong": {"kind": "ClassDef", "type": {"nodeId": "140414012737568"}}, "c_short": {"kind": "ClassDef", "type": {"nodeId": "140414012737904"}}, "c_size_t": {"kind": "ClassDef", "type": {"nodeId": "140414012738240"}}, "c_ssize_t": {"kind": "ClassDef", "type": {"nodeId": "140414012738576"}}, "c_ubyte": {"kind": "ClassDef", "type": {"nodeId": "140414012738912"}}, "c_uint": {"kind": "ClassDef", "type": {"nodeId": "140414012739248"}}, "c_uint8": {"kind": "ClassDef", "type": {"nodeId": "140414012739584"}}, "c_uint16": {"kind": "ClassDef", "type": {"nodeId": "140414012739920"}}, "c_uint32": {"kind": "ClassDef", "type": {"nodeId": "140414012740256"}}, "c_uint64": {"kind": "ClassDef", "type": {"nodeId": "140414012740592"}}, "c_ulong": {"kind": "ClassDef", "type": {"nodeId": "140414012740928"}}, "c_ulonglong": {"kind": "ClassDef", "type": {"nodeId": "140414012741264"}}, "c_ushort": {"kind": "ClassDef", "type": {"nodeId": "140414012741600"}}, "c_void_p": {"kind": "ClassDef", "type": {"nodeId": "140414012741936"}}, "c_wchar": {"kind": "ClassDef", "type": {"nodeId": "140414012742272"}}, "c_wchar_p": {"kind": "ClassDef", "type": {"nodeId": "140414012742608"}}, "c_bool": {"kind": "ClassDef", "type": {"nodeId": "140414012742944"}}, "py_object": {"kind": "ClassDef", "type": {"nodeId": "140414012743280"}}, "_CField": {"kind": "ClassDef", "type": {"nodeId": "140414012743616"}}, "_StructUnionMeta": {"kind": "ClassDef", "type": {"nodeId": "140414012743952"}}, "_StructUnionBase": {"kind": "ClassDef", "type": {"nodeId": "140414012744288"}}, "Union": {"kind": "ClassDef", "type": {"nodeId": "140414012744624"}}, "Structure": {"kind": "ClassDef", "type": {"nodeId": "140414012744960"}}, "BigEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140414012745296"}}, "LittleEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140414012745632"}}, "Array": {"kind": "ClassDef", "type": {"nodeId": "140413991486848"}}}, "mmap": {"mmap": {"kind": "ClassDef", "type": {"nodeId": "140414016438336"}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "type": {"nodeId": "140413999706992"}}, "PickleBuffer": {"kind": "ClassDef", "type": {"nodeId": "140413999707328"}}, "PickleError": {"kind": "ClassDef", "type": {"nodeId": "140413999707664"}}, "PicklingError": {"kind": "ClassDef", "type": {"nodeId": "140413999708000"}}, "UnpicklingError": {"kind": "ClassDef", "type": {"nodeId": "140413999708336"}}, "Pickler": {"kind": "ClassDef", "type": {"nodeId": "140413999708672"}}, "Unpickler": {"kind": "ClassDef", "type": {"nodeId": "140413999709008"}}}, "os": {"_Environ": {"kind": "ClassDef", "type": {"nodeId": "140413999709344"}}, "stat_result": {"kind": "ClassDef", "type": {"nodeId": "140413991216720"}}, "PathLike": {"kind": "ClassDef", "type": {"nodeId": "140413991217056"}}, "DirEntry": {"kind": "ClassDef", "type": {"nodeId": "140413999709680"}}, "statvfs_result": {"kind": "ClassDef", "type": {"nodeId": "140413991217392"}}, "uname_result": {"kind": "ClassDef", "type": {"nodeId": "140413991217728"}}, "terminal_size": {"kind": "ClassDef", "type": {"nodeId": "140413991218064"}}, "_ScandirIterator": {"kind": "ClassDef", "type": {"nodeId": "140413991218400"}}, "_wrap_close": {"kind": "ClassDef", "type": {"nodeId": "140413991218736"}}, "times_result": {"kind": "ClassDef", "type": {"nodeId": "140413991219072"}}, "waitid_result": {"kind": "ClassDef", "type": {"nodeId": "140413991219408"}}, "sched_param": {"kind": "ClassDef", "type": {"nodeId": "140413991219744"}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "type": {"nodeId": "140414016976400"}}, "abstractclassmethod": {"kind": "ClassDef", "type": {"nodeId": "140414016976736"}}, "abstractstaticmethod": {"kind": "ClassDef", "type": {"nodeId": "140414016977072"}}, "abstractproperty": {"kind": "ClassDef", "type": {"nodeId": "140414016977408"}}, "ABC": {"kind": "ClassDef", "type": {"nodeId": "140414016977744"}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "type": {"nodeId": "140414000219184"}}, "_ReadableStream": {"kind": "ClassDef", "type": {"nodeId": "140414000219520"}}, "_Stream": {"kind": "ClassDef", "type": {"nodeId": "140413991487184"}}, "_Encoder": {"kind": "ClassDef", "type": {"nodeId": "140414000219856"}}, "_Decoder": {"kind": "ClassDef", "type": {"nodeId": "140414000220192"}}, "_StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140414000220528"}}, "_StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140414000220864"}}, "_IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140414000221200"}}, "_IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140414000221536"}}, "CodecInfo": {"kind": "ClassDef", "type": {"nodeId": "140413991487520"}}, "Codec": {"kind": "ClassDef", "type": {"nodeId": "140414000221872"}}, "IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140414000222208"}}, "IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140414000222544"}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140413991487856"}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140413991488192"}}, "StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140413991488528"}}, "StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140413991488864"}}, "StreamReaderWriter": {"kind": "ClassDef", "type": {"nodeId": "140413991489200"}}, "StreamRecoder": {"kind": "ClassDef", "type": {"nodeId": "140414000222880"}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "type": {"nodeId": "140414012745968"}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "type": {"nodeId": "140414012746304"}}, "ContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140414012746640"}}, "_GeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140414012746976"}}, "AsyncContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140414012747312"}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140414012747648"}}, "_SupportsClose": {"kind": "ClassDef", "type": {"nodeId": "140414012747984"}}, "closing": {"kind": "ClassDef", "type": {"nodeId": "140414012748320"}}, "_SupportsAclose": {"kind": "ClassDef", "type": {"nodeId": "140414012748656"}}, "aclosing": {"kind": "ClassDef", "type": {"nodeId": "140414012748992"}}, "suppress": {"kind": "ClassDef", "type": {"nodeId": "140414012749328"}}, "_RedirectStream": {"kind": "ClassDef", "type": {"nodeId": "140414012749664"}}, "redirect_stdout": {"kind": "ClassDef", "type": {"nodeId": "140414012750000"}}, "redirect_stderr": {"kind": "ClassDef", "type": {"nodeId": "140414012750336"}}, "ExitStack": {"kind": "ClassDef", "type": {"nodeId": "140414012750672"}}, "AsyncExitStack": {"kind": "ClassDef", "type": {"nodeId": "140414012751008"}}, "nullcontext": {"kind": "ClassDef", "type": {"nodeId": "140414012751344"}}}, "re": {"Match": {"kind": "ClassDef", "type": {"nodeId": "140413999706320"}}, "Pattern": {"kind": "ClassDef", "type": {"nodeId": "140413999706656"}}, "RegexFlag": {"kind": "ClassDef", "type": {"nodeId": "140413991216384"}}}, "importlib": {"Loader": {"kind": "ClassDef", "type": {"nodeId": "140414016447408"}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140414016443040"}}, "PackageNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140414016443712"}}, "EntryPoint": {"kind": "ClassDef", "type": {"nodeId": "140414016444384"}}, "EntryPoints": {"kind": "ClassDef", "type": {"nodeId": "140414016444720"}}, "SelectableGroups": {"kind": "ClassDef", "type": {"nodeId": "140414016445056"}}, "PackagePath": {"kind": "ClassDef", "type": {"nodeId": "140413991491888"}}, "FileHash": {"kind": "ClassDef", "type": {"nodeId": "140414016445392"}}, "Distribution": {"kind": "ClassDef", "type": {"nodeId": "140414016445728"}}, "DistributionFinder": {"kind": "ClassDef", "type": {"nodeId": "140413991220080"}}, "MetadataPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140413991220752"}}, "PathDistribution": {"kind": "ClassDef", "type": {"nodeId": "140414016446064"}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "type": {"nodeId": "140413999702624"}}, "SubprocessError": {"kind": "ClassDef", "type": {"nodeId": "140413999702960"}}, "TimeoutExpired": {"kind": "ClassDef", "type": {"nodeId": "140413999703296"}}, "CalledProcessError": {"kind": "ClassDef", "type": {"nodeId": "140413999703632"}}, "Popen": {"kind": "ClassDef", "type": {"nodeId": "140413999703968"}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "type": {"nodeId": "140414000232960"}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "type": {"nodeId": "140414016451104"}}, "EnumMeta": {"kind": "ClassDef", "type": {"nodeId": "140414016451440"}}, "Enum": {"kind": "ClassDef", "type": {"nodeId": "140414016451776"}}, "IntEnum": {"kind": "ClassDef", "type": {"nodeId": "140414016452112"}}, "auto": {"kind": "ClassDef", "type": {"nodeId": "140413991485840"}}, "Flag": {"kind": "ClassDef", "type": {"nodeId": "140414016452448"}}, "IntFlag": {"kind": "ClassDef", "type": {"nodeId": "140414016452784"}}}, "sre_constants": {"error": {"kind": "ClassDef", "type": {"nodeId": "140413999705648"}}, "_NamedIntConstant": {"kind": "ClassDef", "type": {"nodeId": "140413999705984"}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140414016443040"}}, "SimplePath": {"kind": "ClassDef", "type": {"nodeId": "140414016443376"}}}, "email.message": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140414016454128"}}, "MIMEPart": {"kind": "ClassDef", "type": {"nodeId": "140414008295488"}}, "EmailMessage": {"kind": "ClassDef", "type": {"nodeId": "140414008295824"}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "type": {"nodeId": "140413991489536"}}, "PurePosixPath": {"kind": "ClassDef", "type": {"nodeId": "140413991489872"}}, "PureWindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140413991490208"}}, "Path": {"kind": "ClassDef", "type": {"nodeId": "140413991490544"}}, "PosixPath": {"kind": "ClassDef", "type": {"nodeId": "140413991490880"}}, "WindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140413991491216"}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "type": {"nodeId": "140413999704304"}}, "_State": {"kind": "ClassDef", "type": {"nodeId": "140413999704640"}}, "SubPattern": {"kind": "ClassDef", "type": {"nodeId": "140413999704976"}}, "Tokenizer": {"kind": "ClassDef", "type": {"nodeId": "140413999705312"}}}, "email": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140414016454128"}}, "Policy": {"kind": "ClassDef", "type": {"nodeId": "140414016453120"}}}, "email.charset": {"Charset": {"kind": "ClassDef", "type": {"nodeId": "140414008305568"}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "type": {"nodeId": "140414008305232"}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "type": {"nodeId": "140414008296496"}}, "MessageParseError": {"kind": "ClassDef", "type": {"nodeId": "140414008296832"}}, "HeaderParseError": {"kind": "ClassDef", "type": {"nodeId": "140414008297168"}}, "BoundaryError": {"kind": "ClassDef", "type": {"nodeId": "140414008297504"}}, "MultipartConversionError": {"kind": "ClassDef", "type": {"nodeId": "140414008297840"}}, "CharsetError": {"kind": "ClassDef", "type": {"nodeId": "140414008298176"}}, "MessageDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008298512"}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008298848"}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008299184"}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008299520"}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008299856"}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008300192"}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008300528"}}, "UndecodableBytesDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008300864"}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008301200"}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008301536"}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008301872"}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008302208"}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008302544"}}, "HeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008302880"}}, "InvalidHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008303216"}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "type": {"nodeId": "140414008303552"}}, "NonPrintableDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008303888"}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008304224"}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008304560"}}, "InvalidDateDefect": {"kind": "ClassDef", "type": {"nodeId": "140414008304896"}}}, "email.policy": {"Policy": {"kind": "ClassDef", "type": {"nodeId": "140414016453120"}}, "Compat32": {"kind": "ClassDef", "type": {"nodeId": "140414016453456"}}, "EmailPolicy": {"kind": "ClassDef", "type": {"nodeId": "140414016453792"}}}, "email.header": {"Header": {"kind": "ClassDef", "type": {"nodeId": "140414008296160"}}}}, "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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "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"}], "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": "overload", "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": "_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": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_V_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": "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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "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": "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": "array", "kind": "Module", "fullname": "array"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "pickle", "kind": "Module", "fullname": "pickle"}, {"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": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"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": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"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": "_BufferWithLen", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "Other"}, {"name": "IndexableBuffer", "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"}], "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": "Self", "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": "__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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"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": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "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": "__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": "_V_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T_contra", "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": "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": "LocalType"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"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": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "Any", "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": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Text", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"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": "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": "override", "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": "Self", "kind": "Other"}, {"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": "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"}], "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": "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": "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"}], "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": "Self", "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": "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"}], "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": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Self", "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_UnionT", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "_CT", "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": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "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": "get_errno", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "POINTER", "kind": "Other"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"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": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}], "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": "Self", "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": "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"}], "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": "Union", "kind": "Other"}, {"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"}], "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": "Self", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"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": "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"}], "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "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": "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": "Self", "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": "__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": "Self", "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": "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"}], "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": "Self", "kind": "Other"}, {"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": "__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"}], "_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": "_CArgObject", "kind": "ImportedType", "fullname": "ctypes._CArgObject"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "ctypes._PointerLike"}, {"name": "TypeAlias", "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"}], "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": "Self", "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": "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"}], "_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"}], "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"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": "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": "auto", "kind": "LocalType"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "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": "Self", "kind": "Other"}, {"name": "Any", "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"}], "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": "Self", "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": "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": "Self", "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": "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"}], "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"}], "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": "Union", "kind": "Other"}, {"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": "__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": {"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 diff --git a/utbot-python-types/src/test/resources/import_test.json b/utbot-python-types/src/test/resources/import_test.json index 47ad1a5283..cad7435827 100644 --- a/utbot-python-types/src/test/resources/import_test.json +++ b/utbot-python-types/src/test/resources/import_test.json @@ -1 +1 @@ -{"nodeStorage": {"140215487334768": {"type": "Concrete", "module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454336384"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533635168"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533635616"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533636064"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533636512"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533636960"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533637408"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533637856"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533638752"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533639200"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533639648"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533640096"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533640544"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533640992"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533641440"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533641888"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533642336"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533642784"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533643232"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533643680"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533644128"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533644576"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533645024"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533645472"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533645920"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533646368"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533646816"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533647264"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533647712"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533648160"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533648608"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533649056"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533649504"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533797664"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533798112"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533798560"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533799008"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533799456"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533799904"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533800352"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533800800"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533801248"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533801696"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533802144"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533802592"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533803040"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533803488"}, "name": "zfill"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454336496"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533804832"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533805280"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533805728"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533806176"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533806624"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533807072"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533807520"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533807968"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533808416"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533808864"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533809312"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533809760"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533810208"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533810656"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533811104"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": false}, "140215454336384": {"type": "Overloaded", "items": [{"nodeId": "140215533634272"}, {"nodeId": "140215458659264"}]}, "140215533634272": {"type": "Function", "typeVars": [".-1.140215533634272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215533634272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}, "0": {"type": "Unknown"}, "140215567750464": {"type": "Concrete", "module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475205312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215453904208"}, "items": [{"kind": "Variable", "name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399373664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__class__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546164640"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546165088"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546165536"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546165984"}, "name": "__delattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546166432"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546166880"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555326240"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555326688"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555327136"}, "name": "__hash__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555327584"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555328032"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555328480"}, "name": "__sizeof__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555328928"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555329376"}, "name": "__reduce_ex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555330272"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555330720"}, "name": "__init_subclass__"}], "typeVars": [], "bases": [], "isAbstract": false}, "140215475205312": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "N": {"type": "NoneType"}, "140215487336448": {"type": "Concrete", "module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454626112"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529500768"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529501216"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529501664"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529502112"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529502560"}, "name": "items"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454626336"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454626672"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454627456"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529653408"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529653856"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529654304"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529654752"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529655200"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529655648"}, "name": "__reversed__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529656096"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529656544"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529656992"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454627792"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}], "bases": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "isAbstract": false}, "140215454626112": {"type": "Overloaded", "items": [{"nodeId": "140215529497632"}, {"nodeId": "140215529498080"}, {"nodeId": "140215529498528"}, {"nodeId": "140215529498976"}, {"nodeId": "140215529499424"}, {"nodeId": "140215529499872"}, {"nodeId": "140215529500320"}]}, "140215529497632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215487336448": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487336448", "variance": "INVARIANT"}, ".2.140215487336448": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487336448", "variance": "INVARIANT"}, "140215529498080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".2.140215487336448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140215529498528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215475465776": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542000640"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542001088"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140215475465776"}, {"nodeId": ".2.140215475465776"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__getitem__", "keys"]}, "140215542000640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215475465776"}, {"nodeId": ".2.140215475465776"}]}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215475465776"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475465776": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475465776", "variance": "INVARIANT"}, ".2.140215475465776": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475465776", "variance": "COVARIANT"}, "140215567754496": {"type": "Protocol", "module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450469984"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567754496"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__iter__"]}, "140215450469984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567754496"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567754496"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215567754496": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567754496", "variance": "COVARIANT"}, "140215567754832": {"type": "Protocol", "module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450472448"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521039456"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140215567754832"}], "bases": [{"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567754832"}]}], "protocolMembers": ["__iter__", "__next__"]}, "140215450472448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567754832"}]}], "returnType": {"nodeId": ".1.140215567754832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567754832": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567754832", "variance": "COVARIANT"}, "140215521039456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567754832"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567754832"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "A": {"type": "Any"}, "140215542001088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215475465776"}, {"nodeId": ".2.140215475465776"}]}, {"nodeId": ".1.140215475465776"}], "returnType": {"nodeId": ".2.140215475465776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529498976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".2.140215487336448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215529499424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215454626896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454626896": {"type": "Tuple", "items": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "140215529499872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215454627120"}]}, {"nodeId": ".2.140215487336448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215454627120": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215487336448"}]}, "140215529500320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215487336112": {"type": "Concrete", "module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454624208"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529385632"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529386080"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529386528"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529386976"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529387424"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529387872"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529388320"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529388768"}, "name": "remove"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454624320"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529488672"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529489120"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454625552"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454625664"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529491360"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454625888"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529492704"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529493152"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529493600"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529494048"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529494496"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529494944"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529495392"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529495840"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529496288"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529496736"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529497184"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215487336112"}], "bases": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215487336112"}]}], "isAbstract": false}, "140215454624208": {"type": "Overloaded", "items": [{"nodeId": "140215529384736"}, {"nodeId": "140215529385184"}]}, "140215529384736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215487336112": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487336112", "variance": "INVARIANT"}, "140215529385184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529385632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529386080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529386528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529386976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215487336112"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215488345952": {"type": "Protocol", "module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450093600"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__index__"]}, "140215450093600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487333088": {"type": "Concrete", "module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454133472"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546615328"}, "name": "as_integer_ratio"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215404261920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215404262816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215404261696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215404261024"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546617568"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546618016"}, "name": "bit_length"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546618464"}, "name": "bit_count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546619808"}, "name": "to_bytes"}, {"kind": "Variable", "name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404260576"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546620704"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546621152"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546621600"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546622048"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546622496"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546622944"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546623392"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546623840"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546624288"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546624736"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546625184"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546625632"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538516256"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538516704"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454134592"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538519840"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538520288"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538520736"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538521184"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538521632"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538522080"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538522528"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538522976"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538523424"}, "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538523872"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538524320"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538524768"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538525216"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538525664"}, "name": "__invert__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538526112"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538526560"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538527008"}, "name": "__floor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538527456"}, "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538527904"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538528352"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538528800"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538529248"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538529696"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538530144"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538530592"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538531040"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538531488"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538531936"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538663712"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538664160"}, "name": "__index__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215454133472": {"type": "Overloaded", "items": [{"nodeId": "140215458658368"}, {"nodeId": "140215546614880"}]}, "140215458658368": {"type": "Function", "typeVars": [".-1.140215458658368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454135264"}], "returnType": {"nodeId": ".-1.140215458658368"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140215454135264": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215454135152"}, {"nodeId": "140215488332176"}, {"nodeId": "140215488345952"}, {"nodeId": "140215475465104"}]}, "140215454135152": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215492108560": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215492108672"}]}, "140215488339232": {"type": "Concrete", "module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454337616"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533812896"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533813344"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533912352"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533912800"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533913248"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533913696"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533914592"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533915040"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533915936"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533916384"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533916832"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533917280"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533917728"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533918176"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533918624"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533919072"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533919520"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533919968"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533920416"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533920864"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533921312"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533921760"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533922208"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533922656"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533923104"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533923552"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533924000"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533924448"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533924896"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533925344"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533925792"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533926240"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533926688"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533927136"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533927584"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533928032"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534059808"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534060256"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534060704"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534061152"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215399688544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215399688096"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534062496"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534062944"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454341088"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534064288"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534064736"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534065184"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534065632"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534066080"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534066528"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534066976"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534067424"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534067872"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534068320"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534068768"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534069216"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140215488337216"}], "isAbstract": false}, "140215454337616": {"type": "Overloaded", "items": [{"nodeId": "140215458659712"}, {"nodeId": "140215533812000"}, {"nodeId": "140215533812448"}]}, "140215458659712": {"type": "Function", "typeVars": [".-1.140215458659712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454342320"}], "returnType": {"nodeId": ".-1.140215458659712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215454342320": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215488345952"}]}, {"nodeId": "140215488345952"}, {"nodeId": "140215488333184"}, {"nodeId": "140215454342208"}]}, "140215488333184": {"type": "Protocol", "module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450360896"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__bytes__"]}, "140215450360896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488333184"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454342208": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, ".-1.140215458659712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458659712", "variance": "INVARIANT"}, "140215533812000": {"type": "Function", "typeVars": [".-1.140215533812000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215533812000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}, ".-1.140215533812000": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533812000", "variance": "INVARIANT"}, "140215533812448": {"type": "Function", "typeVars": [".-1.140215533812448"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215533812448"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215533812448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533812448", "variance": "INVARIANT"}, "140215533812896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533813344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215533912352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454342544"}, {"nodeId": "140215454342656"}, {"nodeId": "140215454342768"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454342544": {"type": "Union", "items": [{"nodeId": "140215454342432"}, {"nodeId": "140215488345952"}]}, "140215454342432": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454342656": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454342768": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533912800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140215533913248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454343104"}, {"nodeId": "140215454343216"}, {"nodeId": "140215454343328"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454343104": {"type": "Union", "items": [{"nodeId": "140215454342880"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215454342992"}]}]}, "140215454342880": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215487335776": {"type": "Concrete", "module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529375328"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529375776"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529376224"}, "name": "__contains__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622752"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529377568"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529378016"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529378464"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529378912"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529379360"}, "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454623424"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529380704"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529381152"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529381600"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529382048"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529382496"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215487335776"}], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215487335776"}]}], "isAbstract": false}, "140215529375328": {"type": "Function", "typeVars": [".-1.140215529375328"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": ".-1.140215529375328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".1.140215487335776": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487335776", "variance": "COVARIANT"}, ".-1.140215529375328": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529375328", "variance": "INVARIANT"}, "140215529375776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529376224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567750800": {"type": "Concrete", "module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534461536"}, "name": "__new__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454621296"}, "items": [{"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__and__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454621408"}, "items": [{"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__or__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622192"}, "items": [{"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__xor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622304"}, "items": [{"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622416"}, "items": [{"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622528"}, "items": [{"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534467360"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140215487333088"}], "isAbstract": false}, "140215534461536": {"type": "Function", "typeVars": [".-1.140215534461536"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215534461536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".-1.140215534461536": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215534461536", "variance": "INVARIANT"}, "140215454621296": {"type": "Overloaded", "items": [{"nodeId": "140215534461984"}, {"nodeId": "140215534462432"}]}, "140215534461984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534462432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454621408": {"type": "Overloaded", "items": [{"nodeId": "140215534462880"}, {"nodeId": "140215534463328"}]}, "140215534462880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534463328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454622192": {"type": "Overloaded", "items": [{"nodeId": "140215534463776"}, {"nodeId": "140215534464224"}]}, "140215534463776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534464224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454622304": {"type": "Overloaded", "items": [{"nodeId": "140215534464672"}, {"nodeId": "140215534465120"}]}, "140215534464672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534465120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454622416": {"type": "Overloaded", "items": [{"nodeId": "140215534465568"}, {"nodeId": "140215534466016"}]}, "140215534465568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534466016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454622528": {"type": "Overloaded", "items": [{"nodeId": "140215534466464"}, {"nodeId": "140215534466912"}]}, "140215534466464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534466912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534467360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215454622976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454622976": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}]}, "140215454622752": {"type": "Overloaded", "items": [{"nodeId": "140215529376672"}, {"nodeId": "140215529377120"}]}, "140215529376672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215487335776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529377120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215487335440": {"type": "Concrete", "module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400015328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400016224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400016448"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454622640"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529374880"}, "name": "indices"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215400015328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215400016224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215400016448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454622640": {"type": "Overloaded", "items": [{"nodeId": "140215529373984"}, {"nodeId": "140215529374432"}]}, "140215529373984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529374432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215529374880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335440"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215454624096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454624096": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215529377568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487335776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529378016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529378464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529378912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529379360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454623424": {"type": "Overloaded", "items": [{"nodeId": "140215529379808"}, {"nodeId": "140215529380256"}]}, "140215529379808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529380256": {"type": "Function", "typeVars": [".-1.140215529380256"], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": ".-1.140215529380256"}]}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215454624432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529380256": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529380256", "variance": "INVARIANT"}, "140215454624432": {"type": "Union", "items": [{"nodeId": ".1.140215487335776"}, {"nodeId": ".-1.140215529380256"}]}, "140215529380704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529381152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529381600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529382048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335776", "args": [{"nodeId": ".1.140215487335776"}]}, {"nodeId": "A"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215529382496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215474805376": {"type": "Concrete", "module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441164544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441164992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441165216"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542134624"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542135072"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542136416"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215441164544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487332416": {"type": "Concrete", "module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399368512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399368064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399367840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399367616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399367392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399367168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399366944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399366720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215404265056"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215453904656"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454130784"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555341920"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546609952"}, "name": "__subclasses__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546610400"}, "name": "mro"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546610848"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546611296"}, "name": "__subclasscheck__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404264832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546612192"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546612640"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215399368512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399368064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399367840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215474799328", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474799328": {"type": "Concrete", "module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537841120"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537841568"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537842016"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537842464"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537842912"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537843360"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537843808"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538188576"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538189024"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538189472"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538189920"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538190368"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538190816"}, "name": "__ror__"}], "typeVars": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}], "bases": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "isAbstract": false}, "140215537841120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140215474799328": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474799328", "variance": "INVARIANT"}, ".2.140215474799328": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474799328", "variance": "COVARIANT"}, "140215537841568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, {"nodeId": ".1.140215474799328"}], "returnType": {"nodeId": ".2.140215474799328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215537842016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215537842464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215537842912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215537843360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537843808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488335536": {"type": "Concrete", "module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521342432"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521342880"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521343328"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521343776"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521344224"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521344672"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521345120"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521444128"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521444576"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521445024"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521445472"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521445920"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140215488335536"}], "bases": [{"nodeId": "140215488334864"}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488335536"}]}], "isAbstract": false}, "140215521342432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215488335536"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140215488335536": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488335536", "variance": "COVARIANT"}, "140215567759536": {"type": "Concrete", "module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445528512"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466996816"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521449504"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521449952"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521450400"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521450848"}, "name": "__contains__"}], "typeVars": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}], "bases": [{"nodeId": "140215567757856", "args": [{"nodeId": ".1.140215567759536"}]}], "isAbstract": true}, "140215445528512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}, {"nodeId": ".1.140215567759536"}], "returnType": {"nodeId": ".2.140215567759536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215567759536": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567759536", "variance": "INVARIANT"}, ".2.140215567759536": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567759536", "variance": "COVARIANT"}, "140215466996816": {"type": "Overloaded", "items": [{"nodeId": "140215521448608"}, {"nodeId": "140215521449056"}]}, "140215521448608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}, {"nodeId": ".1.140215567759536"}], "returnType": {"nodeId": "140215467198720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215467198720": {"type": "Union", "items": [{"nodeId": ".2.140215567759536"}, {"nodeId": "N"}]}, "140215521449056": {"type": "Function", "typeVars": [".-1.140215521449056"], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}, {"nodeId": ".1.140215567759536"}, {"nodeId": "140215467198832"}], "returnType": {"nodeId": "140215467198944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140215467198832": {"type": "Union", "items": [{"nodeId": ".2.140215567759536"}, {"nodeId": ".-1.140215521449056"}]}, ".-1.140215521449056": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521449056", "variance": "INVARIANT"}, "140215467198944": {"type": "Union", "items": [{"nodeId": ".2.140215567759536"}, {"nodeId": ".-1.140215521449056"}]}, "140215521449504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}], "returnType": {"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488335200": {"type": "Concrete", "module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521337056"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521337504"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521337952"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521338400"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521338848"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521339296"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521339744"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521340192"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521340640"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521341088"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521341536"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521341984"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}], "bases": [{"nodeId": "140215488334864"}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215491570352"}]}], "isAbstract": false}, "140215521337056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140215488335200": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488335200", "variance": "COVARIANT"}, ".2.140215488335200": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488335200", "variance": "COVARIANT"}, "140215521337504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215466998720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488339904": {"type": "Concrete", "module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454628240"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529659232"}, "name": "add"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529659680"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529660128"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529660576"}, "name": "difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529661024"}, "name": "discard"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529661472"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529661920"}, "name": "intersection_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529662368"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529662816"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529663264"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529663712"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529664160"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529664608"}, "name": "symmetric_difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529665056"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529665504"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529665952"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529666400"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529666848"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529667296"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529667744"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529668192"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529750816"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529751264"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529751712"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529752160"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529752608"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529753056"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529753504"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529753952"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529754400"}, "name": "__gt__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529754848"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215488339904"}], "bases": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215488339904"}]}], "isAbstract": false}, "140215454628240": {"type": "Overloaded", "items": [{"nodeId": "140215529658336"}, {"nodeId": "140215529658784"}]}, "140215529658336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488339904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488339904", "variance": "INVARIANT"}, "140215529658784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529659232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": ".1.140215488339904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529659680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529660128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529660576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529661024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": ".1.140215488339904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529661472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529661920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529662368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529662816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529663264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529663712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": ".1.140215488339904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529664160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529664608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529665056": {"type": "Function", "typeVars": [".-1.140215529665056"], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215529665056"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215449600624"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140215529665056": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529665056", "variance": "INVARIANT"}, "140215449600624": {"type": "Union", "items": [{"nodeId": ".1.140215488339904"}, {"nodeId": ".-1.140215529665056"}]}, "140215529665504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529665952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529666400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529666848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529667296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567758864": {"type": "Concrete", "module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450582400"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521212704"}, "name": "_hash"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521213152"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521213600"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521214048"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521329440"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521329888"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521330336"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521330784"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521331232"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521331680"}, "name": "isdisjoint"}], "typeVars": [{"nodeId": ".1.140215567758864"}], "bases": [{"nodeId": "140215567757856", "args": [{"nodeId": ".1.140215567758864"}]}], "isAbstract": true}, "140215450582400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215567758864": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567758864", "variance": "COVARIANT"}, "140215521212704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521213152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521213600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521214048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521329440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521329888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521330336": {"type": "Function", "typeVars": [".-1.140215521330336"], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215521330336"}]}], "returnType": {"nodeId": "140215567758864", "args": [{"nodeId": "140215466997600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521330336": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521330336", "variance": "INVARIANT"}, "140215466997600": {"type": "Union", "items": [{"nodeId": ".1.140215567758864"}, {"nodeId": ".-1.140215521330336"}]}, "140215521330784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521331232": {"type": "Function", "typeVars": [".-1.140215521331232"], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215521331232"}]}], "returnType": {"nodeId": "140215567758864", "args": [{"nodeId": "140215466997824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521331232": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521331232", "variance": "INVARIANT"}, "140215466997824": {"type": "Union", "items": [{"nodeId": ".1.140215567758864"}, {"nodeId": ".-1.140215521331232"}]}, "140215521331680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567758864"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140215567757856": {"type": "Protocol", "module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450576576"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567757856"}], "bases": [{"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567757856"}]}, {"nodeId": "140215567757520", "args": [{"nodeId": ".1.140215567757856"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}, "140215450576576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757856", "args": [{"nodeId": ".1.140215567757856"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215567757856": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567757856", "variance": "COVARIANT"}, "140215567757520": {"type": "Protocol", "module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450573888"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567757520"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__contains__"]}, "140215450573888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757520", "args": [{"nodeId": ".1.140215567757520"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215567757520": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567757520", "variance": "COVARIANT"}, "140215529667744": {"type": "Function", "typeVars": [".-1.140215529667744"], "argTypes": [{"nodeId": ".-1.140215529667744"}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": ".-1.140215529667744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529667744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529667744", "variance": "INVARIANT"}, "140215529668192": {"type": "Function", "typeVars": [".-1.140215529668192"], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215529668192"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215449600736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529668192": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529668192", "variance": "INVARIANT"}, "140215449600736": {"type": "Union", "items": [{"nodeId": ".1.140215488339904"}, {"nodeId": ".-1.140215529668192"}]}, "140215529750816": {"type": "Function", "typeVars": [".-1.140215529750816"], "argTypes": [{"nodeId": ".-1.140215529750816"}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": ".-1.140215529750816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529750816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529750816", "variance": "INVARIANT"}, "140215529751264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215449600848"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215449600848": {"type": "Union", "items": [{"nodeId": ".1.140215488339904"}, {"nodeId": "N"}]}, "140215529751712": {"type": "Function", "typeVars": [".-1.140215529751712"], "argTypes": [{"nodeId": ".-1.140215529751712"}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": ".-1.140215529751712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529751712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529751712", "variance": "INVARIANT"}, "140215529752160": {"type": "Function", "typeVars": [".-1.140215529752160"], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215529752160"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215449600960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529752160": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529752160", "variance": "INVARIANT"}, "140215449600960": {"type": "Union", "items": [{"nodeId": ".1.140215488339904"}, {"nodeId": ".-1.140215529752160"}]}, "140215529752608": {"type": "Function", "typeVars": [".-1.140215529752608"], "argTypes": [{"nodeId": ".-1.140215529752608"}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488339904"}]}], "returnType": {"nodeId": ".-1.140215529752608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529752608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529752608", "variance": "INVARIANT"}, "140215529753056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529753504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529753952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529754400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488339904"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529754848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215567759200": {"type": "Concrete", "module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445439648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445447264"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521333024"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521333472"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521333920"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521334368"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521334816"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521335264"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521335712"}, "name": "__isub__"}], "typeVars": [{"nodeId": ".1.140215567759200"}], "bases": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567759200"}]}], "isAbstract": true}, "140215445439648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215567759200"}]}, {"nodeId": ".1.140215567759200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, ".1.140215567759200": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567759200", "variance": "INVARIANT"}, "140215445447264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215567759200"}]}, {"nodeId": ".1.140215567759200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140215521333024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215567759200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521333472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215567759200"}]}], "returnType": {"nodeId": ".1.140215567759200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521333920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759200", "args": [{"nodeId": ".1.140215567759200"}]}, {"nodeId": ".1.140215567759200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140215521334368": {"type": "Function", "typeVars": [".-1.140215521334368"], "argTypes": [{"nodeId": ".-1.140215521334368"}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567759200"}]}], "returnType": {"nodeId": ".-1.140215521334368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521334368": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521334368", "variance": "INVARIANT"}, "140215521334816": {"type": "Function", "typeVars": [".-1.140215521334816"], "argTypes": [{"nodeId": ".-1.140215521334816"}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140215521334816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521334816": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521334816", "variance": "INVARIANT"}, "140215521335264": {"type": "Function", "typeVars": [".-1.140215521335264"], "argTypes": [{"nodeId": ".-1.140215521335264"}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215567759200"}]}], "returnType": {"nodeId": ".-1.140215521335264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521335264": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521335264", "variance": "INVARIANT"}, "140215521335712": {"type": "Function", "typeVars": [".-1.140215521335712"], "argTypes": [{"nodeId": ".-1.140215521335712"}, {"nodeId": "140215567758864", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140215521335712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521335712": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521335712", "variance": "INVARIANT"}, "140215466998720": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521337952": {"type": "Function", "typeVars": [".-1.140215521337952"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521337952"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".-1.140215521337952"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521337952": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521337952", "variance": "INVARIANT"}, "140215521338400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521338848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215466998944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215466998944": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521339296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215466999168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215466999168": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521339744": {"type": "Function", "typeVars": [".-1.140215521339744"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521339744"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215466999504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521339744": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521339744", "variance": "INVARIANT"}, "140215466999504": {"type": "Union", "items": [{"nodeId": "140215466999392"}, {"nodeId": ".-1.140215521339744"}]}, "140215466999392": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521340192": {"type": "Function", "typeVars": [".-1.140215521340192"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521340192"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467196592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521340192": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521340192", "variance": "INVARIANT"}, "140215467196592": {"type": "Union", "items": [{"nodeId": "140215467196480"}, {"nodeId": ".-1.140215521340192"}]}, "140215467196480": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521340640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467196928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215467196928": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521341088": {"type": "Function", "typeVars": [".-1.140215521341088"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521341088"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".-1.140215521341088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521341088": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521341088", "variance": "INVARIANT"}, "140215521341536": {"type": "Function", "typeVars": [".-1.140215521341536"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521341536"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467197264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521341536": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521341536", "variance": "INVARIANT"}, "140215467197264": {"type": "Union", "items": [{"nodeId": "140215467197152"}, {"nodeId": ".-1.140215521341536"}]}, "140215467197152": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521341984": {"type": "Function", "typeVars": [".-1.140215521341984"], "argTypes": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521341984"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467197600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521341984": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521341984", "variance": "INVARIANT"}, "140215467197600": {"type": "Union", "items": [{"nodeId": "140215467197488"}, {"nodeId": ".-1.140215521341984"}]}, "140215467197488": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215488334864": {"type": "Concrete", "module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521336160"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521336608"}, "name": "__len__"}], "typeVars": [], "bases": [{"nodeId": "140215488333856"}], "isAbstract": false}, "140215521336160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488334864"}, {"nodeId": "140215567759536", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140215521336608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488334864"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215488333856": {"type": "Protocol", "module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450368960"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__len__"]}, "140215450368960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488333856"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215491570352": {"type": "Tuple", "items": [{"nodeId": ".1.140215488335200"}, {"nodeId": ".2.140215488335200"}]}, "140215521449952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}], "returnType": {"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215567759536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521450400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}], "returnType": {"nodeId": "140215488335872", "args": [{"nodeId": ".2.140215567759536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488335872": {"type": "Concrete", "module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521446368"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521446816"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521447264"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521447712"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215488335872"}], "bases": [{"nodeId": "140215488334864"}, {"nodeId": "140215567757856", "args": [{"nodeId": ".1.140215488335872"}]}], "isAbstract": false}, "140215521446368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335872", "args": [{"nodeId": ".1.140215488335872"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": "A"}, {"nodeId": ".1.140215488335872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140215488335872": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488335872", "variance": "COVARIANT"}, "140215521446816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335872", "args": [{"nodeId": ".1.140215488335872"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521447264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335872", "args": [{"nodeId": ".1.140215488335872"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488335872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215521447712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335872", "args": [{"nodeId": ".1.140215488335872"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488335872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215521450848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759536"}, {"nodeId": ".2.140215567759536"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521342880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488335536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521343328": {"type": "Function", "typeVars": [".-1.140215521343328"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521343328"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".-1.140215521343328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521343328": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521343328", "variance": "INVARIANT"}, "140215521343776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521344224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488335536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215521344672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488335536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215521345120": {"type": "Function", "typeVars": [".-1.140215521345120"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521345120"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467197936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521345120": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521345120", "variance": "INVARIANT"}, "140215467197936": {"type": "Union", "items": [{"nodeId": ".1.140215488335536"}, {"nodeId": ".-1.140215521345120"}]}, "140215521444128": {"type": "Function", "typeVars": [".-1.140215521444128"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521444128"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467198048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521444128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521444128", "variance": "INVARIANT"}, "140215467198048": {"type": "Union", "items": [{"nodeId": ".1.140215488335536"}, {"nodeId": ".-1.140215521444128"}]}, "140215521444576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".1.140215488335536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521445024": {"type": "Function", "typeVars": [".-1.140215521445024"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521445024"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": ".-1.140215521445024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521445024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521445024", "variance": "INVARIANT"}, "140215521445472": {"type": "Function", "typeVars": [".-1.140215521445472"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521445472"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467198272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521445472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521445472", "variance": "INVARIANT"}, "140215467198272": {"type": "Union", "items": [{"nodeId": ".1.140215488335536"}, {"nodeId": ".-1.140215521445472"}]}, "140215521445920": {"type": "Function", "typeVars": [".-1.140215521445920"], "argTypes": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488335536"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215521445920"}]}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215467198384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521445920": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521445920", "variance": "INVARIANT"}, "140215467198384": {"type": "Union", "items": [{"nodeId": ".1.140215488335536"}, {"nodeId": ".-1.140215521445920"}]}, "140215538188576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215488335872", "args": [{"nodeId": ".2.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538189024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538189472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215538189920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215474799328"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538190368": {"type": "Function", "typeVars": [".-1.140215538190368", ".-2.140215538190368"], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215538190368"}, {"nodeId": ".-2.140215538190368"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215467206560"}, {"nodeId": "140215467206672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215538190368": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215538190368", "variance": "INVARIANT"}, ".-2.140215538190368": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215538190368", "variance": "INVARIANT"}, "140215467206560": {"type": "Union", "items": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".-1.140215538190368"}]}, "140215467206672": {"type": "Union", "items": [{"nodeId": ".2.140215474799328"}, {"nodeId": ".-2.140215538190368"}]}, "140215538190816": {"type": "Function", "typeVars": [".-1.140215538190816", ".-2.140215538190816"], "argTypes": [{"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".2.140215474799328"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215538190816"}, {"nodeId": ".-2.140215538190816"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215467206784"}, {"nodeId": "140215467206896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215538190816": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215538190816", "variance": "INVARIANT"}, ".-2.140215538190816": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215538190816", "variance": "INVARIANT"}, "140215467206784": {"type": "Union", "items": [{"nodeId": ".1.140215474799328"}, {"nodeId": ".-1.140215538190816"}]}, "140215467206896": {"type": "Union", "items": [{"nodeId": ".2.140215474799328"}, {"nodeId": ".-2.140215538190816"}]}, "140215399367616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399367392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399367168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399366944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399366720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215454133024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454133024": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215404265056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215453904656": {"type": "Overloaded", "items": [{"nodeId": "140215555340128"}, {"nodeId": "140215555340576"}]}, "140215555340128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215555340576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"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"]}, "140215454130784": {"type": "Overloaded", "items": [{"nodeId": "140215555341024"}, {"nodeId": "140215555341472"}]}, "140215555341024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215555341472": {"type": "Function", "typeVars": [".-1.140215555341472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215555341472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}, ".-1.140215555341472": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215555341472", "variance": "INVARIANT"}, "140215555341920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140215546609952": {"type": "Function", "typeVars": [".-1.140215546609952"], "argTypes": [{"nodeId": ".-1.140215546609952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".-1.140215546609952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215546609952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546609952", "variance": "INVARIANT"}, "140215546610400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487332416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546610848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215546611296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215404264832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}, "140215546612192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474806048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215474806048": {"type": "Concrete", "module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441167680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541990560"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541991008"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215441167680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474806048"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215541990560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474806048"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474806048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215541991008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474806048"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474806048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546612640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474806048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215441164992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215441165216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542134624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}, {"nodeId": "140215487332416"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}, "140215542135072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215542136416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805376"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567758192": {"type": "Concrete", "module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466995360"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521203744"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521204192"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521204640"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521205088"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521205536"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215567758192"}], "bases": [{"nodeId": "140215567757856", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215567758192"}]}], "isAbstract": true}, "140215466995360": {"type": "Overloaded", "items": [{"nodeId": "140215521202848"}, {"nodeId": "140215521203296"}]}, "140215521202848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215567758192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215567758192": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567758192", "variance": "COVARIANT"}, "140215521203296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521203744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "A"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}, "140215521204192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140215521204640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521205088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567758192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215521205536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758192"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567758192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215567755168": {"type": "Protocol", "module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450474688"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567755168"}], "bases": [{"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567755168"}]}], "protocolMembers": ["__iter__", "__reversed__"]}, "140215450474688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215567755168"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567755168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215567755168": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567755168", "variance": "COVARIANT"}, "140215454342992": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454343216": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454343328": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533913696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140215533914592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454343552"}, {"nodeId": "140215454343664"}, {"nodeId": "140215454343776"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454343552": {"type": "Union", "items": [{"nodeId": "140215454343440"}, {"nodeId": "140215488345952"}]}, "140215454343440": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454343664": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454343776": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533915040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454343888"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140215454343888": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}]}, "140215533915936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454344112"}, {"nodeId": "140215454344224"}, {"nodeId": "140215454344336"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454344112": {"type": "Union", "items": [{"nodeId": "140215454344000"}, {"nodeId": "140215488345952"}]}, "140215454344000": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454344224": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454344336": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533916384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533916832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533917280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533917728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533918176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533918624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533919072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533919520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533919968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215454344448"}]}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454344448": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533920416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}, {"nodeId": "140215454344560"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215454344560": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215488339568": {"type": "Concrete", "module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454342096"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534071456"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534071904"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534072352"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534072800"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534073248"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534073696"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534074144"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534074592"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534075488"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534190880"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534191328"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534192224"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534192672"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534193120"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534193568"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534194016"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534194464"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534194912"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534195360"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534195808"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534196256"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534196704"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534197152"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534197600"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534198048"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534198496"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534198944"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534199392"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534199840"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534200288"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534200736"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534201184"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534201632"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534202080"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534202528"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534202976"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534203424"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534203872"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534204320"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534204768"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534205216"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534205664"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534206112"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534206560"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534289184"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534289632"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215399693024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215399860704"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534290976"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534291424"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454348928"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454349712"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534293664"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534294112"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215454524896"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534295008"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534295456"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534295904"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534296352"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534296800"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534297248"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534297696"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534298144"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534298592"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534299040"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534299488"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534299936"}, "name": "__alloc__"}], "typeVars": [], "bases": [{"nodeId": "140215567758528", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215488337216"}], "isAbstract": false}, "140215454342096": {"type": "Overloaded", "items": [{"nodeId": "140215534070112"}, {"nodeId": "140215534070560"}, {"nodeId": "140215534071008"}]}, "140215534070112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534070560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454349936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454349936": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215488345952"}]}, {"nodeId": "140215488345952"}, {"nodeId": "140215454349824"}]}, "140215454349824": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534071008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}, "140215534071456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215534071904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534072352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215534072800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454350160"}, {"nodeId": "140215454350272"}, {"nodeId": "140215454350384"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454350160": {"type": "Union", "items": [{"nodeId": "140215454350048"}, {"nodeId": "140215488345952"}]}, "140215454350048": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454350272": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454350384": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534073248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534073696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140215534074144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454350720"}, {"nodeId": "140215454350832"}, {"nodeId": "140215454350944"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454350720": {"type": "Union", "items": [{"nodeId": "140215454350496"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215454350608"}]}]}, "140215454350496": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454350608": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454350832": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454350944": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534074592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140215534075488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215488345952"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215534190880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454351168"}, {"nodeId": "140215454613568"}, {"nodeId": "140215454613680"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454351168": {"type": "Union", "items": [{"nodeId": "140215454351056"}, {"nodeId": "140215488345952"}]}, "140215454351056": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454613568": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454613680": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534191328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454613792"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140215454613792": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}]}, "140215534192224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454614016"}, {"nodeId": "140215454614128"}, {"nodeId": "140215454614240"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454614016": {"type": "Union", "items": [{"nodeId": "140215454613904"}, {"nodeId": "140215488345952"}]}, "140215454613904": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454614128": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454614240": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534192672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215534193120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534193568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534194016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534194464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534194912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534195360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534195808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534196256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534196704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215454614352"}]}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454614352": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534197152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}, {"nodeId": "140215454614464"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215454614464": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215534197600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534198048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454614688"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454614688": {"type": "Union", "items": [{"nodeId": "140215454614576"}, {"nodeId": "N"}]}, "140215454614576": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534198496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454614800"}], "returnType": {"nodeId": "140215454615024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454614800": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454615024": {"type": "Tuple", "items": [{"nodeId": "140215488339568"}, {"nodeId": "140215488339568"}, {"nodeId": "140215488339568"}]}, "140215534198944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215534199392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215534199840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454615136"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454615136": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534200288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454615248"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454615248": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534200736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454615360"}, {"nodeId": "140215454615472"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454615360": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454615472": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534201184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454615696"}, {"nodeId": "140215454615808"}, {"nodeId": "140215454615920"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454615696": {"type": "Union", "items": [{"nodeId": "140215454615584"}, {"nodeId": "140215488345952"}]}, "140215454615584": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454615808": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454615920": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534201632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454616144"}, {"nodeId": "140215454616256"}, {"nodeId": "140215454616368"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454616144": {"type": "Union", "items": [{"nodeId": "140215454616032"}, {"nodeId": "140215488345952"}]}, "140215454616032": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454616256": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454616368": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534202080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}, {"nodeId": "140215454616480"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215454616480": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215534202528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454616592"}], "returnType": {"nodeId": "140215454616816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454616592": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454616816": {"type": "Tuple", "items": [{"nodeId": "140215488339568"}, {"nodeId": "140215488339568"}, {"nodeId": "140215488339568"}]}, "140215534202976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454617040"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339568"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454617040": {"type": "Union", "items": [{"nodeId": "140215454616928"}, {"nodeId": "N"}]}, "140215454616928": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534203424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454617264"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454617264": {"type": "Union", "items": [{"nodeId": "140215454617152"}, {"nodeId": "N"}]}, "140215454617152": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534203872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454617488"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339568"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454617488": {"type": "Union", "items": [{"nodeId": "140215454617376"}, {"nodeId": "N"}]}, "140215454617376": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534204320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339568"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140215534204768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454617824"}, {"nodeId": "140215454617936"}, {"nodeId": "140215454618048"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454617824": {"type": "Union", "items": [{"nodeId": "140215454617600"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215454617712"}]}]}, "140215454617600": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454617712": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454617936": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454618048": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215534205216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454618272"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454618272": {"type": "Union", "items": [{"nodeId": "140215454618160"}, {"nodeId": "N"}]}, "140215454618160": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534205664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534206112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534206560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454618496"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140215454618496": {"type": "Union", "items": [{"nodeId": "140215454618384"}, {"nodeId": "N"}]}, "140215454618384": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534289184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534289632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215399693024": {"type": "Function", "typeVars": [".-1.140215399693024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215399693024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140215399693024": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215399693024", "variance": "INVARIANT"}, "140215399860704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215454618608"}, {"nodeId": "140215454618720"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454618608": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454618720": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534290976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215534291424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454348928": {"type": "Overloaded", "items": [{"nodeId": "140215534291872"}, {"nodeId": "140215534292320"}]}, "140215534291872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534292320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454349712": {"type": "Overloaded", "items": [{"nodeId": "140215534292768"}, {"nodeId": "140215534293216"}]}, "140215534292768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215534293216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215487335440"}, {"nodeId": "140215454619056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215454619056": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215488345952"}]}, {"nodeId": "140215488339232"}]}, "140215534293664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454619168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454619168": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215534294112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454619280"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454619280": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454524896": {"type": "Function", "typeVars": [".-1.140215454524896"], "argTypes": [{"nodeId": ".-1.140215454524896"}, {"nodeId": "140215454619392"}], "returnType": {"nodeId": ".-1.140215454524896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215454524896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215454524896", "variance": "INVARIANT"}, "140215454619392": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534295008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534295456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534295904": {"type": "Function", "typeVars": [".-1.140215534295904"], "argTypes": [{"nodeId": ".-1.140215534295904"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".-1.140215534295904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215534295904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215534295904", "variance": "INVARIANT"}, "140215534296352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534296800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454619728"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454619728": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215454619616"}]}, "140215454619616": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534297248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534297696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534298144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454619840"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454619840": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534298592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454619952"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454619952": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534299040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454620064"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454620064": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534299488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}, {"nodeId": "140215454620176"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454620176": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534299936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339568"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567758528": {"type": "Concrete", "module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450580384"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466995808"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466996368"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466996704"}, "items": [{"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521209120"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521209568"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521210016"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521210464"}, "name": "reverse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521210912"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521211360"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521211808"}, "name": "__iadd__"}], "typeVars": [{"nodeId": ".1.140215567758528"}], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": ".1.140215567758528"}]}], "isAbstract": true}, "140215450580384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487333088"}, {"nodeId": ".1.140215567758528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}, ".1.140215567758528": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567758528", "variance": "INVARIANT"}, "140215466995808": {"type": "Overloaded", "items": [{"nodeId": "140215521206432"}, {"nodeId": "140215521206880"}]}, "140215521206432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215567758528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521206880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215466996368": {"type": "Overloaded", "items": [{"nodeId": "140215521207328"}, {"nodeId": "140215521207776"}]}, "140215521207328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487333088"}, {"nodeId": ".1.140215567758528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215521207776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487335440"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567758528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215466996704": {"type": "Overloaded", "items": [{"nodeId": "140215521208224"}, {"nodeId": "140215521208672"}]}, "140215521208224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521208672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521209120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": ".1.140215567758528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140215521209568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521210016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567758528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}, "140215521210464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521210912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215567758528"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}, "140215521211360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215567758528"}]}, {"nodeId": ".1.140215567758528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140215521211808": {"type": "Function", "typeVars": [".-1.140215521211808"], "argTypes": [{"nodeId": ".-1.140215521211808"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215567758528"}]}], "returnType": {"nodeId": ".-1.140215521211808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521211808": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521211808", "variance": "INVARIANT"}, "140215488337216": {"type": "Concrete", "module": "typing", "simpleName": "ByteString", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": true}, "140215533920864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533921312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454344784"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454344784": {"type": "Union", "items": [{"nodeId": "140215454344672"}, {"nodeId": "N"}]}, "140215454344672": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533921760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454344896"}], "returnType": {"nodeId": "140215454345120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454344896": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454345120": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}]}, "140215533922208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454345232"}, {"nodeId": "140215454345344"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454345232": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454345344": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533922656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454345456"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454345456": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533923104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454345568"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454345568": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533923552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454345792"}, {"nodeId": "140215454345904"}, {"nodeId": "140215454346016"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454345792": {"type": "Union", "items": [{"nodeId": "140215454345680"}, {"nodeId": "140215488345952"}]}, "140215454345680": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454345904": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454346016": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533924000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454346240"}, {"nodeId": "140215454346352"}, {"nodeId": "140215454346464"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454346240": {"type": "Union", "items": [{"nodeId": "140215454346128"}, {"nodeId": "140215488345952"}]}, "140215454346128": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454346352": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454346464": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533924448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}, {"nodeId": "140215454346576"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215454346576": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215533924896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454346688"}], "returnType": {"nodeId": "140215454346912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454346688": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454346912": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}]}, "140215533925344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454347136"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454347136": {"type": "Union", "items": [{"nodeId": "140215454347024"}, {"nodeId": "N"}]}, "140215454347024": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533925792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454347360"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454347360": {"type": "Union", "items": [{"nodeId": "140215454347248"}, {"nodeId": "N"}]}, "140215454347248": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533926240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454347584"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454347584": {"type": "Union", "items": [{"nodeId": "140215454347472"}, {"nodeId": "N"}]}, "140215454347472": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533926688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140215533927136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454347920"}, {"nodeId": "140215454348032"}, {"nodeId": "140215454348144"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454347920": {"type": "Union", "items": [{"nodeId": "140215454347696"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215454347808"}]}]}, "140215454347696": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454347808": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454348032": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454348144": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533927584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454348368"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454348368": {"type": "Union", "items": [{"nodeId": "140215454348256"}, {"nodeId": "N"}]}, "140215454348256": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215533928032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534059808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534060256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454348592"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140215454348592": {"type": "Union", "items": [{"nodeId": "140215454348480"}, {"nodeId": "N"}]}, "140215454348480": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534060704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534061152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215399688544": {"type": "Function", "typeVars": [".-1.140215399688544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215399688544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140215399688544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215399688544", "variance": "INVARIANT"}, "140215399688096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215454348704"}, {"nodeId": "140215454348816"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454348704": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454348816": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534062496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215534062944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454341088": {"type": "Overloaded", "items": [{"nodeId": "140215534063392"}, {"nodeId": "140215534063840"}]}, "140215534063392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534063840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534064288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454349040"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454349040": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534064736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534065184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534065632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534066080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215454349376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454349376": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215454349264"}]}, "140215454349264": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534066528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534066976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534067424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534067872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534068320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534068768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534069216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215454349600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454349600": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}]}, "140215492108672": {"type": "TypeAlias", "target": {"nodeId": "140215492107888"}}, "140215492107888": {"type": "Union", "items": [{"nodeId": "140215488339568"}, {"nodeId": "140215487335104"}, {"nodeId": "140215475459056", "args": [{"nodeId": "A"}]}, {"nodeId": "140215483154496"}, {"nodeId": "140215479708896"}, {"nodeId": "140215474812096"}]}, "140215487335104": {"type": "Concrete", "module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399868992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399869440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399869664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399869888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399870112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399870336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399870560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399870784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399871008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399871232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399871456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399871680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534453472"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534453920"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534454368"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534454816"}, "name": "cast"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454618832"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534456160"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534456608"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534457056"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454618944"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534458400"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534459296"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534459744"}, "name": "toreadonly"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534460192"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215534460640"}, "name": "hex"}], "typeVars": [], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215399868992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399869440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399869664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215454620288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454620288": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "N"}]}, "140215399869888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215454620400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454620400": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "N"}]}, "140215399870112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215454620512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454620512": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "N"}]}, "140215399870336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399870560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399870784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215454620624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454620624": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215399871008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399871232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399871456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399871680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534453472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215454620736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140215454620736": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534453920": {"type": "Function", "typeVars": [".-1.140215534453920"], "argTypes": [{"nodeId": ".-1.140215534453920"}], "returnType": {"nodeId": ".-1.140215534453920"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215534453920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215534453920", "variance": "INVARIANT"}, "140215534454368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215454620848"}, {"nodeId": "140215454620960"}, {"nodeId": "140215454621072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215454620848": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215454620960": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215487340480": {"type": "Concrete", "module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215491573600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487801584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487801248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525358752"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525359200"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525540128"}, "name": "with_traceback"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215491573600": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215487801584": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215487801248": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215474804032": {"type": "Concrete", "module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542234720"}, "name": "__init__"}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474815152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446349056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446349504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446349728"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215542234720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804032"}, {"nodeId": "140215462184768"}, {"nodeId": "140215474804368"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}, "140215462184768": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215474804368": {"type": "Concrete", "module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446350848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446351520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446351744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446351968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446352192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446352416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446352640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474815600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542125216"}, "name": "clear"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446350848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215462184880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462184880": {"type": "Union", "items": [{"nodeId": "140215474804368"}, {"nodeId": "N"}]}, "140215446351520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446351744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215474798992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474798992": {"type": "Concrete", "module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446031936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446033280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446032832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446033504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446033728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446033952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446034176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446034400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446034624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446034848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446035072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446035296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446035520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446035744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446035968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446036192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446036864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537836192"}, "name": "co_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537838432"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537840224"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446031936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446033280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446032832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446033504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446033728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446033952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446034176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446034400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446034624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446034848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446035072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446035296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446035520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446035744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446035968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446036192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446036864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537836192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215467206336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467206336": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215467206112"}]}, "140215467206112": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215537838432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215488339232"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215488339232"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}], "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]}, "140215537840224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798992"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215488339232"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215474798992"}, "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"]}, "140215446351968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446352192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446352416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215462185328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462185328": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "A"}]}, "140215446352640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474815600": {"type": "Union", "items": [{"nodeId": "140215479394912"}, {"nodeId": "N"}]}, "140215479394912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215542125216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474815152": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215446349056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804032"}], "returnType": {"nodeId": "140215474804368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446349504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804032"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446349728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804032"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215525358752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140215525359200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487340480"}, {"nodeId": "140215449872512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215449872512": {"type": "Union", "items": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215525540128": {"type": "Function", "typeVars": [".-1.140215525540128"], "argTypes": [{"nodeId": ".-1.140215525540128"}, {"nodeId": "140215449872624"}], "returnType": {"nodeId": ".-1.140215525540128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215525540128": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525540128", "variance": "INVARIANT"}, "140215449872624": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215454621072": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215534454816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454621184"}], "returnType": {"nodeId": "140215487335104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}, "140215454621184": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}]}, "140215454618832": {"type": "Overloaded", "items": [{"nodeId": "140215534455264"}, {"nodeId": "140215534455712"}]}, "140215534455264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534455712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487335104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534456160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215534456608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215534457056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454618944": {"type": "Overloaded", "items": [{"nodeId": "140215534457504"}, {"nodeId": "140215534457952"}]}, "140215534457504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215487335440"}, {"nodeId": "140215454621520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215454621520": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215534457952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215534458400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215454622080"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140215454622080": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140215534459296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534459744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "140215487335104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534460192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215534460640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487335104"}, {"nodeId": "140215454621968"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140215454621968": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}]}, "140215475459056": {"type": "Concrete", "module": "array", "simpleName": "array", "members": [{"kind": "Variable", "name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412521024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412520128"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458804928"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513016224"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513016672"}, "name": "buffer_info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513017120"}, "name": "byteswap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513017568"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513018016"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513018464"}, "name": "frombytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513018912"}, "name": "fromfile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513019360"}, "name": "fromlist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513019808"}, "name": "fromunicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513020256"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513021152"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513021600"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513022048"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513088288"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513088736"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513089184"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513089632"}, "name": "tounicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513090976"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458805040"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215453900288"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513093216"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513093664"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513094112"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513094560"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513095008"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513095456"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513095904"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513096352"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513096800"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513097248"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513097696"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513098144"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.140215475459056"}], "bases": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215475459056"}]}], "isAbstract": false}, "140215412521024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215453898720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475459056": {"type": "TypeVar", "varName": "_T", "values": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487334768"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475459056", "variance": "INVARIANT"}, "140215487333424": {"type": "Concrete", "module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215458659040"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538665056"}, "name": "as_integer_ratio"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538665504"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538665952"}, "name": "is_integer"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215399521344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399521568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399521792"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538667744"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538668192"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538668640"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538669088"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538669536"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538669984"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538670432"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538670880"}, "name": "__divmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454135040"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538672224"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538672672"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538673120"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538673568"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538674016"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538674464"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538674912"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454137392"}, "items": [{"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538676704"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538677152"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538677600"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538678048"}, "name": "__floor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454335712"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538679392"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533535520"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533535968"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533536416"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533536864"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533537312"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533537760"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533538208"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533538656"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533539104"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533539552"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533540000"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215458659040": {"type": "Function", "typeVars": [".-1.140215458659040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454335152"}], "returnType": {"nodeId": ".-1.140215458659040"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140215454335152": {"type": "Union", "items": [{"nodeId": "140215488332512"}, {"nodeId": "140215488345952"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454335040"}]}, "140215488332512": {"type": "Protocol", "module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450358208"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__float__"]}, "140215450358208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488332512"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454335040": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, ".-1.140215458659040": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458659040", "variance": "INVARIANT"}, "140215538665056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215454335376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454335376": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215538665504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538665952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399521344": {"type": "Function", "typeVars": [".-1.140215399521344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215399521344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140215399521344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215399521344", "variance": "INVARIANT"}, "140215399521568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399521792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538667744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538668192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538668640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538669088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538669536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538669984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538670432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538670880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215454335600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454335600": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215454135040": {"type": "Overloaded", "items": [{"nodeId": "140215538671328"}, {"nodeId": "140215538671776"}]}, "140215538671328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215538671776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215538672224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538672672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538673120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538673568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538674016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538674464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538674912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215454336048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454336048": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215454137392": {"type": "Overloaded", "items": [{"nodeId": "140215538675360"}, {"nodeId": "140215538675808"}, {"nodeId": "140215538676256"}]}, "140215538675360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215454336272"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454336272": {"type": "TypeAlias", "target": {"nodeId": "140215475200384"}}, "140215475200384": {"type": "Union", "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"}]}, "140215538675808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215454339520"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454339520": {"type": "TypeAlias", "target": {"nodeId": "140215475202512"}}, "140215475202512": {"type": "Union", "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"}]}, "140215487333760": {"type": "Concrete", "module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454338736"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399527168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399528064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533543136"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533543584"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533544032"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533544480"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533544928"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533545376"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533545824"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533546272"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533546720"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533547168"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533547616"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533548064"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533548512"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533548960"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533549408"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533549856"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533550304"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215454338736": {"type": "Overloaded", "items": [{"nodeId": "140215533540448"}, {"nodeId": "140215533540896"}]}, "140215533540448": {"type": "Function", "typeVars": [".-1.140215533540448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454336608"}, {"nodeId": "140215454336944"}], "returnType": {"nodeId": ".-1.140215533540448"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}, "140215454336608": {"type": "Union", "items": [{"nodeId": "140215487333760"}, {"nodeId": "140215488332848"}, {"nodeId": "140215488332512"}, {"nodeId": "140215488345952"}]}, "140215488332848": {"type": "Protocol", "module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450359552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__complex__"]}, "140215450359552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488332848"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454336944": {"type": "Union", "items": [{"nodeId": "140215487333760"}, {"nodeId": "140215488332512"}, {"nodeId": "140215488345952"}]}, ".-1.140215533540448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533540448", "variance": "INVARIANT"}, "140215533540896": {"type": "Function", "typeVars": [".-1.140215533540896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454337056"}], "returnType": {"nodeId": ".-1.140215533540896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}, "140215454337056": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488332848"}, {"nodeId": "140215488332512"}, {"nodeId": "140215488345952"}, {"nodeId": "140215487333760"}]}, ".-1.140215533540896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533540896", "variance": "INVARIANT"}, "140215399527168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215399528064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533543136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533543584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533544032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533544480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533544928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215533545376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533545824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533546272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533546720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533547168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215533547616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533548064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533548512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533548960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533549408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533549856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533550304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333760"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538676256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215538676704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215454336160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454336160": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}]}, "140215538677152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538677600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538678048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454335712": {"type": "Overloaded", "items": [{"nodeId": "140215538678496"}, {"nodeId": "140215538678944"}]}, "140215538678496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215538678944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215538679392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533535520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533535968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533536416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533536864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533537312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533537760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533538208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533538656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533539104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533539552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533540000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333424"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215453898720": {"type": "TypeAlias", "target": {"nodeId": "140215484116080"}}, "140215484116080": {"type": "Union", "items": [{"nodeId": "140215487803040"}, {"nodeId": "140215484117648"}, {"nodeId": "140215484117984"}]}, "140215487803040": {"type": "TypeAlias", "target": {"nodeId": "140215484115968"}}, "140215484115968": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140215484117648": {"type": "TypeAlias", "target": {"nodeId": "140215484117312"}}, "140215484117312": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215484117984": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140215412520128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458804928": {"type": "Overloaded", "items": [{"nodeId": "140215458649184"}, {"nodeId": "140215513014432"}, {"nodeId": "140215513014880"}, {"nodeId": "140215513015328"}, {"nodeId": "140215513015776"}]}, "140215458649184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215453898944"}, {"nodeId": "140215453899056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215453898944": {"type": "TypeAlias", "target": {"nodeId": "140215484115968"}}, "140215453899056": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487333088"}]}]}, "140215513014432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": "140215487333424"}]}, {"nodeId": "140215453899952"}, {"nodeId": "140215453898832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215453899952": {"type": "TypeAlias", "target": {"nodeId": "140215484117312"}}, "140215453898832": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487333424"}]}]}, "140215513014880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215453900176"}, {"nodeId": "140215453899840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215453900176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140215453899840": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}]}, "140215513015328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215513015776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215453899280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215453899280": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215513016224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": ".1.140215475459056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513016672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215453899392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215453899392": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215513017120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513017568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": ".1.140215475459056"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513018016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513018464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215453899504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215453899504": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215513018912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475467120", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215475467120": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542003776"}, "name": "read"}], "typeVars": [{"nodeId": ".1.140215475467120"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["read"]}, "140215542003776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475467120", "args": [{"nodeId": ".1.140215475467120"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215475467120"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140215475467120": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475467120", "variance": "COVARIANT"}, "140215513019360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513019808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513020256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": ".1.140215475459056"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215513021152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487333088"}, {"nodeId": ".1.140215475459056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215513021600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215475459056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215513022048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": ".1.140215475459056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513088288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513088736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475468128", "args": [{"nodeId": "140215488339232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215475468128": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542005120"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140215475468128"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["write"]}, "140215542005120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475468128", "args": [{"nodeId": ".1.140215475468128"}]}, {"nodeId": ".1.140215475468128"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140215475468128": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475468128", "variance": "CONTRAVARIANT"}, "140215513089184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513089632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513090976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215458805040": {"type": "Overloaded", "items": [{"nodeId": "140215513091424"}, {"nodeId": "140215513091872"}]}, "140215513091424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215475459056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513091872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215453900288": {"type": "Overloaded", "items": [{"nodeId": "140215513092320"}, {"nodeId": "140215513092768"}]}, "140215513092320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215488345952"}, {"nodeId": ".1.140215475459056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215513092768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487335440"}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215513093216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215453900064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215453900064": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215513093664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513094112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513094560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513095008": {"type": "Function", "typeVars": [".-1.140215513095008"], "argTypes": [{"nodeId": ".-1.140215513095008"}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": ".-1.140215513095008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215513095008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215513095008", "variance": "INVARIANT"}, "140215513095456": {"type": "Function", "typeVars": [".-1.140215513095456"], "argTypes": [{"nodeId": ".-1.140215513095456"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215513095456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215513095456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215513095456", "variance": "INVARIANT"}, "140215513095904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513096352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513096800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513097248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513097696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513098144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215475459056", "args": [{"nodeId": ".1.140215475459056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215483154496": {"type": "Concrete", "module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500206848"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500207296"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500207744"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500208640"}, "name": "move"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500209088"}, "name": "read_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500209536"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513219136"}, "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513219584"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513220032"}, "name": "size"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513220480"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513220928"}, "name": "write_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513221376"}, "name": "__len__"}, {"kind": "Variable", "name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513221824"}, "name": "madvise"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513222272"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513222720"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513223168"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513223616"}, "name": "write"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215463048272"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513224960"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215463045248"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513226304"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513226752"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513227200"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513227648"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215488333856"}], "isAbstract": false}, "140215500206848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215500207296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500207744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}, "140215500208640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}, "140215500209088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500209536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513219136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}, "140215513219584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}, "140215513220032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513220480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513220928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}, "140215513221376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215513221824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}, "140215513222272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215463145456"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140215463145456": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215513222720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215463145568"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140215463145568": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215513223168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215463145680"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140215463145680": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215513223616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215463145792"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}, "140215463145792": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215463048272": {"type": "Overloaded", "items": [{"nodeId": "140215513224064"}, {"nodeId": "140215513224512"}]}, "140215513224064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513224512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513224960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215463146016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215463146016": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487335440"}]}, "140215463045248": {"type": "Overloaded", "items": [{"nodeId": "140215513225408"}, {"nodeId": "140215513225856"}]}, "140215513225408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215513225856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215487335440"}, {"nodeId": "140215463146240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215463146240": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215513226304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513226752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215513227200": {"type": "Function", "typeVars": [".-1.140215513227200"], "argTypes": [{"nodeId": ".-1.140215513227200"}], "returnType": {"nodeId": ".-1.140215513227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215513227200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215513227200", "variance": "INVARIANT"}, "140215513227648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483154496"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140215479708896": {"type": "Concrete", "module": "ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "name": "_b_base", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474824896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420905152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420904480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420906048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420907168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420907616"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215474824896": {"type": "Union", "items": [{"nodeId": "140215567759536", "args": [{"nodeId": "A"}, {"nodeId": "140215487333088"}]}, {"nodeId": "N"}]}, "140215420905152": {"type": "Function", "typeVars": [".-1.140215420905152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215458499264"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420905152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140215458499264": {"type": "TypeAlias", "target": {"nodeId": "140215492107888"}}, ".-1.140215420905152": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420905152", "variance": "INVARIANT"}, "140215420904480": {"type": "Function", "typeVars": [".-1.140215420904480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215458499376"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420904480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140215458499376": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, ".-1.140215420904480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420904480", "variance": "INVARIANT"}, "140215420906048": {"type": "Function", "typeVars": [".-1.140215420906048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420906048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}, ".-1.140215420906048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420906048", "variance": "INVARIANT"}, "140215420907168": {"type": "Function", "typeVars": [".-1.140215420907168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215458499600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, "140215458499600": {"type": "Union", "items": [{"nodeId": ".-1.140215420907168"}, {"nodeId": "140215479710912"}]}, ".-1.140215420907168": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420907168", "variance": "INVARIANT"}, "140215479710912": {"type": "Concrete", "module": "ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215420907616": {"type": "Function", "typeVars": [".-1.140215420907616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215479707888"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215420907616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}, "140215479707888": {"type": "Concrete", "module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479708896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513099264"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513100160"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513100608"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215513099264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707888"}, {"nodeId": "140215458498816"}, {"nodeId": "140215487333088"}, {"nodeId": "140215458498928"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458499040"}], "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"]}, "140215458498816": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458498928": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458499040": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215513100160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707888"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215479710240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215479710240": {"type": "Concrete", "module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215479709904"}], "isAbstract": false}, "140215479709904": {"type": "Concrete", "module": "ctypes", "simpleName": "_FuncPointer", "members": [{"kind": "Variable", "name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479591408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567758192", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479585360"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458496800"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513387008"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215479709568"}, {"nodeId": "140215479708896"}], "isAbstract": false}, "140215479591408": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140215483459264"}, {"nodeId": "N"}]}, "140215483459264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215479585360": {"type": "TypeAlias", "target": {"nodeId": "140215479011808"}}, "140215479011808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479588832"}, {"nodeId": "140215479709904"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215479708896"}]}], "returnType": {"nodeId": "140215479708896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215479588832": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458496800": {"type": "Overloaded", "items": [{"nodeId": "140215513385216"}, {"nodeId": "140215513385664"}, {"nodeId": "140215513386112"}, {"nodeId": "140215513386560"}]}, "140215513385216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479709904"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "address"]}, "140215513385664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479709904"}, {"nodeId": "140215457966432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, "140215457966432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215513386112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479709904"}, {"nodeId": "140215458500272"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215458500384"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "func_spec", "paramflags"]}, "140215458500272": {"type": "Tuple", "items": [{"nodeId": "140215458499936"}, {"nodeId": "140215479707888"}]}, "140215458499936": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215458500384": {"type": "TypeAlias", "target": {"nodeId": "140215479586592"}}, "140215479586592": {"type": "Union", "items": [{"nodeId": "140215479588272"}, {"nodeId": "140215479586144"}, {"nodeId": "140215479586480"}]}, "140215479588272": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}]}, "140215479586144": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215479586480": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "140215513386560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479709904"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215458500720"}]}, {"nodeId": "140215466722352", "args": [{"nodeId": "140215487447104"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "vtlb_index", "name", "paramflags", "iid"]}, "140215458500720": {"type": "TypeAlias", "target": {"nodeId": "140215479586592"}}, "140215466722352": {"type": "Concrete", "module": "ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140215466722352"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458496912"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458500496"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513397312"}, "name": "__setitem__"}], "typeVars": [{"nodeId": ".1.140215466722352"}], "bases": [{"nodeId": "140215479709568"}, {"nodeId": "140215479708896"}], "isAbstract": false}, ".1.140215466722352": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140215479708896"}, "def": "140215466722352", "variance": "INVARIANT"}, "140215458496912": {"type": "Overloaded", "items": [{"nodeId": "140215513395520"}, {"nodeId": "140215513395968"}]}, "140215513395520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722352", "args": [{"nodeId": ".1.140215466722352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513395968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722352", "args": [{"nodeId": ".1.140215466722352"}]}, {"nodeId": ".1.140215466722352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}, "140215458500496": {"type": "Overloaded", "items": [{"nodeId": "140215513396416"}, {"nodeId": "140215513396864"}]}, "140215513396416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722352", "args": [{"nodeId": ".1.140215466722352"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513396864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722352", "args": [{"nodeId": ".1.140215466722352"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513397312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722352", "args": [{"nodeId": ".1.140215466722352"}]}, {"nodeId": "140215487333088"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215479709568": {"type": "Concrete", "module": "ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479709232"}], "isAbstract": false}, "140215479709232": {"type": "Concrete", "module": "ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479708896"}], "isAbstract": false}, "140215487447104": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215479711248": {"type": "Concrete", "module": "ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140215479711248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500196096"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140215479711248"}], "bases": [{"nodeId": "140215479708896"}], "isAbstract": false}, ".1.140215479711248": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479711248", "variance": "INVARIANT"}, "140215500196096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479711248", "args": [{"nodeId": ".1.140215479711248"}]}, {"nodeId": ".1.140215479711248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140215513387008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479709904"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215513100608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707888"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215479710240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215420907616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420907616", "variance": "INVARIANT"}, "140215474812096": {"type": "Concrete", "module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513229440"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513229888"}, "name": "raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513230336"}, "name": "release"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215513229440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474812096"}, {"nodeId": "140215462672448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}, "140215462672448": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215513229888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474812096"}], "returnType": {"nodeId": "140215487335104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215513230336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474812096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488332176": {"type": "Protocol", "module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450356864"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__int__"]}, "140215450356864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488332176"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475465104": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541999744"}, "name": "__trunc__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__trunc__"]}, "140215541999744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475465104"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215458658368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458658368", "variance": "INVARIANT"}, "140215546614880": {"type": "Function", "typeVars": [".-1.140215546614880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454135376"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".-1.140215546614880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}, "140215454135376": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, ".-1.140215546614880": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546614880", "variance": "INVARIANT"}, "140215546615328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215454135712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454135712": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "0"}]}, "140215404261920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215404262816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215404261696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215404261024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546617568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546618016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546618464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546619808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215488345952"}, {"nodeId": "140215454136272"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}, "140215454136272": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215404260576": {"type": "Function", "typeVars": [".-1.140215404260576"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454136496"}, {"nodeId": "140215454136832"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": ".-1.140215404260576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}, "140215454136496": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215488345952"}]}, {"nodeId": "140215488333184"}, {"nodeId": "140215454136384"}]}, "140215454136384": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215454136832": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, ".-1.140215404260576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215404260576", "variance": "INVARIANT"}, "140215546620704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546621152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546621600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546622048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546622496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546622944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546623392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215454137056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454137056": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215546623840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546624288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546624736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546625184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546625632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538516256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538516704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215454137280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454137280": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215454134592": {"type": "Overloaded", "items": [{"nodeId": "140215538517152"}, {"nodeId": "140215538517600"}, {"nodeId": "140215538518048"}, {"nodeId": "140215538518496"}, {"nodeId": "140215538518944"}, {"nodeId": "140215538519392"}]}, "140215538517152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538517600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215538518048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215454137952"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454137952": {"type": "TypeAlias", "target": {"nodeId": "140215475200384"}}, "140215538518496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215454138064"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454138064": {"type": "TypeAlias", "target": {"nodeId": "140215475202512"}}, "140215538518944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215538519392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215538519840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215454336720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454336720": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215538520288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538520736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538521184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538521632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538522080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538522528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538522976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538523424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538523872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538524320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538524768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538525216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538525664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538526112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538526560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538527008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538527456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215538527904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215454337504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454337504": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}]}, "140215538528352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538528800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538529248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538529696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538530144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538530592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538531040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538531488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538531936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538663712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538664160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529387424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": ".1.140215487336112"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215529387872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529388320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}, {"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215529388768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454624320": {"type": "Overloaded", "items": [{"nodeId": "140215529389216"}, {"nodeId": "140215529389664"}]}, "140215529389216": {"type": "Function", "typeVars": [".-1.140215529389216"], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".-1.140215529389216"}]}, {"nodeId": "N"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140215529389216": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140215491574944"}, "def": "140215529389216", "variance": "INVARIANT"}, "140215491574944": {"type": "Union", "items": [{"nodeId": "140215475460400", "args": [{"nodeId": "A"}]}, {"nodeId": "140215475460736", "args": [{"nodeId": "A"}]}]}, "140215475460400": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541993472"}, "name": "__lt__"}], "typeVars": [{"nodeId": ".1.140215475460400"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__lt__"]}, "140215541993472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475460400", "args": [{"nodeId": ".1.140215475460400"}]}, {"nodeId": ".1.140215475460400"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475460400": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475460400", "variance": "CONTRAVARIANT"}, "140215475460736": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541993920"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140215475460736"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__gt__"]}, "140215541993920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475460736", "args": [{"nodeId": ".1.140215475460736"}]}, {"nodeId": ".1.140215475460736"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475460736": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475460736", "variance": "CONTRAVARIANT"}, "140215529389664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215454526688"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140215454526688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "140215454626000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454626000": {"type": "TypeAlias", "target": {"nodeId": "140215484112384"}}, "140215484112384": {"type": "Union", "items": [{"nodeId": "140215475460400", "args": [{"nodeId": "A"}]}, {"nodeId": "140215475460736", "args": [{"nodeId": "A"}]}]}, "140215529488672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529489120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454625552": {"type": "Overloaded", "items": [{"nodeId": "140215529489568"}, {"nodeId": "140215529490016"}]}, "140215529489568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215487336112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529490016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454625664": {"type": "Overloaded", "items": [{"nodeId": "140215529490464"}, {"nodeId": "140215529490912"}]}, "140215529490464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}, {"nodeId": ".1.140215487336112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215529490912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487335440"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215529491360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215454626224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454626224": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215454625888": {"type": "Overloaded", "items": [{"nodeId": "140215529491808"}, {"nodeId": "140215529492256"}]}, "140215529491808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529492256": {"type": "Function", "typeVars": [".-1.140215529492256"], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".-1.140215529492256"}]}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215454626448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529492256": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529492256", "variance": "INVARIANT"}, "140215454626448": {"type": "Union", "items": [{"nodeId": ".-1.140215529492256"}, {"nodeId": ".1.140215487336112"}]}, "140215529492704": {"type": "Function", "typeVars": [".-1.140215529492704"], "argTypes": [{"nodeId": ".-1.140215529492704"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": ".-1.140215529492704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529492704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529492704", "variance": "INVARIANT"}, "140215529493152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529493600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529494048": {"type": "Function", "typeVars": [".-1.140215529494048"], "argTypes": [{"nodeId": ".-1.140215529494048"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".-1.140215529494048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529494048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529494048", "variance": "INVARIANT"}, "140215529494496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529494944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487336112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529495392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529495840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529496288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529496736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}, {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215487336112"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529497184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215529500768": {"type": "Function", "typeVars": [".-1.140215529500768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215529500768"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, ".-1.140215529500768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529500768", "variance": "INVARIANT"}, "140215529501216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529501664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215488338224", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488338224": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215408178816"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215488338224"}, {"nodeId": ".2.140215488338224"}], "bases": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215488338224"}]}], "isAbstract": false}, "140215408178816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488338224", "args": [{"nodeId": ".1.140215488338224"}, {"nodeId": ".2.140215488338224"}]}], "returnType": {"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215488338224"}, {"nodeId": ".2.140215488338224"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488338224": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338224", "variance": "COVARIANT"}, ".2.140215488338224": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338224", "variance": "COVARIANT"}, "140215529502112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215488338560", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488338560": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215408078496"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215488338560"}, {"nodeId": ".2.140215488338560"}], "bases": [{"nodeId": "140215488335872", "args": [{"nodeId": ".2.140215488338560"}]}], "isAbstract": false}, "140215408078496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488338560", "args": [{"nodeId": ".1.140215488338560"}, {"nodeId": ".2.140215488338560"}]}], "returnType": {"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215488338560"}, {"nodeId": ".2.140215488338560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488338560": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338560", "variance": "COVARIANT"}, ".2.140215488338560": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338560", "variance": "COVARIANT"}, "140215529502560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215488338896", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488338896": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215408069088"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215488338896"}, {"nodeId": ".2.140215488338896"}], "bases": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215488338896"}, {"nodeId": ".2.140215488338896"}]}], "isAbstract": false}, "140215408069088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488338896", "args": [{"nodeId": ".1.140215488338896"}, {"nodeId": ".2.140215488338896"}]}], "returnType": {"nodeId": "140215474799328", "args": [{"nodeId": ".1.140215488338896"}, {"nodeId": ".2.140215488338896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488338896": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338896", "variance": "COVARIANT"}, ".2.140215488338896": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488338896", "variance": "COVARIANT"}, "140215454626336": {"type": "Overloaded", "items": [{"nodeId": "140215529503008"}, {"nodeId": "140215529503456"}]}, "140215529503008": {"type": "Function", "typeVars": [".-1.140215529503008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215529503008"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": ".-1.140215529503008"}, {"nodeId": "140215454627680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}, ".-1.140215529503008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529503008", "variance": "INVARIANT"}, "140215454627680": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215529503456": {"type": "Function", "typeVars": [".-1.140215529503456", ".-2.140215529503456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215529503456"}]}, {"nodeId": ".-2.140215529503456"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": ".-1.140215529503456"}, {"nodeId": ".-2.140215529503456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140215529503456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529503456", "variance": "INVARIANT"}, ".-2.140215529503456": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529503456", "variance": "INVARIANT"}, "140215454626672": {"type": "Overloaded", "items": [{"nodeId": "140215529503904"}, {"nodeId": "140215529504352"}]}, "140215529503904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}], "returnType": {"nodeId": "140215454627904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454627904": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": "N"}]}, "140215529504352": {"type": "Function", "typeVars": [".-1.140215529504352"], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}, {"nodeId": "140215454628016"}], "returnType": {"nodeId": "140215454628128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215454628016": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-1.140215529504352"}]}, ".-1.140215529504352": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529504352", "variance": "INVARIANT"}, "140215454628128": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-1.140215529504352"}]}, "140215454627456": {"type": "Overloaded", "items": [{"nodeId": "140215529652512"}, {"nodeId": "140215529652960"}]}, "140215529652512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}], "returnType": {"nodeId": ".2.140215487336448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529652960": {"type": "Function", "typeVars": [".-1.140215529652960"], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}, {"nodeId": "140215454628352"}], "returnType": {"nodeId": "140215454628464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215454628352": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-1.140215529652960"}]}, ".-1.140215529652960": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529652960", "variance": "INVARIANT"}, "140215454628464": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-1.140215529652960"}]}, "140215529653408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529653856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}], "returnType": {"nodeId": ".2.140215487336448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529654304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215529654752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": ".1.140215487336448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529655200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529655648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487336448"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529656096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215529656544": {"type": "Function", "typeVars": [".-1.140215529656544", ".-2.140215529656544"], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215529656544"}, {"nodeId": ".-2.140215529656544"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215454628688"}, {"nodeId": "140215454628800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529656544": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529656544", "variance": "INVARIANT"}, ".-2.140215529656544": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529656544", "variance": "INVARIANT"}, "140215454628688": {"type": "Union", "items": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".-1.140215529656544"}]}, "140215454628800": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-2.140215529656544"}]}, "140215529656992": {"type": "Function", "typeVars": [".-1.140215529656992", ".-2.140215529656992"], "argTypes": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215529656992"}, {"nodeId": ".-2.140215529656992"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215454628912"}, {"nodeId": "140215454629024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529656992": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529656992", "variance": "INVARIANT"}, ".-2.140215529656992": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529656992", "variance": "INVARIANT"}, "140215454628912": {"type": "Union", "items": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".-1.140215529656992"}]}, "140215454629024": {"type": "Union", "items": [{"nodeId": ".2.140215487336448"}, {"nodeId": ".-2.140215529656992"}]}, "140215454627792": {"type": "Overloaded", "items": [{"nodeId": "140215529657440"}, {"nodeId": "140215529657888"}]}, "140215529657440": {"type": "Function", "typeVars": [".-1.140215529657440"], "argTypes": [{"nodeId": ".-1.140215529657440"}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}], "returnType": {"nodeId": ".-1.140215529657440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529657440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529657440", "variance": "INVARIANT"}, "140215529657888": {"type": "Function", "typeVars": [".-1.140215529657888"], "argTypes": [{"nodeId": ".-1.140215529657888"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215454629360"}]}], "returnType": {"nodeId": ".-1.140215529657888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529657888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529657888", "variance": "INVARIANT"}, "140215454629360": {"type": "Tuple", "items": [{"nodeId": ".1.140215487336448"}, {"nodeId": ".2.140215487336448"}]}, "140215567759872": {"type": "Concrete", "module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445530080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445530528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521452192"}, "name": "clear"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466996928"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521453536"}, "name": "popitem"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467198608"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467199056"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}], "typeVars": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}], "bases": [{"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}], "isAbstract": true}, "140215445530080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140215567759872": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567759872", "variance": "INVARIANT"}, ".2.140215567759872": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567759872", "variance": "INVARIANT"}, "140215445530528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".1.140215567759872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521452192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466996928": {"type": "Overloaded", "items": [{"nodeId": "140215521452640"}, {"nodeId": "140215521453088"}]}, "140215521452640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".1.140215567759872"}], "returnType": {"nodeId": ".2.140215567759872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215521453088": {"type": "Function", "typeVars": [".-1.140215521453088"], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".1.140215567759872"}, {"nodeId": "140215467199168"}], "returnType": {"nodeId": "140215467199280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140215467199168": {"type": "Union", "items": [{"nodeId": ".2.140215567759872"}, {"nodeId": ".-1.140215521453088"}]}, ".-1.140215521453088": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521453088", "variance": "INVARIANT"}, "140215467199280": {"type": "Union", "items": [{"nodeId": ".2.140215567759872"}, {"nodeId": ".-1.140215521453088"}]}, "140215521453536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}], "returnType": {"nodeId": "140215467199504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467199504": {"type": "Tuple", "items": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, "140215467198608": {"type": "Overloaded", "items": [{"nodeId": "140215521453984"}, {"nodeId": "140215521454432"}]}, "140215521453984": {"type": "Function", "typeVars": [".-1.140215521453984"], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": "140215467199728"}]}, {"nodeId": ".1.140215567759872"}], "returnType": {"nodeId": "140215467199840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215467199728": {"type": "Union", "items": [{"nodeId": ".-1.140215521453984"}, {"nodeId": "N"}]}, ".-1.140215521453984": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521453984", "variance": "INVARIANT"}, "140215467199840": {"type": "Union", "items": [{"nodeId": ".-1.140215521453984"}, {"nodeId": "N"}]}, "140215521454432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}], "returnType": {"nodeId": ".2.140215567759872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215467199056": {"type": "Overloaded", "items": [{"nodeId": "140215521454880"}, {"nodeId": "140215521455328"}, {"nodeId": "140215521455776"}]}, "140215521454880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".2.140215567759872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215521455328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215467200176"}]}, {"nodeId": ".2.140215567759872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215467200176": {"type": "Tuple", "items": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, "140215521455776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215567759872"}, {"nodeId": ".2.140215567759872"}]}, {"nodeId": ".2.140215567759872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140215453904208": {"type": "Overloaded", "items": [{"nodeId": "140215546163744"}]}, "140215546163744": {"type": "Function", "typeVars": [".-1.140215546163744"], "argTypes": [{"nodeId": ".-1.140215546163744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215546163744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546163744", "variance": "INVARIANT"}, "140215399373664": {"type": "Function", "typeVars": [".-1.140215399373664"], "argTypes": [{"nodeId": ".-1.140215399373664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215399373664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215399373664", "variance": "INVARIANT"}, "140215546164640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546165088": {"type": "Function", "typeVars": [".-1.140215546165088"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215546165088"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215546165088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546165088", "variance": "INVARIANT"}, "140215546165536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215546165984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546166432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546166880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215555326240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215555326688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215555327136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215555327584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215555328032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215555328480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215555328928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215454131232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454131232": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}]}, "140215555329376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215454131456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454131456": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}]}, "140215555330272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215555330720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215533634272": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533634272", "variance": "INVARIANT"}, "140215458659264": {"type": "Function", "typeVars": [".-1.140215458659264"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215454337728"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215458659264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}, "140215454337728": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, ".-1.140215458659264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458659264", "variance": "INVARIANT"}, "140215533635168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533635616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533636064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215533636512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454337840"}, {"nodeId": "140215454337952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}, "140215454337840": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454337952": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533636960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140215533637408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454338064"}, {"nodeId": "140215454338176"}, {"nodeId": "140215454338288"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454338064": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}]}, "140215454338176": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454338288": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533637856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140215533638752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454338400"}, {"nodeId": "140215454338512"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454338400": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454338512": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533639200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215533639648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334096"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}, "140215487334096": {"type": "Protocol", "module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533551200"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__getitem__"]}, "140215533551200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334096"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533640096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454338624"}, {"nodeId": "140215454338960"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454338624": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454338960": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533640544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533640992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533641440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533641888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533642336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533642784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533643232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533643680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533644128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533644576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533645024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533645472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533645920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215533646368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215533646816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533647264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454339072"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454339072": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215533647712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215454339296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454339296": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215533648160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215533648608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215533649056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215533649504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454339632"}, {"nodeId": "140215454339744"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454339632": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454339744": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533797664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454339856"}, {"nodeId": "140215454339968"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454339856": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454339968": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533798112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215533798560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215454340192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454340192": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215533799008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454340304"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454340304": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215533799456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454340416"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454340416": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215533799904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454340528"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215454340528": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215533800352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140215533800800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454340640"}, {"nodeId": "140215454340752"}, {"nodeId": "140215454340864"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215454340640": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}]}, "140215454340752": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215454340864": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "N"}]}, "140215533801248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454340976"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215454340976": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215533801696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533802144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533802592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334432"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215487334432": {"type": "Protocol", "module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215533633824"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__getitem__"]}, "140215533633824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334432"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215454337280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454337280": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215533803040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215533803488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454336496": {"type": "Overloaded", "items": [{"nodeId": "140215533803936"}, {"nodeId": "140215533804384"}]}, "140215533803936": {"type": "Function", "typeVars": [".-1.140215533803936"], "argTypes": [{"nodeId": "140215454341312"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": ".-1.140215533803936"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215454341312": {"type": "Union", "items": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": ".-1.140215533803936"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".-1.140215533803936"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215454341200"}, {"nodeId": ".-1.140215533803936"}]}]}, ".-1.140215533803936": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215533803936", "variance": "INVARIANT"}, "140215454341200": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215533804384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215454341424"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": "140215454341536"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215454341424": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215454341536": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215533804832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533805280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533805728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533806176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533806624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215454341648"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215454341648": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215533807072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533807520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533807968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533808416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215533808864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533809312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533809760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533810208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533810656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215533811104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215454341984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454341984": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466728064": {"type": "Concrete", "module": "import_test", "simpleName": "A", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215483162560": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215558909600"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466646592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466646816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479594992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479595104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424997792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215558910496"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215558909600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162560"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458111088"}, {"nodeId": "140215458111200"}, {"nodeId": "A"}, {"nodeId": "140215458111424"}], "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"]}, "140215458111088": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215483163568": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525551776"}, "name": "load_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525552224"}, "name": "module_repr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525552672"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525553120"}, "name": "exec_module"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215525551776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483163568"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215474800336": {"type": "Concrete", "module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487806848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446225856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474815040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474815264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567758528", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474815376"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538193952"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538194400"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487806848": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215446225856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474815040": {"type": "Union", "items": [{"nodeId": "140215474800000"}, {"nodeId": "N"}]}, "140215474800000": {"type": "Protocol", "module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538193056"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["load_module"]}, "140215538193056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800000"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215474815264": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215474815376": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215538193952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}, {"nodeId": "140215487334768"}, {"nodeId": "140215467207456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}, "140215467207456": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215538194400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215525552224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483163568"}, {"nodeId": "140215474800336"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140215525552672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483163568"}, {"nodeId": "140215483162560"}], "returnType": {"nodeId": "140215458115008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140215458115008": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215525553120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483163568"}, {"nodeId": "140215474800336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140215458111200": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458111424": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215466646592": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215466646816": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479594992": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215479595104": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215424997792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162560"}], "returnType": {"nodeId": "140215458111536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458111536": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215558910496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162560"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215466440544": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424996000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424995104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424994656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424994208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424993760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424993536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424993088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424991296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424990144"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483165248"}, {"nodeId": "140215483164240"}], "isAbstract": false}, "140215424996000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458111648"}], "returnType": {"nodeId": "140215458111760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140215458111648": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458111760": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215424995104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458111872"}, {"nodeId": "140215458111984"}], "returnType": {"nodeId": "140215458112096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140215458111872": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458111984": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458112096": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215424994656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424994208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424993760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424993536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424993088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140215424991296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162560"}], "returnType": {"nodeId": "140215458112208"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140215458112208": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215424990144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140215483165248": {"type": "Concrete", "module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550446048"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550446496"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550446944"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140215483163232"}], "isAbstract": false}, "140215550446048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165248"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458115792"}], "returnType": {"nodeId": "140215458115904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140215458115792": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458115904": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215550446496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550446944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165248"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458116016"}, {"nodeId": "140215458116128"}], "returnType": {"nodeId": "140215458116240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140215458116016": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458116128": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458116240": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215483163232": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215483164240": {"type": "Concrete", "module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525554016"}, "name": "is_package"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525554464"}, "name": "get_code"}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424944832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525555360"}, "name": "exec_module"}, {"kind": "Variable", "name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424945280"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483163568"}], "isAbstract": true}, "140215525554016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164240"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215525554464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164240"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458115120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215458115120": {"type": "Union", "items": [{"nodeId": "140215474798992"}, {"nodeId": "N"}]}, "140215424944832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164240"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458115232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215458115232": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215525555360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164240"}, {"nodeId": "140215474800336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140215424945280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458115456"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215474798992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}, "140215458115456": {"type": "Union", "items": [{"nodeId": "140215458115344"}, {"nodeId": "140215487334768"}]}, "140215458115344": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215466440880": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424989248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424989696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424988800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424988352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424987904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424987456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424987008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424985888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424985664"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483165248"}, {"nodeId": "140215483164240"}], "isAbstract": false}, "140215424989248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458112320"}], "returnType": {"nodeId": "140215458112432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140215458112320": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458112432": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215424989696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458112544"}, {"nodeId": "140215458112656"}], "returnType": {"nodeId": "140215458112768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140215458112544": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458112656": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458112768": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215424988800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424988352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424987904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424987456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140215424987008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}, "140215424985888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162560"}], "returnType": {"nodeId": "140215458112880"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140215458112880": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215424985664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140215466441216": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424984544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424984096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483165248"}], "isAbstract": false}, "140215424984544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458112992"}], "returnType": {"nodeId": "140215458113104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140215458112992": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458113104": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215424984096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458113216"}, {"nodeId": "140215458113328"}], "returnType": {"nodeId": "140215458113440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140215458113216": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458113328": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458113440": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215483162896": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424982528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424982080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424982976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424981632"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215424982528": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}, "140215424982080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466439872"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215483162224"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}, "140215466439872": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466850592"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555444512"}, "name": "__init__"}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424622976"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466850592": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215555444512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466439872"}, {"nodeId": "140215458108624"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}, "140215458108624": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215424622976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466439872"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483162224": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555446752"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555447200"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555447648"}, "name": "locate_file"}], "typeVars": [], "bases": [{"nodeId": "140215483161888"}], "isAbstract": false}, "140215555446752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162224"}, {"nodeId": "140215466726384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215466726384": {"type": "Concrete", "module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487725152"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487724480"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517490624"}, "name": "__exit__"}, {"kind": "Variable", "name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433007776"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517491520"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517491968"}, "name": "chmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517493312"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487709472"}, "name": "glob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517494208"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517494656"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517593664"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517594112"}, "name": "is_socket"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517594560"}, "name": "is_fifo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517595008"}, "name": "is_block_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517595456"}, "name": "is_char_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487711488"}, "name": "iterdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517596352"}, "name": "lchmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517596800"}, "name": "lstat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517597248"}, "name": "mkdir"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462670880"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517600832"}, "name": "owner"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517601280"}, "name": "group"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517601728"}, "name": "is_mount"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487724704"}, "name": "readlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517602176"}, "name": "rename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517602624"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517603072"}, "name": "resolve"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517604416"}, "name": "rglob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517605312"}, "name": "rmdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517605760"}, "name": "symlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517606208"}, "name": "hardlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517606656"}, "name": "touch"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517607104"}, "name": "unlink"}, {"kind": "Variable", "name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433005312"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517608000"}, "name": "absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517608448"}, "name": "expanduser"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517609344"}, "name": "read_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512498240"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512498688"}, "name": "samefile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512499136"}, "name": "write_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512499584"}, "name": "write_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512500480"}, "name": "link_to"}], "typeVars": [], "bases": [{"nodeId": "140215466725376"}], "isAbstract": false}, "140215487725152": {"type": "Function", "typeVars": [".-1.140215487725152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215462791312"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215487725152"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, "140215462791312": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215484116416": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}]}, "140215466436512": {"type": "Protocol", "module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433339712"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215466436512"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__fspath__"]}, "140215433339712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466436512", "args": [{"nodeId": ".1.140215466436512"}]}], "returnType": {"nodeId": ".1.140215466436512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215466436512": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215466436512", "variance": "COVARIANT"}, ".-1.140215487725152": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487725152", "variance": "INVARIANT"}, "140215487724480": {"type": "Function", "typeVars": [".-1.140215487724480"], "argTypes": [{"nodeId": ".-1.140215487724480"}], "returnType": {"nodeId": ".-1.140215487724480"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215487724480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487724480", "variance": "INVARIANT"}, "140215517490624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462791536"}, {"nodeId": "140215462791648"}, {"nodeId": "140215462791760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215462791536": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215462791648": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215462791760": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215433007776": {"type": "Function", "typeVars": [".-1.140215433007776"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215433007776"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215433007776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215433007776", "variance": "INVARIANT"}, "140215517491520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215462791872"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140215462791872": {"type": "TypeAlias", "target": {"nodeId": "140215466847344"}}, "140215466847344": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215517491968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}, "140215517493312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487709472": {"type": "Function", "typeVars": [".-1.140215487709472"], "argTypes": [{"nodeId": ".-1.140215487709472"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".-1.140215487709472"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140215487709472": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487709472", "variance": "INVARIANT"}, "140215567755504": {"type": "Concrete", "module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521040352"}, "name": "__next__"}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450477376"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466991776"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521042144"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521042592"}, "name": "__iter__"}, {"kind": "Variable", "name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450477600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450478048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450478720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450478944"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215567755504"}]}], "isAbstract": true}, "140215521040352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": ".1.140215567755504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567755504": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567755504", "variance": "COVARIANT"}, ".2.140215567755504": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567755504", "variance": "CONTRAVARIANT"}, ".3.140215567755504": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567755504", "variance": "COVARIANT"}, "140215450477376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}, {"nodeId": ".2.140215567755504"}], "returnType": {"nodeId": ".1.140215567755504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215466991776": {"type": "Overloaded", "items": [{"nodeId": "140215521041248"}, {"nodeId": "140215521041696"}]}, "140215521041248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}, {"nodeId": "0"}, {"nodeId": "140215466994240"}, {"nodeId": "140215466994352"}], "returnType": {"nodeId": ".1.140215567755504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466994240": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215466994352": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215521041696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215466994464"}], "returnType": {"nodeId": ".1.140215567755504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466994464": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215521042144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521042592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215450477600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "140215474798992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450478048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "140215474804368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450478720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450478944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215567755504"}, {"nodeId": ".2.140215567755504"}, {"nodeId": ".3.140215567755504"}]}], "returnType": {"nodeId": "140215466994912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466994912": {"type": "Union", "items": [{"nodeId": "140215567755504", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215517494208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517494656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517593664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517594112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517594560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517595008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517595456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487711488": {"type": "Function", "typeVars": [".-1.140215487711488"], "argTypes": [{"nodeId": ".-1.140215487711488"}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".-1.140215487711488"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215487711488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487711488", "variance": "INVARIANT"}, "140215517596352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}, "140215517596800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215462791984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462791984": {"type": "TypeAlias", "target": {"nodeId": "140215466847344"}}, "140215517597248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}, "140215462670880": {"type": "Overloaded", "items": [{"nodeId": "140215517597696"}, {"nodeId": "140215517598144"}, {"nodeId": "140215517598592"}, {"nodeId": "140215517599040"}, {"nodeId": "140215517599488"}, {"nodeId": "140215517599936"}, {"nodeId": "140215517600384"}]}, "140215517597696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462792208"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462792320"}, {"nodeId": "140215462792432"}, {"nodeId": "140215462792544"}], "returnType": {"nodeId": "140215483158528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462792208": {"type": "TypeAlias", "target": {"nodeId": "140215483599552"}}, "140215483599552": {"type": "Union", "items": [{"nodeId": "140215483599104"}, {"nodeId": "140215483599216"}, {"nodeId": "140215483600672"}]}, "140215483599104": {"type": "TypeAlias", "target": {"nodeId": "140215483601344"}}, "140215483601344": {"type": "Union", "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"}]}, "140215483599216": {"type": "TypeAlias", "target": {"nodeId": "140215483598768"}}, "140215483598768": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140215483600672": {"type": "TypeAlias", "target": {"nodeId": "140215483597088"}}, "140215483597088": {"type": "Union", "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"}]}, "140215462792320": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462792432": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462792544": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215483158528": {"type": "Concrete", "module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542362880"}, "name": "__init__"}, {"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429572736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429572064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429571840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429574304"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542365120"}, "name": "reconfigure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542365568"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517052992"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517053440"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517053888"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517054336"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517054784"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517055232"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140215483158192"}, {"nodeId": "140215488336880"}], "isAbstract": false}, "140215542362880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215488336208", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215463149040"}, {"nodeId": "140215463149152"}, {"nodeId": "140215463149264"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "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"]}, "140215488336208": {"type": "Concrete", "module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445531648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445532768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445533664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445534336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445535008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445535680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445536352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445635584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445636256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445636928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445637600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445638272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445638944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445639616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445640288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445640960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445641632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445642304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445642976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445643648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445644544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445645664"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215488336208"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488336208"}]}], "isAbstract": true}, "140215445531648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488336208": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488336208", "variance": "INVARIANT"}, "140215445532768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445533664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445534336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445535008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445535680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445536352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445635584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215488336208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215445636256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445636928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215488336208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215445637600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488336208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215445638272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215445638944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445639616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445640288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215467200288"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215467200288": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215445640960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445641632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": ".1.140215488336208"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215445642304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215445642976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": ".1.140215488336208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445643648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488336208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215445644544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}], "returnType": {"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215445645664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215488336208"}]}, {"nodeId": "140215467200400"}, {"nodeId": "140215467200512"}, {"nodeId": "140215467200624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215467200400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215467200512": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215467200624": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215463149040": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215463149152": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215463149264": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215429572736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488336544": {"type": "Concrete", "module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445647008"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215488336208", "args": [{"nodeId": "140215488339232"}]}], "isAbstract": true}, "140215445647008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336544"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215429572064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215429571840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215429574304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542365120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215463149376"}, {"nodeId": "140215458103360"}, {"nodeId": "140215458103472"}, {"nodeId": "140215458103584"}, {"nodeId": "140215458103696"}], "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"]}, "140215463149376": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458103360": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458103472": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458103584": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215458103696": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215542365568": {"type": "Function", "typeVars": [".-1.140215542365568"], "argTypes": [{"nodeId": ".-1.140215542365568"}], "returnType": {"nodeId": ".-1.140215542365568"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542365568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542365568", "variance": "INVARIANT"}, "140215517052992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517053440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517053888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215517054336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215517054784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215517055232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158528"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215483158192": {"type": "Concrete", "module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466850256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466645024"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542359296"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542359744"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542360192"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542360640"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542361088"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542361536"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542361984"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542362432"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140215483155168"}], "isAbstract": false}, "140215466850256": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466645024": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215542359296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215542359744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542360192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542360640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215542361088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215542361536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215542361984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215542362432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158192"}, {"nodeId": "140215463148928"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463148928": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215483155168": {"type": "Concrete", "module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542402176"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542402624"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542403072"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542403520"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542403968"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542404416"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542404864"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542405312"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542405760"}, "name": "readable"}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215483461728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542406208"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542406656"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542407104"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542407552"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542408000"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542408448"}, "name": "writable"}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215491837312"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542408896"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542409344"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542409792"}, "name": "__del__"}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429080320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542410688"}, "name": "_checkClosed"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215542402176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215542402624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542403072": {"type": "Function", "typeVars": [".-1.140215542403072"], "argTypes": [{"nodeId": ".-1.140215542403072"}], "returnType": {"nodeId": ".-1.140215542403072"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542403072": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542403072", "variance": "INVARIANT"}, "140215542403520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215463146352"}, {"nodeId": "140215463146464"}, {"nodeId": "140215463146576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215463146352": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215463146464": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215463146576": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215542403968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542404416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542404864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542405312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542405760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483461728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215542406208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215542406656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215542407104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542407552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542408000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215463146688"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463146688": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215542408448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215491837312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215542408896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215463146800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463146800": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215542409344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215463146912"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463146912": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215542409792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215429080320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542410688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155168"}, {"nodeId": "140215463147024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "140215463147024": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215488336880": {"type": "Concrete", "module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445648576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445649024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445649248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445649472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445649696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445649920"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215488336208", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": true}, "140215445648576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445649024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445649248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "140215467200736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467200736": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215445649472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445649696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445649920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488336880"}], "returnType": {"nodeId": "140215488336880"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517598144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462792656"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483156176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462792656": {"type": "TypeAlias", "target": {"nodeId": "140215492111136"}}, "140215492111136": {"type": "Union", "items": [{"nodeId": "140215492109120"}, {"nodeId": "140215492109232"}, {"nodeId": "140215492111248"}]}, "140215492109120": {"type": "TypeAlias", "target": {"nodeId": "140215492112368"}}, "140215492112368": {"type": "Union", "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"}]}, "140215492109232": {"type": "TypeAlias", "target": {"nodeId": "140215492116176"}}, "140215492116176": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140215492111248": {"type": "TypeAlias", "target": {"nodeId": "140215492111808"}}, "140215492111808": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140215483156176": {"type": "Concrete", "module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466645360"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542350336"}, "name": "__init__"}, {"kind": "Variable", "name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215429084576"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542351232"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542351680"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542352128"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "140215483155504"}, {"nodeId": "140215488336544"}], "isAbstract": false}, "140215466645360": {"type": "TypeAlias", "target": {"nodeId": "140215492108896"}}, "140215492108896": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215492110128"}]}, "140215492110128": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215484112272": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215466436512", "args": [{"nodeId": "140215488339232"}]}]}, "140215542350336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156176"}, {"nodeId": "140215463148144"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}, {"nodeId": "140215463148368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}, "140215463148144": {"type": "TypeAlias", "target": {"nodeId": "140215492108896"}}, "140215463148368": {"type": "Union", "items": [{"nodeId": "140215463148256"}, {"nodeId": "N"}]}, "140215463148256": {"type": "TypeAlias", "target": {"nodeId": "140215558908480"}}, "140215558908480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215429084576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156176"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542351232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156176"}, {"nodeId": "140215463148480"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463148480": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215542351680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156176"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215542352128": {"type": "Function", "typeVars": [".-1.140215542352128"], "argTypes": [{"nodeId": ".-1.140215542352128"}], "returnType": {"nodeId": ".-1.140215542352128"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542352128": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542352128", "variance": "INVARIANT"}, "140215483155504": {"type": "Concrete", "module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542411136"}, "name": "readall"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542411584"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542412032"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542412480"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140215483155168"}], "isAbstract": false}, "140215542411136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155504"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542411584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155504"}, {"nodeId": "140215463147136"}], "returnType": {"nodeId": "140215463147248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463147136": {"type": "TypeAlias", "target": {"nodeId": "140215492107888"}}, "140215463147248": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215542412032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155504"}, {"nodeId": "140215463147360"}], "returnType": {"nodeId": "140215463147472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463147360": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215463147472": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215542412480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155504"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215463147584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463147584": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215517598592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462792880"}, {"nodeId": "140215462794224"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483157520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462792880": {"type": "TypeAlias", "target": {"nodeId": "140215492112368"}}, "140215462794224": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215483157520": {"type": "Concrete", "module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542357504"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542357952"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140215483156848"}, {"nodeId": "140215483157184"}], "isAbstract": false}, "140215542357504": {"type": "Function", "typeVars": [".-1.140215542357504"], "argTypes": [{"nodeId": ".-1.140215542357504"}], "returnType": {"nodeId": ".-1.140215542357504"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542357504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542357504", "variance": "INVARIANT"}, "140215542357952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483157520"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215483156848": {"type": "Concrete", "module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542354816"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542355264"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542355712"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140215483155840"}, {"nodeId": "140215488336544"}], "isAbstract": false}, "140215542354816": {"type": "Function", "typeVars": [".-1.140215542354816"], "argTypes": [{"nodeId": ".-1.140215542354816"}], "returnType": {"nodeId": ".-1.140215542354816"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542354816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542354816", "variance": "INVARIANT"}, "140215542355264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156848"}, {"nodeId": "140215483155504"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140215542355712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156848"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215483155840": {"type": "Concrete", "module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215483155504"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542412928"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542413376"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542413824"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542414272"}, "name": "readinto1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542414720"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542349888"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140215483155168"}], "isAbstract": false}, "140215542412928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}], "returnType": {"nodeId": "140215483155504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542413376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}, {"nodeId": "140215463147696"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463147696": {"type": "TypeAlias", "target": {"nodeId": "140215492107888"}}, "140215542413824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}, {"nodeId": "140215463147808"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463147808": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215542414272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}, {"nodeId": "140215463147920"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463147920": {"type": "TypeAlias", "target": {"nodeId": "140215492107888"}}, "140215542414720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}, {"nodeId": "140215463148032"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463148032": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215542349888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483155840"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215483157184": {"type": "Concrete", "module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542356160"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542356608"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542357056"}, "name": "write"}], "typeVars": [], "bases": [{"nodeId": "140215483155840"}, {"nodeId": "140215488336544"}], "isAbstract": false}, "140215542356160": {"type": "Function", "typeVars": [".-1.140215542356160"], "argTypes": [{"nodeId": ".-1.140215542356160"}], "returnType": {"nodeId": ".-1.140215542356160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542356160": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542356160", "variance": "INVARIANT"}, "140215542356608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483157184"}, {"nodeId": "140215483155504"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140215542357056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483157184"}, {"nodeId": "140215463148816"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215463148816": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215517599040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462795456"}, {"nodeId": "140215462795568"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483157184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462795456": {"type": "TypeAlias", "target": {"nodeId": "140215492111808"}}, "140215462795568": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215517599488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462796576"}, {"nodeId": "140215462793328"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483156848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462796576": {"type": "TypeAlias", "target": {"nodeId": "140215492116176"}}, "140215462793328": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215517599936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462794336"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462794336": {"type": "TypeAlias", "target": {"nodeId": "140215492111136"}}, "140215517600384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462793888"}, {"nodeId": "140215462795680"}, {"nodeId": "140215462796464"}], "returnType": {"nodeId": "140215488336208", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215462793888": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462795680": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462796464": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517600832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517601280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517601728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487724704": {"type": "Function", "typeVars": [".-1.140215487724704"], "argTypes": [{"nodeId": ".-1.140215487724704"}], "returnType": {"nodeId": ".-1.140215487724704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215487724704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487724704", "variance": "INVARIANT"}, "140215517602176": {"type": "Function", "typeVars": [".-1.140215517602176"], "argTypes": [{"nodeId": ".-1.140215517602176"}, {"nodeId": "140215462794560"}], "returnType": {"nodeId": ".-1.140215517602176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140215517602176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517602176", "variance": "INVARIANT"}, "140215462794560": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215466725376"}]}, "140215466725376": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433014944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433014496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433014272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433014048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433013824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433013600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433013376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433013152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487709920"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517479424"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517479872"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517480320"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517480768"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517481216"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517481664"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487713728"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487724256"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517483008"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517483456"}, "name": "as_posix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517483904"}, "name": "as_uri"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517484352"}, "name": "is_absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517484800"}, "name": "is_reserved"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517485248"}, "name": "is_relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517485696"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487709248"}, "name": "relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517486592"}, "name": "with_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517487040"}, "name": "with_stem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517487488"}, "name": "with_suffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215487724928"}, "name": "joinpath"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433008896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433010016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517489280"}, "name": "__class_getitem__"}], "typeVars": [], "bases": [{"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": false}, "140215433014944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433014496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433014272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433014048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433013824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433013600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433013376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215433013152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487709920": {"type": "Function", "typeVars": [".-1.140215487709920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215462790528"}], "returnType": {"nodeId": ".-1.140215487709920"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "140215462790528": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, ".-1.140215487709920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487709920", "variance": "INVARIANT"}, "140215517479424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517479872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517480320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517480768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517481216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517481664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215487713728": {"type": "Function", "typeVars": [".-1.140215487713728"], "argTypes": [{"nodeId": ".-1.140215487713728"}, {"nodeId": "140215462790640"}], "returnType": {"nodeId": ".-1.140215487713728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215487713728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487713728", "variance": "INVARIANT"}, "140215462790640": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215487724256": {"type": "Function", "typeVars": [".-1.140215487724256"], "argTypes": [{"nodeId": ".-1.140215487724256"}, {"nodeId": "140215462790752"}], "returnType": {"nodeId": ".-1.140215487724256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215487724256": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487724256", "variance": "INVARIANT"}, "140215462790752": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215517483008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517483456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517483904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517484352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517484800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517485248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215462790864"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, "140215462790864": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215517485696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725376"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}, "140215487709248": {"type": "Function", "typeVars": [".-1.140215487709248"], "argTypes": [{"nodeId": ".-1.140215487709248"}, {"nodeId": "140215462790976"}], "returnType": {"nodeId": ".-1.140215487709248"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140215487709248": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487709248", "variance": "INVARIANT"}, "140215462790976": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215517486592": {"type": "Function", "typeVars": [".-1.140215517486592"], "argTypes": [{"nodeId": ".-1.140215517486592"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215517486592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, ".-1.140215517486592": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517486592", "variance": "INVARIANT"}, "140215517487040": {"type": "Function", "typeVars": [".-1.140215517487040"], "argTypes": [{"nodeId": ".-1.140215517487040"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215517487040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}, ".-1.140215517487040": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517487040", "variance": "INVARIANT"}, "140215517487488": {"type": "Function", "typeVars": [".-1.140215517487488"], "argTypes": [{"nodeId": ".-1.140215517487488"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215517487488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}, ".-1.140215517487488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517487488", "variance": "INVARIANT"}, "140215487724928": {"type": "Function", "typeVars": [".-1.140215487724928"], "argTypes": [{"nodeId": ".-1.140215487724928"}, {"nodeId": "140215462791088"}], "returnType": {"nodeId": ".-1.140215487724928"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140215487724928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487724928", "variance": "INVARIANT"}, "140215462791088": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215433008896": {"type": "Function", "typeVars": [".-1.140215433008896"], "argTypes": [{"nodeId": ".-1.140215433008896"}], "returnType": {"nodeId": "140215567758192", "args": [{"nodeId": ".-1.140215433008896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215433008896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215433008896", "variance": "INVARIANT"}, "140215433010016": {"type": "Function", "typeVars": [".-1.140215433010016"], "argTypes": [{"nodeId": ".-1.140215433010016"}], "returnType": {"nodeId": ".-1.140215433010016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215433010016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215433010016", "variance": "INVARIANT"}, "140215517489280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}, "140215517602624": {"type": "Function", "typeVars": [".-1.140215517602624"], "argTypes": [{"nodeId": ".-1.140215517602624"}, {"nodeId": "140215462797248"}], "returnType": {"nodeId": ".-1.140215517602624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140215517602624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517602624", "variance": "INVARIANT"}, "140215462797248": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215466725376"}]}, "140215517603072": {"type": "Function", "typeVars": [".-1.140215517603072"], "argTypes": [{"nodeId": ".-1.140215517603072"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": ".-1.140215517603072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}, ".-1.140215517603072": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517603072", "variance": "INVARIANT"}, "140215517604416": {"type": "Function", "typeVars": [".-1.140215517604416"], "argTypes": [{"nodeId": ".-1.140215517604416"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".-1.140215517604416"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140215517604416": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517604416", "variance": "INVARIANT"}, "140215517605312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517605760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462794448"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}, "140215462794448": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215466726384"}]}, "140215517606208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462794784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140215462794784": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215466726384"}]}, "140215517606656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}, "140215517607104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}, "140215433005312": {"type": "Function", "typeVars": [".-1.140215433005312"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215433005312"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215433005312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215433005312", "variance": "INVARIANT"}, "140215517608000": {"type": "Function", "typeVars": [".-1.140215517608000"], "argTypes": [{"nodeId": ".-1.140215517608000"}], "returnType": {"nodeId": ".-1.140215517608000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215517608000": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517608000", "variance": "INVARIANT"}, "140215517608448": {"type": "Function", "typeVars": [".-1.140215517608448"], "argTypes": [{"nodeId": ".-1.140215517608448"}], "returnType": {"nodeId": ".-1.140215517608448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215517608448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517608448", "variance": "INVARIANT"}, "140215517609344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215512498240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462797360"}, {"nodeId": "140215462793216"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140215462797360": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462793216": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215512498688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462793664"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}, "140215462793664": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215512499136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462793776"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140215462793776": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215512499584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462794672"}, {"nodeId": "140215462794896"}, {"nodeId": "140215462795008"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}, "140215462794672": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462794896": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462795008": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215512500480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466726384"}, {"nodeId": "140215462795120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140215462795120": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215555447200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162224"}, {"nodeId": "140215458108848"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140215458108848": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215555447648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483162224"}, {"nodeId": "140215458108960"}], "returnType": {"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215458108960": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215483161888": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424626560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424626112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424625216"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458105936"}, "items": [{"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "discover"}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424625440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424624768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424625664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424624544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424624320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424624096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424623872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": true}, "140215424626560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458107728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140215458107728": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215424626112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}, {"nodeId": "140215458107840"}], "returnType": {"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215458107840": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215424625216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215483161888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}, "140215458105936": {"type": "Overloaded", "items": [{"nodeId": "140215554718432"}, {"nodeId": "140215554718880"}]}, "140215554718432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215466439872"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215483161888"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}, "140215554718880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140215458108064"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215483161888"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}, "140215458108064": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215424625440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458108288"}], "returnType": {"nodeId": "140215483162224"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}, "140215458108288": {"type": "TypeAlias", "target": {"nodeId": "140215484116416"}}, "140215424624768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215483159200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483159200": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517064640"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517065088"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517065536"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517065984"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517066432"}, "name": "get_all"}, {"kind": "Variable", "name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424713216"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}, "140215517064640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159200"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517065088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159200"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517065536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159200"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517065984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159200"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517066432": {"type": "Function", "typeVars": [".-1.140215517066432"], "argTypes": [{"nodeId": "140215483159200"}, {"nodeId": "140215487334768"}, {"nodeId": ".-1.140215517066432"}], "returnType": {"nodeId": "140215458105376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140215517066432": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517066432", "variance": "INVARIANT"}, "140215458105376": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140215517066432"}]}, "140215424713216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159200"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215458105488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458105488": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}, "140215424625664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215483160880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483160880": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554711264"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554711712"}, "name": "select"}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424680448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424682464"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215479595552"}]}], "isAbstract": false}, "140215554711264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483160880"}, {"nodeId": "140215458106608"}], "returnType": {"nodeId": "140215458107392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458106608": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215458107392": {"type": "TypeAlias", "target": {"nodeId": "140215466643456"}}, "140215466643456": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215554711712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483160880"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215483160880"}, "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"]}, "140215424680448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483160880"}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215424682464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483160880"}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479595552": {"type": "TypeAlias", "target": {"nodeId": "140215466643456"}}, "140215424624544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215424624320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215458108400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458108400": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215466727728"}]}, {"nodeId": "N"}]}, "140215466727728": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554715296"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554715744"}, "name": "read_binary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554716192"}, "name": "locate"}, {"kind": "Variable", "name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466643232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466645248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215483161888"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466725712"}], "isAbstract": false}, "140215554715296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727728"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140215554715744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727728"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215554716192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727728"}], "returnType": {"nodeId": "140215466436512", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466643232": {"type": "Union", "items": [{"nodeId": "140215483161552"}, {"nodeId": "N"}]}, "140215483161552": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554716640"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215554716640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161552"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140215466645248": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215466725712": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466725376"}], "isAbstract": false}, "140215424624096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215458108512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458108512": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215424623872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161888"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215424982976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458113552"}, {"nodeId": "140215458113664"}], "returnType": {"nodeId": "140215458113776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140215458113552": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458113664": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458113776": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215424981632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458113888"}], "returnType": {"nodeId": "140215458114000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140215458113888": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215458114000": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215466441552": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554877792"}, "name": "__init__"}, {"kind": "Variable", "name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424980960"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483165584"}], "isAbstract": false}, "140215554877792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466441552"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458114224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}, "140215458114224": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}, "140215424980960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215458114448"}], "returnType": {"nodeId": "140215457960384"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}, "140215458114448": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}, "140215457960384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215483165584"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215483165584": {"type": "Concrete", "module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550447392"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550447840"}, "name": "find_loader"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550448288"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550448736"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140215483163232"}], "isAbstract": false}, "140215550447392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165584"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458116352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215458116352": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215550447840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165584"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458116688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215458116688": {"type": "Tuple", "items": [{"nodeId": "140215458116464"}, {"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}]}, "140215458116464": {"type": "Union", "items": [{"nodeId": "140215483163568"}, {"nodeId": "N"}]}, "140215550448288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550448736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165584"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458116800"}], "returnType": {"nodeId": "140215458116912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}, "140215458116800": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215458116912": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215466441888": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554878688"}, "name": "set_data"}], "typeVars": [], "bases": [{"nodeId": "140215483165920"}, {"nodeId": "140215483164912"}], "isAbstract": false}, "140215554878688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466441888"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458114560"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}, "140215458114560": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215483165920": {"type": "Concrete", "module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550449184"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550449632"}, "name": "get_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550450080"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550450528"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140215483163904"}, {"nodeId": "140215483164576"}], "isAbstract": true}, "140215550449184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165920"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140215550449632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165920"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215550450080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165920"}, {"nodeId": "140215458117024"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140215458117024": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550450528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483165920"}, {"nodeId": "140215458117136"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140215458117136": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215483163904": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424944160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483163568"}], "isAbstract": true}, "140215424944160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483163904"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215483164576": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424996896"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483164240"}], "isAbstract": true}, "140215424996896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164576"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215483164912": {"type": "Concrete", "module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550444256"}, "name": "path_mtime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550444704"}, "name": "set_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550445152"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550445600"}, "name": "path_stats"}], "typeVars": [], "bases": [{"nodeId": "140215483163904"}, {"nodeId": "140215483164576"}], "isAbstract": true}, "140215550444256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164912"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215550444704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164912"}, {"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}, "140215550445152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164912"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458115568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215458115568": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550445600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483164912"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215466442224": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140215483165920"}, {"nodeId": "140215483164912"}], "isAbstract": false}, "140215466721344": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554879136"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554879584"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554880032"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554880480"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554880928"}, "name": "exec_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554881376"}, "name": "get_code"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554881824"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140215483164576"}], "isAbstract": false}, "140215554879136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}, "140215554879584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215458114672"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140215458114672": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215554880032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215554880480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215483162560"}], "returnType": {"nodeId": "140215474800336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140215554880928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215474800336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140215554881376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140215554881824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721344"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488342256": {"type": "Concrete", "module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458510688"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554726080"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554726528"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554726976"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554727424"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554727872"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554728320"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554725632"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554728768"}, "name": "__copy__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458510800"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554730560"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554731008"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458511472"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}], "bases": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}], "isAbstract": false}, ".1.140215488342256": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488342256", "variance": "INVARIANT"}, ".2.140215488342256": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488342256", "variance": "INVARIANT"}, "140215458510688": {"type": "Overloaded", "items": [{"nodeId": "140215554722944"}, {"nodeId": "140215500810144"}, {"nodeId": "140215554723840"}, {"nodeId": "140215554723392"}, {"nodeId": "140215554724736"}, {"nodeId": "140215554724288"}, {"nodeId": "140215554725184"}]}, "140215554722944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215500810144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "N"}, {"nodeId": ".2.140215488342256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215554723840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215554723392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": ".2.140215488342256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215554724736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458511696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458511696": {"type": "Tuple", "items": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, "140215554724288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458511920"}]}, {"nodeId": ".2.140215488342256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215458511920": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488342256"}]}, "140215554725184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215554726080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215554726528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": ".1.140215488342256"}], "returnType": {"nodeId": ".2.140215488342256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215554726976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215554727424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": ".1.140215488342256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215554727872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488342256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215554728320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215554725632": {"type": "Function", "typeVars": [".-1.140215554725632"], "argTypes": [{"nodeId": ".-1.140215554725632"}], "returnType": {"nodeId": ".-1.140215554725632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215554725632": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554725632", "variance": "INVARIANT"}, "140215554728768": {"type": "Function", "typeVars": [".-1.140215554728768"], "argTypes": [{"nodeId": ".-1.140215554728768"}], "returnType": {"nodeId": ".-1.140215554728768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215554728768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554728768", "variance": "INVARIANT"}, "140215458510800": {"type": "Overloaded", "items": [{"nodeId": "140215554729664"}, {"nodeId": "140215554730112"}]}, "140215554729664": {"type": "Function", "typeVars": [".-1.140215554729664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215554729664"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140215488342256", "args": [{"nodeId": ".-1.140215554729664"}, {"nodeId": "140215458512256"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140215554729664": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554729664", "variance": "INVARIANT"}, "140215458512256": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215554730112": {"type": "Function", "typeVars": [".-1.140215554730112", ".-2.140215554730112"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215554730112"}]}, {"nodeId": ".-2.140215554730112"}], "returnType": {"nodeId": "140215488342256", "args": [{"nodeId": ".-1.140215554730112"}, {"nodeId": ".-2.140215554730112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140215554730112": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554730112", "variance": "INVARIANT"}, ".-2.140215554730112": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554730112", "variance": "INVARIANT"}, "140215554730560": {"type": "Function", "typeVars": [".-1.140215554730560", ".-2.140215554730560"], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215458512368"}], "returnType": {"nodeId": "140215488342256", "args": [{"nodeId": "140215458512480"}, {"nodeId": "140215458512592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458512368": {"type": "Union", "items": [{"nodeId": "140215488342256", "args": [{"nodeId": ".-1.140215554730560"}, {"nodeId": ".-2.140215554730560"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": ".-1.140215554730560"}, {"nodeId": ".-2.140215554730560"}]}]}, ".-1.140215554730560": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554730560", "variance": "INVARIANT"}, ".-2.140215554730560": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554730560", "variance": "INVARIANT"}, "140215458512480": {"type": "Union", "items": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".-1.140215554730560"}]}, "140215458512592": {"type": "Union", "items": [{"nodeId": ".2.140215488342256"}, {"nodeId": ".-2.140215554730560"}]}, "140215554731008": {"type": "Function", "typeVars": [".-1.140215554731008", ".-2.140215554731008"], "argTypes": [{"nodeId": "140215488342256", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, {"nodeId": "140215458512704"}], "returnType": {"nodeId": "140215488342256", "args": [{"nodeId": "140215458791488"}, {"nodeId": "140215458791600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458512704": {"type": "Union", "items": [{"nodeId": "140215488342256", "args": [{"nodeId": ".-1.140215554731008"}, {"nodeId": ".-2.140215554731008"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": ".-1.140215554731008"}, {"nodeId": ".-2.140215554731008"}]}]}, ".-1.140215554731008": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554731008", "variance": "INVARIANT"}, ".-2.140215554731008": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554731008", "variance": "INVARIANT"}, "140215458791488": {"type": "Union", "items": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".-1.140215554731008"}]}, "140215458791600": {"type": "Union", "items": [{"nodeId": ".2.140215488342256"}, {"nodeId": ".-2.140215554731008"}]}, "140215458511472": {"type": "Overloaded", "items": [{"nodeId": "140215554729216"}, {"nodeId": "140215554731456"}]}, "140215554729216": {"type": "Function", "typeVars": [".-1.140215554729216"], "argTypes": [{"nodeId": ".-1.140215554729216"}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}], "returnType": {"nodeId": ".-1.140215554729216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215554729216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554729216", "variance": "INVARIANT"}, "140215554731456": {"type": "Function", "typeVars": [".-1.140215554731456"], "argTypes": [{"nodeId": ".-1.140215554731456"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458791936"}]}], "returnType": {"nodeId": ".-1.140215554731456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215554731456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554731456", "variance": "INVARIANT"}, "140215458791936": {"type": "Tuple", "items": [{"nodeId": ".1.140215488342256"}, {"nodeId": ".2.140215488342256"}]}, "140215488342592": {"type": "Concrete", "module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488342592"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458512032"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554733248"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554733696"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554734144"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554734592"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554735040"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554735488"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550705728"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458791712"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458792048"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550707968"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550706624"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550708416"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550708864"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550709312"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550709760"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550710208"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550711104"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550711552"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550712000"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550712448"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550710656"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550712896"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550713792"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550714240"}, "name": "index"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458792608"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550715584"}, "name": "extend"}], "typeVars": [{"nodeId": ".1.140215488342592"}], "bases": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215488342592"}]}], "isAbstract": false}, ".1.140215488342592": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488342592", "variance": "INVARIANT"}, "140215458512032": {"type": "Overloaded", "items": [{"nodeId": "140215554732352"}, {"nodeId": "140215554732800"}]}, "140215554732352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}, "140215554732800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}, "140215554733248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458792160"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458792160": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}]}, "140215554733696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458792272"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458792272": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}]}, "140215554734144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458792384"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458792384": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}]}, "140215554734592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458792496"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458792496": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}]}, "140215554735040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215554735488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215550705728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215458791712": {"type": "Overloaded", "items": [{"nodeId": "140215550706176"}, {"nodeId": "140215554731904"}]}, "140215550706176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215488342592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215554731904": {"type": "Function", "typeVars": [".-1.140215554731904"], "argTypes": [{"nodeId": ".-1.140215554731904"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": ".-1.140215554731904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215554731904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554731904", "variance": "INVARIANT"}, "140215458792048": {"type": "Overloaded", "items": [{"nodeId": "140215550707072"}, {"nodeId": "140215550707520"}]}, "140215550707072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215488345952"}, {"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215550707520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215487335440"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215550707968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458792832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458792832": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215550706624": {"type": "Function", "typeVars": [".-1.140215550706624"], "argTypes": [{"nodeId": ".-1.140215550706624"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": ".-1.140215550706624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550706624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550706624", "variance": "INVARIANT"}, "140215550708416": {"type": "Function", "typeVars": [".-1.140215550708416"], "argTypes": [{"nodeId": ".-1.140215550708416"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": ".-1.140215550708416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550708416": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550708416", "variance": "INVARIANT"}, "140215550708864": {"type": "Function", "typeVars": [".-1.140215550708864"], "argTypes": [{"nodeId": ".-1.140215550708864"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": ".-1.140215550708864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550708864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550708864", "variance": "INVARIANT"}, "140215550709312": {"type": "Function", "typeVars": [".-1.140215550709312"], "argTypes": [{"nodeId": ".-1.140215550709312"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550709312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550709312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550709312", "variance": "INVARIANT"}, "140215550709760": {"type": "Function", "typeVars": [".-1.140215550709760"], "argTypes": [{"nodeId": ".-1.140215550709760"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550709760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550709760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550709760", "variance": "INVARIANT"}, "140215550710208": {"type": "Function", "typeVars": [".-1.140215550710208"], "argTypes": [{"nodeId": ".-1.140215550710208"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550710208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550710208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550710208", "variance": "INVARIANT"}, "140215550711104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140215550711552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215487333088"}, {"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}, "140215550712000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215488342592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}, "140215550712448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140215550710656": {"type": "Function", "typeVars": [".-1.140215550710656"], "argTypes": [{"nodeId": ".-1.140215550710656"}], "returnType": {"nodeId": ".-1.140215550710656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550710656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550710656", "variance": "INVARIANT"}, "140215550712896": {"type": "Function", "typeVars": [".-1.140215550712896"], "argTypes": [{"nodeId": ".-1.140215550712896"}], "returnType": {"nodeId": ".-1.140215550712896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550712896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550712896", "variance": "INVARIANT"}, "140215550713792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140215550714240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": ".1.140215488342592"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}, "140215458792608": {"type": "Overloaded", "items": [{"nodeId": "140215550713344"}, {"nodeId": "140215550715136"}]}, "140215550713344": {"type": "Function", "typeVars": [".-1.140215550713344"], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".-1.140215550713344"}]}, {"nodeId": "N"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140215550713344": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140215491574944"}, "def": "140215550713344", "variance": "INVARIANT"}, "140215550715136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215458646272"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140215458646272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140215488342592"}], "returnType": {"nodeId": "140215458793280"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215458793280": {"type": "TypeAlias", "target": {"nodeId": "140215484112384"}}, "140215550715584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342592", "args": [{"nodeId": ".1.140215488342592"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488342592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140215488342928": {"type": "Concrete", "module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550716032"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550716480"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550716928"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550717376"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550717824"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550718272"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550718720"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550719168"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550719616"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550720064"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550720512"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550720960"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550721408"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550820416"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550820864"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550821312"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550821760"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550822208"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550822656"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550823104"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550823552"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550824448"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550824896"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550825344"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550825792"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550826240"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550827136"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550827584"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550828032"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550828480"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550828928"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550829376"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550829824"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550830272"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550830720"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550831168"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550831616"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550832064"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550832512"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550832960"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550833408"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550833856"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550834304"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550834752"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550835200"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550835648"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550836096"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550935104"}, "name": "lstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458792720"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550936448"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550936896"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550937344"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550937792"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550938240"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550938688"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550939136"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550939584"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550940032"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550940480"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550940928"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550941376"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550941824"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550942272"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550942720"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550943168"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550943616"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550944064"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550944512"}, "name": "zfill"}], "typeVars": [], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215488342928"}]}], "isAbstract": false}, "140215550716032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140215550716480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215550716928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215550717376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215487333760"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215550717824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215458793392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458793392": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215550718272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458793504"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458793504": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550718720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458793616"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458793616": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550719168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458793728"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458793728": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550719616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458793840"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458793840": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550720064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215550720512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215550720960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215550721408": {"type": "Function", "typeVars": [".-1.140215550721408"], "argTypes": [{"nodeId": ".-1.140215550721408"}, {"nodeId": "140215458793952"}], "returnType": {"nodeId": ".-1.140215550721408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550721408": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550721408", "variance": "INVARIANT"}, "140215458793952": {"type": "Union", "items": [{"nodeId": "140215488345952"}, {"nodeId": "140215487335440"}]}, "140215550820416": {"type": "Function", "typeVars": [".-1.140215550820416"], "argTypes": [{"nodeId": ".-1.140215550820416"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".-1.140215550820416"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215550820416": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550820416", "variance": "INVARIANT"}, "140215550820864": {"type": "Function", "typeVars": [".-1.140215550820864"], "argTypes": [{"nodeId": ".-1.140215550820864"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".-1.140215550820864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215550820864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550820864", "variance": "INVARIANT"}, "140215550821312": {"type": "Function", "typeVars": [".-1.140215550821312"], "argTypes": [{"nodeId": ".-1.140215550821312"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215550821312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550821312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550821312", "variance": "INVARIANT"}, "140215550821760": {"type": "Function", "typeVars": [".-1.140215550821760"], "argTypes": [{"nodeId": ".-1.140215550821760"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215550821760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550821760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550821760", "variance": "INVARIANT"}, "140215550822208": {"type": "Function", "typeVars": [".-1.140215550822208"], "argTypes": [{"nodeId": ".-1.140215550822208"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550822208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550822208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550822208", "variance": "INVARIANT"}, "140215550822656": {"type": "Function", "typeVars": [".-1.140215550822656"], "argTypes": [{"nodeId": ".-1.140215550822656"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550822656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550822656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550822656", "variance": "INVARIANT"}, "140215550823104": {"type": "Function", "typeVars": [".-1.140215550823104"], "argTypes": [{"nodeId": ".-1.140215550823104"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215550823104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550823104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550823104", "variance": "INVARIANT"}, "140215550823552": {"type": "Function", "typeVars": [".-1.140215550823552"], "argTypes": [{"nodeId": ".-1.140215550823552"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215550823552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215550823552": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550823552", "variance": "INVARIANT"}, "140215550824448": {"type": "Function", "typeVars": [".-1.140215550824448"], "argTypes": [{"nodeId": ".-1.140215550824448"}], "returnType": {"nodeId": ".-1.140215550824448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550824448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550824448", "variance": "INVARIANT"}, "140215550824896": {"type": "Function", "typeVars": [".-1.140215550824896"], "argTypes": [{"nodeId": ".-1.140215550824896"}], "returnType": {"nodeId": ".-1.140215550824896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550824896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550824896", "variance": "INVARIANT"}, "140215550825344": {"type": "Function", "typeVars": [".-1.140215550825344"], "argTypes": [{"nodeId": ".-1.140215550825344"}, {"nodeId": "140215487333088"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215550825344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140215550825344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550825344", "variance": "INVARIANT"}, "140215550825792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458794288"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140215458794288": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550826240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458794400"}, {"nodeId": "140215458794512"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140215458794400": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458794512": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550827136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458794624"}, {"nodeId": "140215458794736"}, {"nodeId": "140215458794848"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "140215458794624": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}]}, "140215458794736": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458794848": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215550827584": {"type": "Function", "typeVars": [".-1.140215550827584"], "argTypes": [{"nodeId": ".-1.140215550827584"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550827584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, ".-1.140215550827584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550827584", "variance": "INVARIANT"}, "140215550828032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458794960"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140215458794960": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550828480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140215550828928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140215550829376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140215550829824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550830272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550830720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550831168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550831616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550832064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550832512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550832960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550833408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550833856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550834304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550834752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550835200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140215550835648": {"type": "Function", "typeVars": [".-1.140215550835648"], "argTypes": [{"nodeId": ".-1.140215550835648"}, {"nodeId": "140215487333088"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215550835648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140215550835648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550835648", "variance": "INVARIANT"}, "140215550836096": {"type": "Function", "typeVars": [".-1.140215550836096"], "argTypes": [{"nodeId": ".-1.140215550836096"}], "returnType": {"nodeId": ".-1.140215550836096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550836096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550836096", "variance": "INVARIANT"}, "140215550935104": {"type": "Function", "typeVars": [".-1.140215550935104"], "argTypes": [{"nodeId": ".-1.140215550935104"}, {"nodeId": "140215458795520"}], "returnType": {"nodeId": ".-1.140215550935104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140215550935104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550935104", "variance": "INVARIANT"}, "140215458795520": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458792720": {"type": "Overloaded", "items": [{"nodeId": "140215550935552"}, {"nodeId": "140215550936000"}]}, "140215550935552": {"type": "Function", "typeVars": [".-1.140215550935552"], "argTypes": [{"nodeId": "140215458795856"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": ".-1.140215550935552"}]}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140215458795856": {"type": "Union", "items": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": ".-1.140215550935552"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".-1.140215550935552"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215458795744"}, {"nodeId": ".-1.140215550935552"}]}]}, ".-1.140215550935552": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550935552", "variance": "INVARIANT"}, "140215458795744": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215550936000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": "140215458795968"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["x", "y", "z"]}, "140215458795968": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215550936448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458796192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140215458796192": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215550936896": {"type": "Function", "typeVars": [".-1.140215550936896"], "argTypes": [{"nodeId": ".-1.140215550936896"}, {"nodeId": "140215458796304"}], "returnType": {"nodeId": ".-1.140215550936896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215550936896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550936896", "variance": "INVARIANT"}, "140215458796304": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550937344": {"type": "Function", "typeVars": [".-1.140215550937344"], "argTypes": [{"nodeId": ".-1.140215550937344"}, {"nodeId": "140215458796416"}], "returnType": {"nodeId": ".-1.140215550937344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215550937344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550937344", "variance": "INVARIANT"}, "140215458796416": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550937792": {"type": "Function", "typeVars": [".-1.140215550937792"], "argTypes": [{"nodeId": ".-1.140215550937792"}, {"nodeId": "140215458796528"}, {"nodeId": "140215458796640"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550937792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}, ".-1.140215550937792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550937792", "variance": "INVARIANT"}, "140215458796528": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215458796640": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550938240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458796752"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140215458796752": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550938688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458796864"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140215458796864": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488342928"}]}, "140215550939136": {"type": "Function", "typeVars": [".-1.140215550939136"], "argTypes": [{"nodeId": ".-1.140215550939136"}, {"nodeId": "140215487333088"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215550939136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140215550939136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550939136", "variance": "INVARIANT"}, "140215550939584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458797200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140215458797200": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215550940032": {"type": "Function", "typeVars": [".-1.140215550940032"], "argTypes": [{"nodeId": ".-1.140215550940032"}, {"nodeId": "140215458797312"}], "returnType": {"nodeId": ".-1.140215550940032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140215550940032": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550940032", "variance": "INVARIANT"}, "140215458797312": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550940480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458797424"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215458797424": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550940928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458797536"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140215458797536": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550941376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140215550941824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488342928"}, {"nodeId": "140215458797648"}, {"nodeId": "140215458797760"}, {"nodeId": "140215458797872"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "140215458797648": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}]}, "140215458797760": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458797872": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215550942272": {"type": "Function", "typeVars": [".-1.140215550942272"], "argTypes": [{"nodeId": ".-1.140215550942272"}, {"nodeId": "140215458797984"}], "returnType": {"nodeId": ".-1.140215550942272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140215550942272": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550942272", "variance": "INVARIANT"}, "140215458797984": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550942720": {"type": "Function", "typeVars": [".-1.140215550942720"], "argTypes": [{"nodeId": ".-1.140215550942720"}], "returnType": {"nodeId": ".-1.140215550942720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550942720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550942720", "variance": "INVARIANT"}, "140215550943168": {"type": "Function", "typeVars": [".-1.140215550943168"], "argTypes": [{"nodeId": ".-1.140215550943168"}], "returnType": {"nodeId": ".-1.140215550943168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550943168": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550943168", "variance": "INVARIANT"}, "140215550943616": {"type": "Function", "typeVars": [".-1.140215550943616"], "argTypes": [{"nodeId": ".-1.140215550943616"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215550943616"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, ".-1.140215550943616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550943616", "variance": "INVARIANT"}, "140215550944064": {"type": "Function", "typeVars": [".-1.140215550944064"], "argTypes": [{"nodeId": ".-1.140215550944064"}], "returnType": {"nodeId": ".-1.140215550944064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550944064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550944064", "variance": "INVARIANT"}, "140215550944512": {"type": "Function", "typeVars": [".-1.140215550944512"], "argTypes": [{"nodeId": ".-1.140215550944512"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215550944512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}, ".-1.140215550944512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550944512", "variance": "INVARIANT"}, "140215488343264": {"type": "Concrete", "module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215416594592"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458792944"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550946304"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550946752"}, "name": "appendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550947200"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550947648"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550948096"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550948544"}, "name": "extendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550948992"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550949440"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550949888"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550950336"}, "name": "popleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215550950784"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551066176"}, "name": "rotate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551066624"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551067072"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551067520"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551067968"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551068416"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551068864"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551069312"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551069760"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551070208"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551070656"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551071104"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551071552"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551072000"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551072448"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551072896"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551073344"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215488343264"}], "bases": [{"nodeId": "140215567758528", "args": [{"nodeId": ".1.140215488343264"}]}], "isAbstract": false}, "140215416594592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215458798208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488343264": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488343264", "variance": "INVARIANT"}, "140215458798208": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458792944": {"type": "Overloaded", "items": [{"nodeId": "140215550945408"}, {"nodeId": "140215550945856"}]}, "140215550945408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215458798432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}, "140215458798432": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215550945856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215458798544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}, "140215458798544": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215550946304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215550946752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215550947200": {"type": "Function", "typeVars": [".-1.140215550947200"], "argTypes": [{"nodeId": ".-1.140215550947200"}], "returnType": {"nodeId": ".-1.140215550947200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215550947200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215550947200", "variance": "INVARIANT"}, "140215550947648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215550948096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215550948544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215550948992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215487333088"}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215550949440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": ".1.140215488343264"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215550949888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": ".1.140215488343264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550950336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": ".1.140215488343264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215550950784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215551066176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215551066624": {"type": "Function", "typeVars": [".-1.140215551066624"], "argTypes": [{"nodeId": ".-1.140215551066624"}], "returnType": {"nodeId": ".-1.140215551066624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215551066624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551066624", "variance": "INVARIANT"}, "140215551067072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215551067520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": ".1.140215488343264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551067968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488345952"}, {"nodeId": ".1.140215488343264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215551068416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551068864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551069312": {"type": "Function", "typeVars": [".-1.140215551069312"], "argTypes": [{"nodeId": ".-1.140215551069312"}], "returnType": {"nodeId": "140215458798992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215551069312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551069312", "variance": "INVARIANT"}, "140215458798992": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140215458798768"}, {"nodeId": "N"}, {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488343264"}]}]}, "140215458798768": {"type": "Tuple", "items": []}, "140215551069760": {"type": "Function", "typeVars": [".-1.140215551069760"], "argTypes": [{"nodeId": ".-1.140215551069760"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": ".-1.140215551069760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551069760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551069760", "variance": "INVARIANT"}, "140215551070208": {"type": "Function", "typeVars": [".-1.140215551070208"], "argTypes": [{"nodeId": ".-1.140215551070208"}, {"nodeId": ".-1.140215551070208"}], "returnType": {"nodeId": ".-1.140215551070208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551070208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551070208", "variance": "INVARIANT"}, "140215551070656": {"type": "Function", "typeVars": [".-1.140215551070656"], "argTypes": [{"nodeId": ".-1.140215551070656"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215551070656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551070656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551070656", "variance": "INVARIANT"}, "140215551071104": {"type": "Function", "typeVars": [".-1.140215551071104"], "argTypes": [{"nodeId": ".-1.140215551071104"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215551071104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551071104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551071104", "variance": "INVARIANT"}, "140215551071552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551072000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551072448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551072896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}, {"nodeId": "140215488343264", "args": [{"nodeId": ".1.140215488343264"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551073344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215488150688": {"type": "Concrete", "module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458795632"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551075584"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551076032"}, "name": "elements"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551076480"}, "name": "most_common"}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215416741824"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458798320"}, "items": [{"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subtract"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458799216"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551080064"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551080512"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551080960"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551081408"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551081856"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551213632"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551214080"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551214528"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551214976"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551215424"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551215872"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551216320"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551216768"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551217216"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551217664"}, "name": "total"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551218112"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551218560"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551219008"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551219456"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140215488150688"}], "bases": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215488150688"}, {"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215458795632": {"type": "Overloaded", "items": [{"nodeId": "140215551073792"}, {"nodeId": "140215551074240"}, {"nodeId": "140215551074688"}, {"nodeId": "140215551075136"}]}, "140215551073792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140215488150688": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488150688", "variance": "INVARIANT"}, "140215551074240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215551074688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215488150688"}, {"nodeId": "140215487333088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215551075136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215551075584": {"type": "Function", "typeVars": [".-1.140215551075584"], "argTypes": [{"nodeId": ".-1.140215551075584"}], "returnType": {"nodeId": ".-1.140215551075584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215551075584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551075584", "variance": "INVARIANT"}, "140215551076032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488150688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215551076480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215458799328"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215458799552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140215458799328": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458799552": {"type": "Tuple", "items": [{"nodeId": ".1.140215488150688"}, {"nodeId": "140215487333088"}]}, "140215416741824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140215458799776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}, "140215458799776": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458798320": {"type": "Overloaded", "items": [{"nodeId": "140215551077376"}, {"nodeId": "140215551077824"}, {"nodeId": "140215551078272"}]}, "140215551077376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215551077824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215488150688"}, {"nodeId": "140215487333088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215551078272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458799216": {"type": "Overloaded", "items": [{"nodeId": "140215551078720"}, {"nodeId": "140215551079168"}, {"nodeId": "140215551079616"}]}, "140215551078720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215488150688"}, {"nodeId": "140215487333088"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215551079168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215551079616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "N"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215551080064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": ".1.140215488150688"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140215551080512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551080960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551081408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551081856": {"type": "Function", "typeVars": [".-1.140215551081856"], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": ".-1.140215551081856"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": "140215458800112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551081856": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551081856", "variance": "INVARIANT"}, "140215458800112": {"type": "Union", "items": [{"nodeId": ".1.140215488150688"}, {"nodeId": ".-1.140215551081856"}]}, "140215551213632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551214080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551214528": {"type": "Function", "typeVars": [".-1.140215551214528"], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": ".-1.140215551214528"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": "140215458800224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551214528": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551214528", "variance": "INVARIANT"}, "140215458800224": {"type": "Union", "items": [{"nodeId": ".1.140215488150688"}, {"nodeId": ".-1.140215551214528"}]}, "140215551214976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215551215424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215551215872": {"type": "Function", "typeVars": [".-1.140215551215872"], "argTypes": [{"nodeId": ".-1.140215551215872"}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": ".-1.140215551215872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551215872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551215872", "variance": "INVARIANT"}, "140215551216320": {"type": "Function", "typeVars": [".-1.140215551216320"], "argTypes": [{"nodeId": ".-1.140215551216320"}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": ".-1.140215551216320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551216320": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551216320", "variance": "INVARIANT"}, "140215551216768": {"type": "Function", "typeVars": [".-1.140215551216768"], "argTypes": [{"nodeId": ".-1.140215551216768"}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": ".-1.140215551216768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551216768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551216768", "variance": "INVARIANT"}, "140215551217216": {"type": "Function", "typeVars": [".-1.140215551217216"], "argTypes": [{"nodeId": ".-1.140215551217216"}, {"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": ".-1.140215551217216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215551217216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551217216", "variance": "INVARIANT"}, "140215551217664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215551218112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551218560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551219008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215551219456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488150688", "args": [{"nodeId": ".1.140215488150688"}]}, {"nodeId": "140215488150688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215475454016": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551219904"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215475454016"}], "bases": [{"nodeId": "140215488335536", "args": [{"nodeId": ".1.140215475454016"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215475454016"}]}], "isAbstract": false}, "140215551219904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475454016", "args": [{"nodeId": ".1.140215475454016"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215475454016"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215475454016": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475454016", "variance": "COVARIANT"}, "140215475454352": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551220352"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215475454352"}, {"nodeId": ".2.140215475454352"}], "bases": [{"nodeId": "140215488335200", "args": [{"nodeId": ".1.140215475454352"}, {"nodeId": ".2.140215475454352"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": "140215484118768"}]}], "isAbstract": false}, "140215551220352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475454352", "args": [{"nodeId": ".1.140215475454352"}, {"nodeId": ".2.140215475454352"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215458800896"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215475454352": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475454352", "variance": "COVARIANT"}, ".2.140215475454352": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475454352", "variance": "COVARIANT"}, "140215458800896": {"type": "Tuple", "items": [{"nodeId": ".1.140215475454352"}, {"nodeId": ".2.140215475454352"}]}, "140215484118768": {"type": "Tuple", "items": [{"nodeId": ".1.140215475454352"}, {"nodeId": ".2.140215475454352"}]}, "140215475454688": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551220800"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215475454688"}], "bases": [{"nodeId": "140215488335872", "args": [{"nodeId": ".1.140215475454688"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215475454688"}]}], "isAbstract": false}, "140215551220800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475454688", "args": [{"nodeId": ".1.140215475454688"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215475454688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215475454688": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475454688", "variance": "COVARIANT"}, "140215488343600": {"type": "Concrete", "module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551221248"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215488343600"}, {"nodeId": ".2.140215488343600"}], "bases": [{"nodeId": "140215488338224", "args": [{"nodeId": ".1.140215488343600"}, {"nodeId": ".2.140215488343600"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215488343600"}]}], "isAbstract": false}, "140215551221248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343600", "args": [{"nodeId": ".1.140215488343600"}, {"nodeId": ".2.140215488343600"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488343600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215488343600": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488343600", "variance": "COVARIANT"}, ".2.140215488343600": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488343600", "variance": "COVARIANT"}, "140215488343936": {"type": "Concrete", "module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551221696"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215488343936"}, {"nodeId": ".2.140215488343936"}], "bases": [{"nodeId": "140215488338896", "args": [{"nodeId": ".1.140215488343936"}, {"nodeId": ".2.140215488343936"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": "140215484118096"}]}], "isAbstract": false}, "140215551221696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488343936", "args": [{"nodeId": ".1.140215488343936"}, {"nodeId": ".2.140215488343936"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215458801120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215488343936": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488343936", "variance": "COVARIANT"}, ".2.140215488343936": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488343936", "variance": "COVARIANT"}, "140215458801120": {"type": "Tuple", "items": [{"nodeId": ".1.140215488343936"}, {"nodeId": ".2.140215488343936"}]}, "140215484118096": {"type": "Tuple", "items": [{"nodeId": ".1.140215488343936"}, {"nodeId": ".2.140215488343936"}]}, "140215488344272": {"type": "Concrete", "module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551222144"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140215488344272"}, {"nodeId": ".2.140215488344272"}], "bases": [{"nodeId": "140215488338560", "args": [{"nodeId": ".1.140215488344272"}, {"nodeId": ".2.140215488344272"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".2.140215488344272"}]}], "isAbstract": false}, "140215551222144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344272", "args": [{"nodeId": ".1.140215488344272"}, {"nodeId": ".2.140215488344272"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".2.140215488344272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215488344272": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344272", "variance": "COVARIANT"}, ".2.140215488344272": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344272", "variance": "COVARIANT"}, "140215488344608": {"type": "Concrete", "module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551222592"}, "name": "popitem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551223040"}, "name": "move_to_end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551223488"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551223936"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551224384"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551224832"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215551225280"}, "name": "values"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458799888"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458800000"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}], "typeVars": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}], "bases": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215488344608"}]}], "isAbstract": false}, "140215551222592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215458801344"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}, ".1.140215488344608": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344608", "variance": "INVARIANT"}, ".2.140215488344608": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344608", "variance": "INVARIANT"}, "140215458801344": {"type": "Tuple", "items": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, "140215551223040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, {"nodeId": ".1.140215488344608"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}, "140215551223488": {"type": "Function", "typeVars": [".-1.140215551223488"], "argTypes": [{"nodeId": ".-1.140215551223488"}], "returnType": {"nodeId": ".-1.140215551223488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215551223488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551223488", "variance": "INVARIANT"}, "140215551223936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488344608"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215551224384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}], "returnType": {"nodeId": "140215488343600", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215551224832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}], "returnType": {"nodeId": "140215488343936", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215551225280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}], "returnType": {"nodeId": "140215488344272", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458799888": {"type": "Overloaded", "items": [{"nodeId": "140215551225728"}, {"nodeId": "140215551226176"}]}, "140215551225728": {"type": "Function", "typeVars": [".-1.140215551225728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215551225728"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140215488344608", "args": [{"nodeId": ".-1.140215551225728"}, {"nodeId": "140215458801680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140215551225728": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551225728", "variance": "INVARIANT"}, "140215458801680": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215551226176": {"type": "Function", "typeVars": [".-1.140215551226176", ".-2.140215551226176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215551226176"}]}, {"nodeId": ".-2.140215551226176"}], "returnType": {"nodeId": "140215488344608", "args": [{"nodeId": ".-1.140215551226176"}, {"nodeId": ".-2.140215551226176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140215551226176": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551226176", "variance": "INVARIANT"}, ".-2.140215551226176": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551226176", "variance": "INVARIANT"}, "140215458800000": {"type": "Overloaded", "items": [{"nodeId": "140215551226624"}, {"nodeId": "140215551227072"}]}, "140215551226624": {"type": "Function", "typeVars": [".-1.140215551226624"], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": "140215458801904"}]}, {"nodeId": ".1.140215488344608"}], "returnType": {"nodeId": "140215458802016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140215458801904": {"type": "Union", "items": [{"nodeId": ".-1.140215551226624"}, {"nodeId": "N"}]}, ".-1.140215551226624": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215551226624", "variance": "INVARIANT"}, "140215458802016": {"type": "Union", "items": [{"nodeId": ".-1.140215551226624"}, {"nodeId": "N"}]}, "140215551227072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344608", "args": [{"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}]}, {"nodeId": ".1.140215488344608"}, {"nodeId": ".2.140215488344608"}], "returnType": {"nodeId": ".2.140215488344608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}, "140215488151024": {"type": "Concrete", "module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215484114064"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458801456"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546152320"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546152768"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546153216"}, "name": "copy"}], "typeVars": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}], "bases": [{"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}], "isAbstract": false}, "140215484114064": {"type": "Union", "items": [{"nodeId": "140215483461504"}, {"nodeId": "N"}]}, "140215483461504": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, ".2.140215488151024": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488151024", "variance": "INVARIANT"}, "140215458801456": {"type": "Overloaded", "items": [{"nodeId": "140215551227520"}, {"nodeId": "140215551227968"}, {"nodeId": "140215551228416"}, {"nodeId": "140215551228864"}, {"nodeId": "140215551229312"}, {"nodeId": "140215546150976"}, {"nodeId": "140215546151424"}, {"nodeId": "140215546151872"}]}, "140215551227520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488151024": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488151024", "variance": "INVARIANT"}, "140215551227968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": ".2.140215488151024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140215551228416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458802240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458802240": {"type": "Union", "items": [{"nodeId": "140215458646720"}, {"nodeId": "N"}]}, "140215458646720": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215551228864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458802352"}, {"nodeId": ".2.140215488151024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140215458802352": {"type": "Union", "items": [{"nodeId": "140215458646944"}, {"nodeId": "N"}]}, "140215458646944": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215551229312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458802464"}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215458802464": {"type": "Union", "items": [{"nodeId": "140215458647168"}, {"nodeId": "N"}]}, "140215458647168": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215546150976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458802576"}, {"nodeId": "140215475465776", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": ".2.140215488151024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140215458802576": {"type": "Union", "items": [{"nodeId": "140215458647392"}, {"nodeId": "N"}]}, "140215458647392": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215546151424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458802688"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458802912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215458802688": {"type": "Union", "items": [{"nodeId": "140215458647616"}, {"nodeId": "N"}]}, "140215458647616": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215458802912": {"type": "Tuple", "items": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}, "140215546151872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": "140215458803024"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458803248"}]}, {"nodeId": ".2.140215488151024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140215458803024": {"type": "Union", "items": [{"nodeId": "140215458647840"}, {"nodeId": "N"}]}, "140215458647840": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": [], "argNames": []}, "140215458803248": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": ".2.140215488151024"}]}, "140215546152320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488151024", "args": [{"nodeId": ".1.140215488151024"}, {"nodeId": ".2.140215488151024"}]}, {"nodeId": ".1.140215488151024"}], "returnType": {"nodeId": ".2.140215488151024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215546152768": {"type": "Function", "typeVars": [".-1.140215546152768"], "argTypes": [{"nodeId": ".-1.140215546152768"}], "returnType": {"nodeId": ".-1.140215546152768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215546152768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546152768", "variance": "INVARIANT"}, "140215546153216": {"type": "Function", "typeVars": [".-1.140215546153216"], "argTypes": [{"nodeId": ".-1.140215546153216"}], "returnType": {"nodeId": ".-1.140215546153216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215546153216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546153216", "variance": "INVARIANT"}, "140215488344944": {"type": "Concrete", "module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546153664"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546154112"}, "name": "new_child"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215411819904"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546155008"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546155456"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546155904"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546156352"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546156800"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546157248"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546157696"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546158144"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546158592"}, "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458801792"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546159936"}, "name": "copy"}, {"kind": "Variable", "name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215411822368"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458802128"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546161280"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546161728"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458803472"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}], "bases": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "isAbstract": false}, ".1.140215488344944": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344944", "variance": "INVARIANT"}, ".2.140215488344944": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488344944", "variance": "INVARIANT"}, "140215546153664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}, "140215546154112": {"type": "Function", "typeVars": [".-1.140215546154112"], "argTypes": [{"nodeId": ".-1.140215546154112"}, {"nodeId": "140215458803360"}], "returnType": {"nodeId": ".-1.140215546154112"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, ".-1.140215546154112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546154112", "variance": "INVARIANT"}, "140215458803360": {"type": "Union", "items": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": "N"}]}, "140215411819904": {"type": "Function", "typeVars": [".-1.140215411819904"], "argTypes": [{"nodeId": ".-1.140215411819904"}], "returnType": {"nodeId": ".-1.140215411819904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215411819904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215411819904", "variance": "INVARIANT"}, "140215546155008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215546155456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546155904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}], "returnType": {"nodeId": ".2.140215488344944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546156352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488344944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215546156800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215546157248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215546157696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}], "returnType": {"nodeId": ".2.140215488344944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140215546158144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546158592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}], "returnType": {"nodeId": ".2.140215488344944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140215458801792": {"type": "Overloaded", "items": [{"nodeId": "140215546159040"}, {"nodeId": "140215546159488"}]}, "140215546159040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}], "returnType": {"nodeId": ".2.140215488344944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140215546159488": {"type": "Function", "typeVars": [".-1.140215546159488"], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": ".1.140215488344944"}, {"nodeId": "140215458803584"}], "returnType": {"nodeId": "140215458803696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140215458803584": {"type": "Union", "items": [{"nodeId": ".2.140215488344944"}, {"nodeId": ".-1.140215546159488"}]}, ".-1.140215546159488": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546159488", "variance": "INVARIANT"}, "140215458803696": {"type": "Union", "items": [{"nodeId": ".2.140215488344944"}, {"nodeId": ".-1.140215546159488"}]}, "140215546159936": {"type": "Function", "typeVars": [".-1.140215546159936"], "argTypes": [{"nodeId": ".-1.140215546159936"}], "returnType": {"nodeId": ".-1.140215546159936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215546159936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546159936", "variance": "INVARIANT"}, "140215411822368": {"type": "Function", "typeVars": [".-1.140215411822368"], "argTypes": [{"nodeId": ".-1.140215411822368"}], "returnType": {"nodeId": ".-1.140215411822368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215411822368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215411822368", "variance": "INVARIANT"}, "140215458802128": {"type": "Overloaded", "items": [{"nodeId": "140215546160384"}, {"nodeId": "140215546160832"}]}, "140215546160384": {"type": "Function", "typeVars": [".-1.140215546160384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215546160384"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140215488344944", "args": [{"nodeId": ".-1.140215546160384"}, {"nodeId": "140215458804032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}, ".-1.140215546160384": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546160384", "variance": "INVARIANT"}, "140215458804032": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215546160832": {"type": "Function", "typeVars": [".-1.140215546160832", ".-2.140215546160832"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215546160832"}]}, {"nodeId": ".-2.140215546160832"}], "returnType": {"nodeId": "140215488344944", "args": [{"nodeId": ".-1.140215546160832"}, {"nodeId": ".-2.140215546160832"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140215546160832": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546160832", "variance": "INVARIANT"}, ".-2.140215546160832": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546160832", "variance": "INVARIANT"}, "140215546161280": {"type": "Function", "typeVars": [".-1.140215546161280", ".-2.140215546161280"], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215546161280"}, {"nodeId": ".-2.140215546161280"}]}], "returnType": {"nodeId": "140215488344944", "args": [{"nodeId": "140215458804144"}, {"nodeId": "140215458804256"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215546161280": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546161280", "variance": "INVARIANT"}, ".-2.140215546161280": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546161280", "variance": "INVARIANT"}, "140215458804144": {"type": "Union", "items": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".-1.140215546161280"}]}, "140215458804256": {"type": "Union", "items": [{"nodeId": ".2.140215488344944"}, {"nodeId": ".-2.140215546161280"}]}, "140215546161728": {"type": "Function", "typeVars": [".-1.140215546161728", ".-2.140215546161728"], "argTypes": [{"nodeId": "140215488344944", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215546161728"}, {"nodeId": ".-2.140215546161728"}]}], "returnType": {"nodeId": "140215488344944", "args": [{"nodeId": "140215458804368"}, {"nodeId": "140215458804480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215546161728": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546161728", "variance": "INVARIANT"}, ".-2.140215546161728": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546161728", "variance": "INVARIANT"}, "140215458804368": {"type": "Union", "items": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".-1.140215546161728"}]}, "140215458804480": {"type": "Union", "items": [{"nodeId": ".2.140215488344944"}, {"nodeId": ".-2.140215546161728"}]}, "140215458803472": {"type": "Overloaded", "items": [{"nodeId": "140215546162176"}, {"nodeId": "140215546162624"}]}, "140215546162176": {"type": "Function", "typeVars": [".-1.140215546162176"], "argTypes": [{"nodeId": ".-1.140215546162176"}, {"nodeId": "140215475465776", "args": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}], "returnType": {"nodeId": ".-1.140215546162176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215546162176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546162176", "variance": "INVARIANT"}, "140215546162624": {"type": "Function", "typeVars": [".-1.140215546162624"], "argTypes": [{"nodeId": ".-1.140215546162624"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458804816"}]}], "returnType": {"nodeId": ".-1.140215546162624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215546162624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215546162624", "variance": "INVARIANT"}, "140215458804816": {"type": "Tuple", "items": [{"nodeId": ".1.140215488344944"}, {"nodeId": ".2.140215488344944"}]}, "140215567751136": {"type": "Concrete", "module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400087840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474798992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487796656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400088288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215400088960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529384288"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215400087840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751136"}], "returnType": {"nodeId": "140215454624880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454624880": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215488347632"}]}, {"nodeId": "N"}]}, "140215488347632": {"type": "Concrete", "module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546278880"}, "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215546278880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488347632"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215487796656": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215400088288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751136"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215400088960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751136"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529384288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751136"}, {"nodeId": "140215454625216"}, {"nodeId": "140215454625328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140215454625216": {"type": "Union", "items": [{"nodeId": "140215567750464"}, {"nodeId": "N"}]}, "140215454625328": {"type": "Union", "items": [{"nodeId": "140215487332416"}, {"nodeId": "N"}]}, "140215567760544": {"type": "Concrete", "module": "builtins", "simpleName": "staticmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399371424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399371200"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555332064"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555332512"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399370528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555333408"}, "name": "__call__"}], "typeVars": [{"nodeId": ".1.140215567760544"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215399371424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}], "returnType": {"nodeId": "140215458651424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567760544": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567760544", "variance": "COVARIANT"}, "140215458651424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760544"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215399371200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215555332064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}, {"nodeId": "140215458650976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458650976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760544"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215555332512": {"type": "Function", "typeVars": [".-1.140215555332512"], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}, {"nodeId": ".-1.140215555332512"}, {"nodeId": "140215454131792"}], "returnType": {"nodeId": "140215458656800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140215555332512": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215555332512", "variance": "INVARIANT"}, "140215454131792": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458656800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760544"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215399370528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}], "returnType": {"nodeId": "140215458656576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458656576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760544"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215555333408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215567760544"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760544"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215567760880": {"type": "Concrete", "module": "builtins", "simpleName": "classmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399370080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399369632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555334752"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555335200"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215399368960"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567760880"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215399370080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215567760880"}]}], "returnType": {"nodeId": "140215458657248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567760880": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567760880", "variance": "COVARIANT"}, "140215458657248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760880"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215399369632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215567760880"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215555334752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215567760880"}]}, {"nodeId": "140215458657024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458657024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760880"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215555335200": {"type": "Function", "typeVars": [".-1.140215555335200"], "argTypes": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215567760880"}]}, {"nodeId": ".-1.140215555335200"}, {"nodeId": "140215454132576"}], "returnType": {"nodeId": "140215458657696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140215555335200": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215555335200", "variance": "INVARIANT"}, "140215454132576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458657696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760880"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215399368960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215567760880"}]}], "returnType": {"nodeId": "140215458657472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458657472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215567760880"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215487332752": {"type": "Concrete", "module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454133136"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215454133136": {"type": "Overloaded", "items": [{"nodeId": "140215546613088"}, {"nodeId": "140215546613536"}, {"nodeId": "140215546613984"}]}, "140215546613088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332752"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215546613536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332752"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215546613984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487332752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488340240": {"type": "Concrete", "module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454629136"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529756192"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529756640"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529757088"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529757536"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529757984"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529758432"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529758880"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529759328"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529759776"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529760224"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529760672"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529761120"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529761568"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529762016"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529762464"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529762912"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529763360"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529763808"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529764256"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529764704"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215488340240"}], "bases": [{"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488340240"}]}], "isAbstract": false}, "140215454629136": {"type": "Overloaded", "items": [{"nodeId": "140215529755296"}, {"nodeId": "140215529755744"}]}, "140215529755296": {"type": "Function", "typeVars": [".-1.140215529755296"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215529755296"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215529755296": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529755296", "variance": "INVARIANT"}, "140215529755744": {"type": "Function", "typeVars": [".-1.140215529755744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": ".-1.140215529755744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".1.140215488340240": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488340240", "variance": "COVARIANT"}, ".-1.140215529755744": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529755744", "variance": "INVARIANT"}, "140215529756192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215529756640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529757088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140215529757536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529757984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529758432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529758880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529759328": {"type": "Function", "typeVars": [".-1.140215529759328"], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215529759328"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": "140215449601296"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140215529759328": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529759328", "variance": "INVARIANT"}, "140215449601296": {"type": "Union", "items": [{"nodeId": ".1.140215488340240"}, {"nodeId": ".-1.140215529759328"}]}, "140215529759776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529760224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529760672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529761120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529761568": {"type": "Function", "typeVars": [".-1.140215529761568"], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215529761568"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": "140215449601408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529761568": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529761568", "variance": "INVARIANT"}, "140215449601408": {"type": "Union", "items": [{"nodeId": ".1.140215488340240"}, {"nodeId": ".-1.140215529761568"}]}, "140215529762016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".1.140215488340240"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529762464": {"type": "Function", "typeVars": [".-1.140215529762464"], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": ".-1.140215529762464"}]}], "returnType": {"nodeId": "140215488340240", "args": [{"nodeId": "140215449601520"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215529762464": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529762464", "variance": "INVARIANT"}, "140215449601520": {"type": "Union", "items": [{"nodeId": ".1.140215488340240"}, {"nodeId": ".-1.140215529762464"}]}, "140215529762912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529763360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529763808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529764256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340240", "args": [{"nodeId": ".1.140215488340240"}]}, {"nodeId": "140215567758864", "args": [{"nodeId": "140215567750464"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529764704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215488340576": {"type": "Concrete", "module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529765152"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529765600"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529766048"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529766496"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215488340576"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": "140215491573264"}]}], "isAbstract": false}, "140215529765152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340576", "args": [{"nodeId": ".1.140215488340576"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488340576"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}, ".1.140215488340576": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488340576", "variance": "INVARIANT"}, "140215529765600": {"type": "Function", "typeVars": [".-1.140215529765600"], "argTypes": [{"nodeId": ".-1.140215529765600"}], "returnType": {"nodeId": ".-1.140215529765600"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215529765600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215529765600", "variance": "INVARIANT"}, "140215529766048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340576", "args": [{"nodeId": ".1.140215488340576"}]}], "returnType": {"nodeId": "140215449601856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215449601856": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": ".1.140215488340576"}]}, "140215529766496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215491573264": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": ".1.140215488340576"}]}, "140215487336784": {"type": "Concrete", "module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215395288224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215395288672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215395288896"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215454629472"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529933280"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529933728"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529934176"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529934624"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529935072"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215449601184"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529936416"}, "name": "__reversed__"}], "typeVars": [], "bases": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215395288224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215395288672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215395288896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215454629472": {"type": "Overloaded", "items": [{"nodeId": "140215529932384"}, {"nodeId": "140215529932832"}]}, "140215529932384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529932832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215529933280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529933728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215529934176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529934624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529935072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215449601184": {"type": "Overloaded", "items": [{"nodeId": "140215529935520"}, {"nodeId": "140215529935968"}]}, "140215529935520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215488345952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529935968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487336784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529936416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487336784"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215487337120": {"type": "Concrete", "module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487796880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475203184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475203856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529936864"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529937312"}, "name": "getter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529937760"}, "name": "setter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529938208"}, "name": "deleter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529938656"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529939104"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529939552"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487796880": {"type": "Union", "items": [{"nodeId": "140215479392448"}, {"nodeId": "N"}]}, "140215479392448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475203184": {"type": "Union", "items": [{"nodeId": "140215479395584"}, {"nodeId": "N"}]}, "140215479395584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215475203856": {"type": "Union", "items": [{"nodeId": "140215483461280"}, {"nodeId": "N"}]}, "140215483461280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529936864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "140215449602304"}, {"nodeId": "140215449602640"}, {"nodeId": "140215449602976"}, {"nodeId": "140215449603200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}, "140215449602304": {"type": "Union", "items": [{"nodeId": "140215454527136"}, {"nodeId": "N"}]}, "140215454527136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215449602640": {"type": "Union", "items": [{"nodeId": "140215454527584"}, {"nodeId": "N"}]}, "140215454527584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215449602976": {"type": "Union", "items": [{"nodeId": "140215454527808"}, {"nodeId": "N"}]}, "140215454527808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215449603200": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215529937312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "140215454527360"}], "returnType": {"nodeId": "140215487337120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454527360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529937760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "140215454526912"}], "returnType": {"nodeId": "140215487337120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454526912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215529938208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "140215454528032"}], "returnType": {"nodeId": "140215487337120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215454528032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215529938656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "A"}, {"nodeId": "140215449603984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215449603984": {"type": "Union", "items": [{"nodeId": "140215487332416"}, {"nodeId": "N"}]}, "140215529939104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215529939552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337120"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215487337456": {"type": "Concrete", "module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466432816": {"type": "Protocol", "module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529943584"}, "name": "__fspath__"}], "typeVars": [{"nodeId": ".1.140215466432816"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__fspath__"]}, "140215529943584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466432816", "args": [{"nodeId": ".1.140215466432816"}]}], "returnType": {"nodeId": ".1.140215466432816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215466432816": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215466432816", "variance": "COVARIANT"}, "140215487337792": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215529944480"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140215487337792"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__anext__"]}, "140215529944480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487337792", "args": [{"nodeId": ".1.140215487337792"}]}], "returnType": {"nodeId": ".1.140215487337792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215487337792": {"type": "TypeVar", "varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140215567755840", "args": [{"nodeId": "A"}]}, "def": "140215487337792", "variance": "COVARIANT"}, "140215567755840": {"type": "Protocol", "module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450479616"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567755840"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__await__"]}, "140215450479616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567755840"}]}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140215567755840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567755840": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567755840", "variance": "COVARIANT"}, "140215488340912": {"type": "Concrete", "module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215449605216"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215530067488"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215530067936"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140215488340912"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488340912"}]}], "isAbstract": false}, "140215449605216": {"type": "Overloaded", "items": [{"nodeId": "140215530066144"}, {"nodeId": "140215530066592"}, {"nodeId": "140215530067040"}]}, "140215530066144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340912", "args": [{"nodeId": ".1.140215488340912"}]}, {"nodeId": "N"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215449607568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140215488340912": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488340912", "variance": "INVARIANT"}, "140215449607568": {"type": "Union", "items": [{"nodeId": ".1.140215488340912"}, {"nodeId": "N"}]}, "140215530066592": {"type": "Function", "typeVars": [".-1.140215530066592"], "argTypes": [{"nodeId": "140215488340912", "args": [{"nodeId": ".1.140215488340912"}]}, {"nodeId": "140215454528928"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530066592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215454528928": {"type": "Function", "typeVars": [".-1.140215454528928"], "argTypes": [{"nodeId": ".-1.140215454528928"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215454528928": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215454528928", "variance": "INVARIANT"}, ".-1.140215530066592": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530066592", "variance": "INVARIANT"}, "140215530067040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340912", "args": [{"nodeId": ".1.140215488340912"}]}, {"nodeId": "140215454528704"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215488340912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215454528704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140215488340912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215530067488": {"type": "Function", "typeVars": [".-1.140215530067488"], "argTypes": [{"nodeId": ".-1.140215530067488"}], "returnType": {"nodeId": ".-1.140215530067488"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215530067488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530067488", "variance": "INVARIANT"}, "140215530067936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488340912", "args": [{"nodeId": ".1.140215488340912"}]}], "returnType": {"nodeId": ".1.140215488340912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487338128": {"type": "Protocol", "module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215530074656"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140215487338128"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__getitem__"]}, "140215530074656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487338128", "args": [{"nodeId": ".1.140215487338128"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215487338128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215487338128": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487338128", "variance": "COVARIANT"}, "140215488341248": {"type": "Concrete", "module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215449607680"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215454530720"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215530213600"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140215488341248"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488341248"}]}], "isAbstract": false}, "140215449607680": {"type": "Overloaded", "items": [{"nodeId": "140215530210464"}, {"nodeId": "140215530210912"}, {"nodeId": "140215530211360"}, {"nodeId": "140215530211808"}, {"nodeId": "140215530212256"}, {"nodeId": "140215530212704"}]}, "140215530210464": {"type": "Function", "typeVars": [".-1.140215530210464"], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215454531168"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530210464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140215488341248": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488341248", "variance": "INVARIANT"}, "140215454531168": {"type": "Function", "typeVars": [".-1.140215454531168"], "argTypes": [{"nodeId": ".-1.140215454531168"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215454531168": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215454531168", "variance": "INVARIANT"}, ".-1.140215530210464": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530210464", "variance": "INVARIANT"}, "140215530210912": {"type": "Function", "typeVars": [".-1.140215530210912", ".-2.140215530210912"], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215449780288"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530210912"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215530210912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140215449780288": {"type": "Function", "typeVars": [".-1.140215449780288", ".-2.140215449780288"], "argTypes": [{"nodeId": ".-1.140215449780288"}, {"nodeId": ".-2.140215449780288"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215449780288": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780288", "variance": "INVARIANT"}, ".-2.140215449780288": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780288", "variance": "INVARIANT"}, ".-1.140215530210912": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530210912", "variance": "INVARIANT"}, ".-2.140215530210912": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530210912", "variance": "INVARIANT"}, "140215530211360": {"type": "Function", "typeVars": [".-1.140215530211360", ".-2.140215530211360", ".-3.140215530211360"], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215449780512"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530211360"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215530211360"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215530211360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140215449780512": {"type": "Function", "typeVars": [".-1.140215449780512", ".-2.140215449780512", ".-3.140215449780512"], "argTypes": [{"nodeId": ".-1.140215449780512"}, {"nodeId": ".-2.140215449780512"}, {"nodeId": ".-3.140215449780512"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".-1.140215449780512": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780512", "variance": "INVARIANT"}, ".-2.140215449780512": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780512", "variance": "INVARIANT"}, ".-3.140215449780512": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780512", "variance": "INVARIANT"}, ".-1.140215530211360": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211360", "variance": "INVARIANT"}, ".-2.140215530211360": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211360", "variance": "INVARIANT"}, ".-3.140215530211360": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211360", "variance": "INVARIANT"}, "140215530211808": {"type": "Function", "typeVars": [".-1.140215530211808", ".-2.140215530211808", ".-3.140215530211808", ".-4.140215530211808"], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215449780736"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530211808"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215530211808"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215530211808"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-4.140215530211808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140215449780736": {"type": "Function", "typeVars": [".-1.140215449780736", ".-2.140215449780736", ".-3.140215449780736", ".-4.140215449780736"], "argTypes": [{"nodeId": ".-1.140215449780736"}, {"nodeId": ".-2.140215449780736"}, {"nodeId": ".-3.140215449780736"}, {"nodeId": ".-4.140215449780736"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, ".-1.140215449780736": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780736", "variance": "INVARIANT"}, ".-2.140215449780736": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780736", "variance": "INVARIANT"}, ".-3.140215449780736": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780736", "variance": "INVARIANT"}, ".-4.140215449780736": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780736", "variance": "INVARIANT"}, ".-1.140215530211808": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211808", "variance": "INVARIANT"}, ".-2.140215530211808": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211808", "variance": "INVARIANT"}, ".-3.140215530211808": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211808", "variance": "INVARIANT"}, ".-4.140215530211808": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530211808", "variance": "INVARIANT"}, "140215530212256": {"type": "Function", "typeVars": [".-1.140215530212256", ".-2.140215530212256", ".-3.140215530212256", ".-4.140215530212256", ".-5.140215530212256"], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215449780960"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215530212256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215530212256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215530212256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-4.140215530212256"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-5.140215530212256"}]}], "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]}, "140215449780960": {"type": "Function", "typeVars": [".-1.140215449780960", ".-2.140215449780960", ".-3.140215449780960", ".-4.140215449780960", ".-5.140215449780960"], "argTypes": [{"nodeId": ".-1.140215449780960"}, {"nodeId": ".-2.140215449780960"}, {"nodeId": ".-3.140215449780960"}, {"nodeId": ".-4.140215449780960"}, {"nodeId": ".-5.140215449780960"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}, ".-1.140215449780960": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780960", "variance": "INVARIANT"}, ".-2.140215449780960": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780960", "variance": "INVARIANT"}, ".-3.140215449780960": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780960", "variance": "INVARIANT"}, ".-4.140215449780960": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780960", "variance": "INVARIANT"}, ".-5.140215449780960": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215449780960", "variance": "INVARIANT"}, ".-1.140215530212256": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530212256", "variance": "INVARIANT"}, ".-2.140215530212256": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530212256", "variance": "INVARIANT"}, ".-3.140215530212256": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530212256", "variance": "INVARIANT"}, ".-4.140215530212256": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530212256", "variance": "INVARIANT"}, ".-5.140215530212256": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215530212256", "variance": "INVARIANT"}, "140215530212704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}, {"nodeId": "140215449781184"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "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"]}, "140215449781184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215454530720": {"type": "Function", "typeVars": [".-1.140215454530720"], "argTypes": [{"nodeId": ".-1.140215454530720"}], "returnType": {"nodeId": ".-1.140215454530720"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215454530720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215454530720", "variance": "INVARIANT"}, "140215530213600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341248", "args": [{"nodeId": ".1.140215488341248"}]}], "returnType": {"nodeId": ".1.140215488341248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466433152": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215530224352"}, "name": "flush"}], "typeVars": [{"nodeId": ".1.140215466433152"}], "bases": [{"nodeId": "140215475468128", "args": [{"nodeId": ".1.140215466433152"}]}], "protocolMembers": ["flush", "write"]}, "140215530224352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466433152", "args": [{"nodeId": ".1.140215466433152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215466433152": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215466433152", "variance": "CONTRAVARIANT"}, "140215487338464": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525196064"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140215487338464"}, {"nodeId": ".2.140215487338464"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__pow__"]}, "140215525196064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487338464", "args": [{"nodeId": ".1.140215487338464"}, {"nodeId": ".2.140215487338464"}]}, {"nodeId": ".1.140215487338464"}], "returnType": {"nodeId": ".2.140215487338464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215487338464": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487338464", "variance": "CONTRAVARIANT"}, ".2.140215487338464": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487338464", "variance": "COVARIANT"}, "140215487338800": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525196512"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140215487338800"}, {"nodeId": ".2.140215487338800"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__pow__"]}, "140215525196512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487338800", "args": [{"nodeId": ".1.140215487338800"}, {"nodeId": ".2.140215487338800"}]}, {"nodeId": ".1.140215487338800"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140215487338800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".1.140215487338800": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487338800", "variance": "CONTRAVARIANT"}, ".2.140215487338800": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487338800", "variance": "COVARIANT"}, "140215487339136": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525196960"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140215487339136"}, {"nodeId": ".2.140215487339136"}, {"nodeId": ".3.140215487339136"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__pow__"]}, "140215525196960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487339136", "args": [{"nodeId": ".1.140215487339136"}, {"nodeId": ".2.140215487339136"}, {"nodeId": ".3.140215487339136"}]}, {"nodeId": ".1.140215487339136"}, {"nodeId": ".2.140215487339136"}], "returnType": {"nodeId": ".3.140215487339136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140215487339136": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487339136", "variance": "CONTRAVARIANT"}, ".2.140215487339136": {"type": "TypeVar", "varName": "_M", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487339136", "variance": "CONTRAVARIANT"}, ".3.140215487339136": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487339136", "variance": "COVARIANT"}, "140215488341584": {"type": "Concrete", "module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215449865344"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525343520"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525343968"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525344416"}, "name": "__length_hint__"}], "typeVars": [{"nodeId": ".1.140215488341584"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488341584"}]}], "isAbstract": false}, "140215449865344": {"type": "Overloaded", "items": [{"nodeId": "140215525211296"}, {"nodeId": "140215525211744"}]}, "140215525211296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341584", "args": [{"nodeId": ".1.140215488341584"}]}, {"nodeId": "140215567755168", "args": [{"nodeId": ".1.140215488341584"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140215488341584": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488341584", "variance": "INVARIANT"}, "140215525211744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341584", "args": [{"nodeId": ".1.140215488341584"}]}, {"nodeId": "140215475464768", "args": [{"nodeId": ".1.140215488341584"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215475464768": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541998848"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541999296"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140215475464768"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__getitem__", "__len__"]}, "140215541998848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475464768", "args": [{"nodeId": ".1.140215475464768"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215475464768": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475464768", "variance": "COVARIANT"}, "140215541999296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475464768", "args": [{"nodeId": ".1.140215475464768"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215475464768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215525343520": {"type": "Function", "typeVars": [".-1.140215525343520"], "argTypes": [{"nodeId": ".-1.140215525343520"}], "returnType": {"nodeId": ".-1.140215525343520"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215525343520": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525343520", "variance": "INVARIANT"}, "140215525343968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341584", "args": [{"nodeId": ".1.140215488341584"}]}], "returnType": {"nodeId": ".1.140215488341584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215525344416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341584", "args": [{"nodeId": ".1.140215488341584"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487339472": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525345312"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140215487339472"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__round__"]}, "140215525345312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487339472", "args": [{"nodeId": ".1.140215487339472"}]}], "returnType": {"nodeId": ".1.140215487339472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215487339472": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487339472", "variance": "COVARIANT"}, "140215487339808": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525345760"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140215487339808"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__round__"]}, "140215525345760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487339808", "args": [{"nodeId": ".1.140215487339808"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215487339808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140215487339808": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487339808", "variance": "COVARIANT"}, "140215466433488": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475462080", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140215475462416", "args": [{"nodeId": "140215487333088"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}, "140215475462080": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541995264"}, "name": "__add__"}], "typeVars": [{"nodeId": ".1.140215475462080"}, {"nodeId": ".2.140215475462080"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__add__"]}, "140215541995264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475462080", "args": [{"nodeId": ".1.140215475462080"}, {"nodeId": ".2.140215475462080"}]}, {"nodeId": ".1.140215475462080"}], "returnType": {"nodeId": ".2.140215475462080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475462080": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462080", "variance": "CONTRAVARIANT"}, ".2.140215475462080": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462080", "variance": "COVARIANT"}, "140215475462416": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541995712"}, "name": "__radd__"}], "typeVars": [{"nodeId": ".1.140215475462416"}, {"nodeId": ".2.140215475462416"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__radd__"]}, "140215541995712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475462416", "args": [{"nodeId": ".1.140215475462416"}, {"nodeId": ".2.140215475462416"}]}, {"nodeId": ".1.140215475462416"}], "returnType": {"nodeId": ".2.140215475462416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475462416": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462416", "variance": "CONTRAVARIANT"}, ".2.140215475462416": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462416", "variance": "COVARIANT"}, "140215488341920": {"type": "Concrete", "module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215449867472"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525356960"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525357408"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140215488341920"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215488341920"}]}], "isAbstract": false}, "140215449867472": {"type": "Overloaded", "items": [{"nodeId": "140215525351584"}, {"nodeId": "140215525352032"}, {"nodeId": "140215525352480"}, {"nodeId": "140215525352928"}, {"nodeId": "140215525353376"}, {"nodeId": "140215525353824"}]}, "140215525351584": {"type": "Function", "typeVars": [".-1.140215525351584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215525351584"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215449869600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}, ".-1.140215525351584": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525351584", "variance": "INVARIANT"}, "140215449869600": {"type": "Tuple", "items": [{"nodeId": ".-1.140215525351584"}]}, "140215525352032": {"type": "Function", "typeVars": [".-1.140215525352032", ".-2.140215525352032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215525352032"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215525352032"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215449869824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}, ".-1.140215525352032": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352032", "variance": "INVARIANT"}, ".-2.140215525352032": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352032", "variance": "INVARIANT"}, "140215449869824": {"type": "Tuple", "items": [{"nodeId": ".-1.140215525352032"}, {"nodeId": ".-2.140215525352032"}]}, "140215525352480": {"type": "Function", "typeVars": [".-1.140215525352480", ".-2.140215525352480", ".-3.140215525352480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215525352480"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215525352480"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215525352480"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215449870048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}, ".-1.140215525352480": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352480", "variance": "INVARIANT"}, ".-2.140215525352480": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352480", "variance": "INVARIANT"}, ".-3.140215525352480": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352480", "variance": "INVARIANT"}, "140215449870048": {"type": "Tuple", "items": [{"nodeId": ".-1.140215525352480"}, {"nodeId": ".-2.140215525352480"}, {"nodeId": ".-3.140215525352480"}]}, "140215525352928": {"type": "Function", "typeVars": [".-1.140215525352928", ".-2.140215525352928", ".-3.140215525352928", ".-4.140215525352928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215525352928"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215525352928"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215525352928"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-4.140215525352928"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215449870272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}, ".-1.140215525352928": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352928", "variance": "INVARIANT"}, ".-2.140215525352928": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352928", "variance": "INVARIANT"}, ".-3.140215525352928": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352928", "variance": "INVARIANT"}, ".-4.140215525352928": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525352928", "variance": "INVARIANT"}, "140215449870272": {"type": "Tuple", "items": [{"nodeId": ".-1.140215525352928"}, {"nodeId": ".-2.140215525352928"}, {"nodeId": ".-3.140215525352928"}, {"nodeId": ".-4.140215525352928"}]}, "140215525353376": {"type": "Function", "typeVars": [".-1.140215525353376", ".-2.140215525353376", ".-3.140215525353376", ".-4.140215525353376", ".-5.140215525353376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-1.140215525353376"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-2.140215525353376"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-3.140215525353376"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-4.140215525353376"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": ".-5.140215525353376"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215449870496"}]}, "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.140215525353376": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525353376", "variance": "INVARIANT"}, ".-2.140215525353376": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525353376", "variance": "INVARIANT"}, ".-3.140215525353376": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525353376", "variance": "INVARIANT"}, ".-4.140215525353376": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525353376", "variance": "INVARIANT"}, ".-5.140215525353376": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525353376", "variance": "INVARIANT"}, "140215449870496": {"type": "Tuple", "items": [{"nodeId": ".-1.140215525353376"}, {"nodeId": ".-2.140215525353376"}, {"nodeId": ".-3.140215525353376"}, {"nodeId": ".-4.140215525353376"}, {"nodeId": ".-5.140215525353376"}]}, "140215525353824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488341920", "args": [{"nodeId": "140215487335776", "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"]}, "140215525356960": {"type": "Function", "typeVars": [".-1.140215525356960"], "argTypes": [{"nodeId": ".-1.140215525356960"}], "returnType": {"nodeId": ".-1.140215525356960"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215525356960": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215525356960", "variance": "INVARIANT"}, "140215525357408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488341920", "args": [{"nodeId": ".1.140215488341920"}]}], "returnType": {"nodeId": ".1.140215488341920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215488341920": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488341920", "variance": "COVARIANT"}, "140215487340144": {"type": "Concrete", "module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487340816": {"type": "Concrete", "module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487340480"}], "isAbstract": false}, "140215487341152": {"type": "Concrete", "module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487340480"}], "isAbstract": false}, "140215487341488": {"type": "Concrete", "module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475205648"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487340480"}], "isAbstract": false}, "140215475205648": {"type": "TypeAlias", "target": {"nodeId": "140215474816272"}}, "140215474816272": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215487341824": {"type": "Concrete", "module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487340480"}], "isAbstract": false}, "140215487342160": {"type": "Concrete", "module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487342496": {"type": "Concrete", "module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487342832": {"type": "Concrete", "module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487343168": {"type": "Concrete", "module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487343504": {"type": "Concrete", "module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525541024"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750464"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215525541024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487343504"}, {"nodeId": "140215567750464"}, {"nodeId": "140215449872736"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}, "140215449872736": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215487343840": {"type": "Concrete", "module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487344176": {"type": "Concrete", "module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487344512": {"type": "Concrete", "module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525541472"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487800240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487797552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215525541472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487344512"}, {"nodeId": "140215567750464"}, {"nodeId": "140215449872848"}, {"nodeId": "140215449872960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}, "140215449872848": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215449872960": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215487800240": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215487797552": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215487344848": {"type": "Concrete", "module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487345184": {"type": "Concrete", "module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487345520": {"type": "Concrete", "module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487345856": {"type": "Concrete", "module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487346192": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487346528": {"type": "Concrete", "module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487346864": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487800464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487798672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475203968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475205872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475204304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487791616"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487800464": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215487798672": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215475203968": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475205872": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475204304": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215487791616": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215487347200": {"type": "Concrete", "module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487347536": {"type": "Concrete", "module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487347872": {"type": "Concrete", "module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215487348208": {"type": "Concrete", "module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342832"}], "isAbstract": false}, "140215488135232": {"type": "Concrete", "module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342832"}], "isAbstract": false}, "140215488135568": {"type": "Concrete", "module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342832"}], "isAbstract": false}, "140215488135904": {"type": "Concrete", "module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487344512"}], "isAbstract": false}, "140215488136240": {"type": "Concrete", "module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487344848"}], "isAbstract": false}, "140215488136576": {"type": "Concrete", "module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487344848"}], "isAbstract": false}, "140215488136912": {"type": "Concrete", "module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487345520"}], "isAbstract": false}, "140215488137248": {"type": "Concrete", "module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488137584": {"type": "Concrete", "module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488137920": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488138256": {"type": "Concrete", "module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488137920"}], "isAbstract": false}, "140215488138592": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488137920"}], "isAbstract": false}, "140215488138928": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488137920"}], "isAbstract": false}, "140215488139264": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488137920"}], "isAbstract": false}, "140215488139600": {"type": "Concrete", "module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488139936": {"type": "Concrete", "module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488140272": {"type": "Concrete", "module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488140608": {"type": "Concrete", "module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488140944": {"type": "Concrete", "module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488141280": {"type": "Concrete", "module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488141616": {"type": "Concrete", "module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488141952": {"type": "Concrete", "module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}], "isAbstract": false}, "140215488142288": {"type": "Concrete", "module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487346192"}], "isAbstract": false}, "140215488142624": {"type": "Concrete", "module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487346192"}], "isAbstract": false}, "140215488142960": {"type": "Concrete", "module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487346864"}], "isAbstract": false}, "140215488143296": {"type": "Concrete", "module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488142960"}], "isAbstract": false}, "140215488143632": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487347872"}], "isAbstract": false}, "140215488143968": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488339232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525541920"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215488143632"}], "isAbstract": false}, "140215525541920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488143968"}, {"nodeId": "140215487334768"}, {"nodeId": "140215449873072"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140215449873072": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215488144304": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525542368"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215488143632"}], "isAbstract": false}, "140215525542368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488144304"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140215488144640": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215525542816"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215488143632"}], "isAbstract": false}, "140215525542816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488144640"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140215488144976": {"type": "Concrete", "module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215488145312": {"type": "Concrete", "module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488145648": {"type": "Concrete", "module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488145984": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488146320": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488146656": {"type": "Concrete", "module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488146992": {"type": "Concrete", "module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488147328": {"type": "Concrete", "module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488147664": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488148000": {"type": "Concrete", "module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488148336": {"type": "Concrete", "module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215488148672": {"type": "Concrete", "module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488144976"}], "isAbstract": false}, "140215483166256": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425257248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425257696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425258368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425257920"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": true}, "140215425257248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166256"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488336208", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140215425257696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166256"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140215425258368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166256"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215425257920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166256"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483166592": {"type": "Protocol", "module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425259264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425259712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425259936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425260608"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458114784"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215425260160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425260832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425261056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425261280"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}, "140215425259264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215425259712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215425259936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215483166592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215425260608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215483166592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}, "140215458114784": {"type": "Overloaded", "items": [{"nodeId": "140215550455456"}, {"nodeId": "140215550455904"}, {"nodeId": "140215550456352"}, {"nodeId": "140215550456800"}, {"nodeId": "140215550457248"}, {"nodeId": "140215550457696"}, {"nodeId": "140215550458144"}]}, "140215550455456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458117360"}, {"nodeId": "140215487333088"}, {"nodeId": "140215458117472"}, {"nodeId": "140215458117584"}, {"nodeId": "140215458117696"}], "returnType": {"nodeId": "140215483158528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458117360": {"type": "TypeAlias", "target": {"nodeId": "140215483599552"}}, "140215458117472": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458117584": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458117696": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215550455904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458117808"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483156176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458117808": {"type": "TypeAlias", "target": {"nodeId": "140215492111136"}}, "140215550456352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458118032"}, {"nodeId": "140215458118256"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483157520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458118032": {"type": "TypeAlias", "target": {"nodeId": "140215492112368"}}, "140215458118256": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215550456800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458118704"}, {"nodeId": "140215458119488"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483157184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458118704": {"type": "TypeAlias", "target": {"nodeId": "140215492111808"}}, "140215458119488": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215550457248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458119264"}, {"nodeId": "140215458118144"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215483156848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458119264": {"type": "TypeAlias", "target": {"nodeId": "140215492116176"}}, "140215458118144": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140215550457696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458118368"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140215488336544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458118368": {"type": "TypeAlias", "target": {"nodeId": "140215492111136"}}, "140215550458144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215458118592"}, {"nodeId": "140215458283584"}, {"nodeId": "140215458283696"}], "returnType": {"nodeId": "140215488336208", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140215458118592": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458283584": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458283696": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215425260160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215425260832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215483166592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215425261056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215425261280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166592"}, {"nodeId": "140215458283920"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140215458283920": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215483166928": {"type": "Concrete", "module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215425262400"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554704544"}, "name": "open_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554704992"}, "name": "resource_path"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554705440"}, "name": "is_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554705888"}, "name": "contents"}], "typeVars": [], "bases": [{"nodeId": "140215483166256"}], "isAbstract": true}, "140215425262400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166928"}], "returnType": {"nodeId": "140215483166592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215554704544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166928"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215483156848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140215554704992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166928"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140215554705440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166928"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140215554705888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483166928"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483159872": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424694784"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215488135904"}], "isAbstract": false}, "140215424694784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159872"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483160544": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554709024"}, "name": "load"}, {"kind": "Variable", "name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424686944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424686272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424686720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479596784"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215554710816"}, "name": "matches"}], "typeVars": [], "bases": [{"nodeId": "140215483160208"}], "isAbstract": false}, "140215474811424": {"type": "Concrete", "module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437034880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437035328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437036448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215442139712"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462553840"}, "items": [{"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "search"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462555072"}, "items": [{"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "match"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462555856"}, "items": [{"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fullmatch"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462556304"}, "items": [{"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "split"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462556752"}, "items": [{"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "findall"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462557200"}, "items": [{"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "finditer"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462557872"}, "items": [{"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sub"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462558320"}, "items": [{"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512837568"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512838016"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512838464"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474811424"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215437034880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474811424": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474811424", "variance": "INVARIANT"}, "140215437035328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}], "returnType": {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215437036448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215442139712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}], "returnType": {"nodeId": ".1.140215474811424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462553840": {"type": "Overloaded", "items": [{"nodeId": "140215512830400"}, {"nodeId": "140215487720000"}]}, "140215512830400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462555968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462555968": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215474811088": {"type": "Concrete", "module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437091424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437089408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437088512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437087840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437087168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437086496"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462480800"}, "items": [{"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "expand"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462551264"}, "items": [{"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "group"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462552048"}, "items": [{"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groups"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462552272"}, "items": [{"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groupdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500044800"}, "name": "start"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500045248"}, "name": "end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500045696"}, "name": "span"}, {"kind": "Variable", "name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215437085824"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462553392"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512827264"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512827712"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512828160"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474811088"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215437091424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474811088": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474811088", "variance": "INVARIANT"}, "140215437089408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215437088512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215462551824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462551824": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215437087840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215462551936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462551936": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215437087168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": ".1.140215474811088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215437086496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462480800": {"type": "Overloaded", "items": [{"nodeId": "140215500040768"}, {"nodeId": "140215487723808"}]}, "140215500040768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140215487723808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462552160"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140215462552160": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462551264": {"type": "Overloaded", "items": [{"nodeId": "140215500041664"}, {"nodeId": "140215500042112"}, {"nodeId": "140215500042560"}]}, "140215500041664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140215474811088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215500042112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462552496"}], "returnType": {"nodeId": "140215462552720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215462552496": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215462552720": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": "A"}]}, "140215500042560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462552832"}, {"nodeId": "140215462552944"}, {"nodeId": "140215462553056"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215462553280"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}, "140215462552832": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215462552944": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215462553056": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215462553280": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": "A"}]}, "140215462552048": {"type": "Overloaded", "items": [{"nodeId": "140215500043008"}, {"nodeId": "140215500043456"}]}, "140215500043008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215462553616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462553616": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": "A"}]}, "140215500043456": {"type": "Function", "typeVars": [".-1.140215500043456"], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": ".-1.140215500043456"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215462553728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140215500043456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500043456", "variance": "INVARIANT"}, "140215462553728": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": ".-1.140215500043456"}]}, "140215462552272": {"type": "Overloaded", "items": [{"nodeId": "140215500043904"}, {"nodeId": "140215500044352"}]}, "140215500043904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215462554064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462554064": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": "A"}]}, "140215500044352": {"type": "Function", "typeVars": [".-1.140215500044352"], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": ".-1.140215500044352"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215462554176"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140215500044352": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500044352", "variance": "INVARIANT"}, "140215462554176": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": ".-1.140215500044352"}]}, "140215500044800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462554288"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215462554288": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215500045248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462554400"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215462554400": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215500045696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462554512"}], "returnType": {"nodeId": "140215462554736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215462554512": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215462554736": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215437085824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "140215462554960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462554960": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215462553392": {"type": "Overloaded", "items": [{"nodeId": "140215512826368"}, {"nodeId": "140215512826816"}]}, "140215512826368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140215474811088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215512826816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "140215462555296"}], "returnType": {"nodeId": "140215462555520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215462555296": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215462555520": {"type": "Union", "items": [{"nodeId": ".1.140215474811088"}, {"nodeId": "A"}]}, "140215512827264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}], "returnType": {"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215512827712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474811088", "args": [{"nodeId": ".1.140215474811088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215512828160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215487720000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462556080"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462556192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462556080": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462556192": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "N"}]}, "140215462555072": {"type": "Overloaded", "items": [{"nodeId": "140215512831296"}, {"nodeId": "140215487717760"}]}, "140215512831296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462556416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462556416": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215487717760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462556528"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462556640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462556528": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462556640": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "N"}]}, "140215462555856": {"type": "Overloaded", "items": [{"nodeId": "140215512832192"}, {"nodeId": "140215487717312"}]}, "140215512832192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462556864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462556864": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215487717312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462556976"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462557088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462556976": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462557088": {"type": "Union", "items": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "N"}]}, "140215462556304": {"type": "Overloaded", "items": [{"nodeId": "140215512833088"}, {"nodeId": "140215487713952"}]}, "140215512833088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215462557424"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140215462557424": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "140215487713952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462557536"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215462557760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140215462557536": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462557760": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "A"}]}, "140215462556752": {"type": "Overloaded", "items": [{"nodeId": "140215512833984"}, {"nodeId": "140215487720448"}]}, "140215512833984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215487720448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462558096"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462558096": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462557200": {"type": "Overloaded", "items": [{"nodeId": "140215512834880"}, {"nodeId": "140215487717088"}]}, "140215512834880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215487717088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462558432"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140215462558432": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462557872": {"type": "Overloaded", "items": [{"nodeId": "140215512835776"}, {"nodeId": "140215487716640"}]}, "140215512835776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462558656"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140215462558656": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487721120"}]}, "140215487721120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215487716640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462558880"}, {"nodeId": "140215462559104"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140215462558880": {"type": "Union", "items": [{"nodeId": "140215462558768"}, {"nodeId": "140215487715072"}]}, "140215462558768": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215487715072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}], "returnType": {"nodeId": "140215462558992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215462558992": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462559104": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462558320": {"type": "Overloaded", "items": [{"nodeId": "140215512836672"}, {"nodeId": "140215487721792"}]}, "140215512836672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462559328"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462559552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140215462559328": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487715520"}]}, "140215487715520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215462559552": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215487721792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462658224"}, {"nodeId": "140215462658448"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215462658672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140215462658224": {"type": "Union", "items": [{"nodeId": "140215462658112"}, {"nodeId": "140215487718880"}]}, "140215462658112": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215487718880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811088", "args": [{"nodeId": "140215488339232"}]}], "returnType": {"nodeId": "140215462658336"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215462658336": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462658448": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215462658672": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215512837568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}], "returnType": {"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215512838016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474811424", "args": [{"nodeId": ".1.140215474811424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215512838464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215554709024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458106720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458106720": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215424686944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458106944"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458106944": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215424686272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458107056"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458107056": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215424686720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458107168"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458107168": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215479596784": {"type": "Union", "items": [{"nodeId": "140215483161888"}, {"nodeId": "N"}]}, "140215554710816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458107280"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215567750800"}, "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"]}, "140215458107280": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215483160208": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479595776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479598240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491832832"}, "name": "_replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491835296"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491835520"}, "name": "_asdict"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215491832160"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": false}, "140215479595776": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215479598240": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140215491832832": {"type": "Function", "typeVars": [".-1.140215491832832"], "argTypes": [{"nodeId": ".-1.140215491832832"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215491832832"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}, ".-1.140215491832832": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140215479596896"}, "def": "140215491832832", "variance": "INVARIANT"}, "140215479596896": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215491835296": {"type": "Function", "typeVars": [".-1.140215491835296"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215491835296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}, ".-1.140215491835296": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140215479596896"}, "def": "140215491835296", "variance": "INVARIANT"}, "140215491835520": {"type": "Function", "typeVars": [".-1.140215491835520"], "argTypes": [{"nodeId": ".-1.140215491835520"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}, ".-1.140215491835520": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140215479596896"}, "def": "140215491835520", "variance": "INVARIANT"}, "140215491832160": {"type": "Function", "typeVars": [".-1.140215491832160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215491832160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_cls", "iterable", "new", "len"]}, ".-1.140215491832160": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140215479596896"}, "def": "140215491832160", "variance": "INVARIANT"}, "140215483161216": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424629920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424629248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424628576"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458106048"}, "items": [{"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "select"}], "typeVars": [], "bases": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215483160880"}]}], "isAbstract": false}, "140215424629920": {"type": "Function", "typeVars": [".-1.140215424629920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215458107504"}]}], "returnType": {"nodeId": ".-1.140215424629920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}, "140215458107504": {"type": "TypeAlias", "target": {"nodeId": "140215466643456"}}, ".-1.140215424629920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215424629920", "variance": "INVARIANT"}, "140215424629248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161216"}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215424628576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161216"}], "returnType": {"nodeId": "140215488339904", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458106048": {"type": "Overloaded", "items": [{"nodeId": "140215554714400"}, {"nodeId": "140215554714848"}]}, "140215554714400": {"type": "Function", "typeVars": [".-1.140215554714400"], "argTypes": [{"nodeId": ".-1.140215554714400"}], "returnType": {"nodeId": ".-1.140215554714400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215554714400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215554714400", "variance": "INVARIANT"}, "140215554714848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483161216"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215483160880"}, "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"]}, "140215466439536": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "type": {"nodeId": "140215466439872"}}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424623200"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483165248"}], "isAbstract": true}, "140215424623200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466439536"}, {"nodeId": "140215466439872"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215483161888"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}, "140215466440208": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215424620960"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555446304"}, "name": "invalidate_caches"}], "typeVars": [], "bases": [{"nodeId": "140215466439536"}], "isAbstract": false}, "140215424620960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215466439872"}], "returnType": {"nodeId": "140215567754496", "args": [{"nodeId": "140215483162224"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}, "140215555446304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466440208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140215474806384": {"type": "Protocol", "module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215555453696"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["find_spec"]}, "140215555453696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474806384"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462189248"}, {"nodeId": "140215462189360"}], "returnType": {"nodeId": "140215462189472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140215462189248": {"type": "Union", "items": [{"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215462189360": {"type": "Union", "items": [{"nodeId": "140215474800336"}, {"nodeId": "N"}]}, "140215462189472": {"type": "Union", "items": [{"nodeId": "140215483162560"}, {"nodeId": "N"}]}, "140215466433824": {"type": "Concrete", "module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441320960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441322080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441322304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441322528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441322752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441322976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441323200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441323424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441323648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441323872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441324096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441324320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441324544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441324768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441324992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441325664"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "A"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215441320960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462189696"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462189696": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441322080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462189808"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462189808": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441322304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462189920"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462189920": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441322528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190032"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190032": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441322752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190144"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190144": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441322976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190256"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190256": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441323200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190368"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190368": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441323424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190480"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190480": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441323648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190592"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190592": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441323872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190704"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190704": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441324096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190816"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190816": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441324320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462190928"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462190928": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441324544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191040"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191040": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441324768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191152"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191152": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441324992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191264"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191264": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441325664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191376"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191376": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215475468464": {"type": "Concrete", "module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526031872"}, "name": "__new__"}], "typeVars": [{"nodeId": ".1.140215475468464"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215526031872": {"type": "Function", "typeVars": [".-1.140215526031872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": ".1.140215475468464"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140215526031872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}, ".1.140215475468464": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475468464", "variance": "COVARIANT"}, ".-1.140215526031872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215526031872", "variance": "INVARIANT"}, "140215466434160": {"type": "Concrete", "module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441458112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441458560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441458784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441459008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441459232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441459456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441459680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441459904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441460128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441460352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441460576"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333424"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}], "isAbstract": false}, "140215441458112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191488"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191488": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441458560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191600"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191600": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441458784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191712"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191712": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441459008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191824"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191824": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441459232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462191936"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462191936": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441459456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192048"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192048": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441459680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192160"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192160": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441459904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192272"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192272": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441460128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192384"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192384": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441460352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192496": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441460576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192608"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192608": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215466434496": {"type": "Concrete", "module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441461920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441462144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441462368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441462592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441462816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441463040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441463264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441463488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441463712"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215475203632"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}], "isAbstract": false}, "140215441461920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192720"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192720": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441462144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192832"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192832": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441462368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462192944"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462192944": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441462592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193056"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193056": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441462816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193168"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193168": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441463040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193280"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193280": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441463264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193392"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193392": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441463488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193504"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193504": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441463712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193616"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193616": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215475203632": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "140215487333088"}]}, "140215474806720": {"type": "Concrete", "module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466527312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215547016832"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466527312": {"type": "TypeAlias", "target": {"nodeId": "140215466839728"}}, "140215466839728": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215547016832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474806720"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215466434832": {"type": "Concrete", "module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441465728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441465952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441466176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441466400"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215441465728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193840"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193840": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441465952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462193952"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462193952": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441466176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194064"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194064": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215441466400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194176"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194176": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215466435168": {"type": "Concrete", "module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441466624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441467744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441467968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441468192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441468416"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "A"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}], "isAbstract": false}, "140215441466624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194288"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194288": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215441467744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194400"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194400": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215441467968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194512"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194512": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215441468192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194624"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194624": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215441468416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462194736"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462194736": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215474807056": {"type": "Concrete", "module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466842752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466533024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466533248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474819184"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466842752": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215466533024": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215466533248": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215474819184": {"type": "Union", "items": [{"nodeId": "140215567750464"}, {"nodeId": "N"}]}, "140215466435504": {"type": "Concrete", "module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441471328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441471776"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215474819408"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215466643680"}]}], "isAbstract": false}, "140215441471328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462197312"}], "returnType": {"nodeId": "140215462197424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462197312": {"type": "Tuple", "items": [{"nodeId": "140215466525632"}, {"nodeId": "140215466530000"}]}, "140215466525632": {"type": "TypeAlias", "target": {"nodeId": "140215474820416"}}, "140215474820416": {"type": "Union", "items": [{"nodeId": "140215491832608"}, {"nodeId": "N"}]}, "140215491832608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215567757184": {"type": "Concrete", "module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521050208"}, "name": "__anext__"}, {"kind": "Variable", "name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450571872"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466994128"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521199712"}, "name": "aclose"}, {"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450571424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450572768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450572992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450573216"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}], "bases": [{"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215567757184"}]}], "isAbstract": true}, "140215521050208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567757184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567757184": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567757184", "variance": "COVARIANT"}, ".2.140215567757184": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567757184", "variance": "CONTRAVARIANT"}, "140215450571872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}, {"nodeId": ".2.140215567757184"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567757184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215466994128": {"type": "Overloaded", "items": [{"nodeId": "140215521198816"}, {"nodeId": "140215521199264"}]}, "140215521198816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}, {"nodeId": "0"}, {"nodeId": "140215466995920"}, {"nodeId": "140215466996032"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567757184"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466995920": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215466996032": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215521199264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215466996144"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567757184"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466996144": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215521199712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450571424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450572768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "140215474798992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450572992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "140215474804368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450573216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215567757184"}, {"nodeId": ".2.140215567757184"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567756848": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450569632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521049760"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140215567756848"}], "bases": [{"nodeId": "140215567756512", "args": [{"nodeId": ".1.140215567756848"}]}], "protocolMembers": ["__aiter__", "__anext__"]}, "140215450569632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215567756848"}]}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215567756848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567756848": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567756848", "variance": "COVARIANT"}, "140215521049760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215567756848"}]}], "returnType": {"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215567756848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567756512": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450566944"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567756512"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__aiter__"]}, "140215450566944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756512", "args": [{"nodeId": ".1.140215567756512"}]}], "returnType": {"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215567756512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567756512": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567756512", "variance": "COVARIANT"}, "140215466530000": {"type": "TypeAlias", "target": {"nodeId": "140215474820416"}}, "140215462197424": {"type": "TypeAlias", "target": {"nodeId": "140215474820416"}}, "140215441471776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462197536"}], "returnType": {"nodeId": "140215462197648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462197536": {"type": "Tuple", "items": [{"nodeId": "140215466525632"}, {"nodeId": "140215466530000"}]}, "140215462197648": {"type": "TypeAlias", "target": {"nodeId": "140215474820416"}}, "140215474819408": {"type": "TypeAlias", "target": {"nodeId": "140215474820416"}}, "140215466643680": {"type": "Union", "items": [{"nodeId": "140215449786784"}, {"nodeId": "N"}]}, "140215449786784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567757184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215474798656": {"type": "Concrete", "module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450365152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474798992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487806624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445790432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215445531200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546280672"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215546281120"}, "name": "__call__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467202192"}, "items": [{"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215450365152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}], "returnType": {"nodeId": "140215467204656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467204656": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215488347632"}]}, {"nodeId": "N"}]}, "140215487806624": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215445790432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215445531200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215546280672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}, {"nodeId": "140215474798992"}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "140215467205104"}, {"nodeId": "140215467205216"}, {"nodeId": "140215467205328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}, "140215467205104": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215467205216": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}, {"nodeId": "N"}]}, "140215467205328": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215488347632"}]}, {"nodeId": "N"}]}, "140215546281120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215467202192": {"type": "Overloaded", "items": [{"nodeId": "140215546281568"}, {"nodeId": "140215537828128"}]}, "140215546281568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}, {"nodeId": "N"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215474798656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140215537828128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474798656"}, {"nodeId": "140215567750464"}, {"nodeId": "140215467205888"}], "returnType": {"nodeId": "140215474802016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140215467205888": {"type": "Union", "items": [{"nodeId": "140215487332416"}, {"nodeId": "N"}]}, "140215474802016": {"type": "Concrete", "module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446237728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446238176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446238400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446238624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446238848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446239072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542222176"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542222624"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446237728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215467211152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467211152": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215488347632"}]}, {"nodeId": "N"}]}, "140215446238176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215467211376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467211376": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215446238400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215474801680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474801680": {"type": "Concrete", "module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542219040"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215542219040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801680"}, {"nodeId": "140215467210928"}, {"nodeId": "140215467211040"}], "returnType": {"nodeId": "140215474798656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140215467210928": {"type": "Union", "items": [{"nodeId": "140215567750464"}, {"nodeId": "N"}]}, "140215467211040": {"type": "Union", "items": [{"nodeId": "140215487332416"}, {"nodeId": "N"}]}, "140215446238624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446238848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446239072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542222176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}, {"nodeId": "140215483457920"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215483457920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215542222624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802016"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215474799664": {"type": "Concrete", "module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538191264"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538191712"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538192160"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538192608"}, "name": "__delattr__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215538191264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140215538191712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799664"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215538192160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799664"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215538192608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474799664"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215474800672": {"type": "Concrete", "module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446226976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538195744"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538196192"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538196640"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467202864"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}], "bases": [{"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}], "isAbstract": false}, "140215446226976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}], "returnType": {"nodeId": "140215467207792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474800672": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474800672", "variance": "COVARIANT"}, ".2.140215474800672": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474800672", "variance": "CONTRAVARIANT"}, ".3.140215474800672": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474800672", "variance": "COVARIANT"}, "140215467207792": {"type": "Union", "items": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215538195744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}], "returnType": {"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215538196192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}], "returnType": {"nodeId": ".1.140215474800672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538196640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}, {"nodeId": ".2.140215474800672"}], "returnType": {"nodeId": ".1.140215474800672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215467202864": {"type": "Overloaded", "items": [{"nodeId": "140215538197088"}, {"nodeId": "140215538197536"}]}, "140215538197088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}, {"nodeId": "0"}, {"nodeId": "140215467208016"}, {"nodeId": "140215467208128"}], "returnType": {"nodeId": ".1.140215474800672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467208016": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215467208128": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215538197536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474800672", "args": [{"nodeId": ".1.140215474800672"}, {"nodeId": ".2.140215474800672"}, {"nodeId": ".3.140215474800672"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215467208240"}], "returnType": {"nodeId": ".1.140215474800672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467208240": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215474801008": {"type": "Concrete", "module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446231008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538198432"}, "name": "__aiter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538198880"}, "name": "__anext__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538199328"}, "name": "asend"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467205776"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538200672"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538201120"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}], "bases": [{"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}], "isAbstract": false}, "140215446231008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}], "returnType": {"nodeId": "140215467208464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474801008": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474801008", "variance": "COVARIANT"}, ".2.140215474801008": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474801008", "variance": "CONTRAVARIANT"}, "140215467208464": {"type": "Union", "items": [{"nodeId": "140215567755840", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215538198432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}], "returnType": {"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538198880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215474801008"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567756176": {"type": "Concrete", "module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450482080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450482304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450482528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450482752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450482976"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466994016"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450483200"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}], "bases": [{"nodeId": "140215567755840", "args": [{"nodeId": ".3.140215567756176"}]}], "isAbstract": true}, "140215450482080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}], "returnType": {"nodeId": "140215466995248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567756176": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567756176", "variance": "COVARIANT"}, ".2.140215567756176": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567756176", "variance": "CONTRAVARIANT"}, ".3.140215567756176": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567756176", "variance": "COVARIANT"}, "140215466995248": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215450482304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}], "returnType": {"nodeId": "140215474798992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450482528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}], "returnType": {"nodeId": "140215474804368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450482752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450482976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}, {"nodeId": ".2.140215567756176"}], "returnType": {"nodeId": ".1.140215567756176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215466994016": {"type": "Overloaded", "items": [{"nodeId": "140215521047520"}, {"nodeId": "140215521047968"}]}, "140215521047520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}, {"nodeId": "0"}, {"nodeId": "140215466995472"}, {"nodeId": "140215466995584"}], "returnType": {"nodeId": ".1.140215567756176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466995472": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215466995584": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215521047968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215466995696"}], "returnType": {"nodeId": ".1.140215567756176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215466995696": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215450483200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215567756176"}, {"nodeId": ".2.140215567756176"}, {"nodeId": ".3.140215567756176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538199328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}, {"nodeId": ".2.140215474801008"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215474801008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215467205776": {"type": "Overloaded", "items": [{"nodeId": "140215483458368"}, {"nodeId": "140215538199776"}]}, "140215483458368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}, {"nodeId": "0"}, {"nodeId": "140215467209136"}, {"nodeId": "140215467209248"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215474801008"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467209136": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215467209248": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215538199776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215467209472"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215474801008"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467209472": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215538200672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801008", "args": [{"nodeId": ".1.140215474801008"}, {"nodeId": ".2.140215474801008"}]}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538201120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140215474801344": {"type": "Concrete", "module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446234368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538202464"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538202912"}, "name": "__await__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215538203360"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467209360"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}], "bases": [{"nodeId": "140215567756176", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}], "isAbstract": false}, "140215446234368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}], "returnType": {"nodeId": "140215467210256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474801344": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474801344", "variance": "COVARIANT"}, ".2.140215474801344": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474801344", "variance": "CONTRAVARIANT"}, ".3.140215474801344": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474801344", "variance": "COVARIANT"}, "140215467210256": {"type": "Union", "items": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215467210144"}]}, {"nodeId": "N"}]}, "140215467210144": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215538202464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538202912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140215474801344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215538203360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}, {"nodeId": ".2.140215474801344"}], "returnType": {"nodeId": ".1.140215474801344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215467209360": {"type": "Overloaded", "items": [{"nodeId": "140215538203808"}, {"nodeId": "140215538204256"}]}, "140215538203808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}, {"nodeId": "0"}, {"nodeId": "140215467210592"}, {"nodeId": "140215467210704"}], "returnType": {"nodeId": ".1.140215474801344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467210592": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "140215567750464"}]}, "140215467210704": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215538204256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474801344", "args": [{"nodeId": ".1.140215474801344"}, {"nodeId": ".2.140215474801344"}, {"nodeId": ".3.140215474801344"}]}, {"nodeId": "140215487340480"}, {"nodeId": "N"}, {"nodeId": "140215467210816"}], "returnType": {"nodeId": ".1.140215474801344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140215467210816": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215474802352": {"type": "Concrete", "module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446240192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446240640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446240864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542224416"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446240192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802352"}], "returnType": {"nodeId": "140215467212048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215467212048": {"type": "Union", "items": [{"nodeId": "140215567750464"}, {"nodeId": "140215474800336"}]}, "140215446240640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802352"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446240864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802352"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542224416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802352"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215474802688": {"type": "Concrete", "module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446340544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446341216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446341440"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542226208"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542226656"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446340544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802688"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446341216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802688"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446341440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802688"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542226208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215542226656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474802688"}, {"nodeId": "A"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215474803024": {"type": "Concrete", "module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446342560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446343008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446343232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446343456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542228896"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542229344"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542229792"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446342560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446343008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446343232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446343456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542228896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215542229344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215542229792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803024"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215474803360": {"type": "Concrete", "module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446345472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446345920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446346144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542231584"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542232032"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446345472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803360"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446345920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803360"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446346144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803360"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542231584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803360"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215542232032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803360"}, {"nodeId": "A"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140215474803696": {"type": "Concrete", "module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446347264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446347712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446347936"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542233824"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542234272"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446347264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803696"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446347712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803696"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446347936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803696"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542233824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803696"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215542234272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474803696"}, {"nodeId": "A"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140215474804704": {"type": "Concrete", "module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446353760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446353984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446354208"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542127008"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542127456"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542127904"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446353760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446353984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215446354208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542127008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}, {"nodeId": "A"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215542127456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215542127904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474804704"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215474805040": {"type": "Concrete", "module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215446355328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441162304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215441162528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542129696"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542130144"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542130592"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215446355328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215441162304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215441162528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}], "returnType": {"nodeId": "140215487332416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542129696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}, {"nodeId": "A"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140215542130144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215542130592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805040"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215474805712": {"type": "Concrete", "module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541989664"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215541989664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474805712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215475459392": {"type": "Protocol", "module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541992128"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215541992128": {"type": "Function", "typeVars": [".-1.140215541992128"], "argTypes": [{"nodeId": "140215475459392"}, {"nodeId": ".-1.140215541992128"}], "returnType": {"nodeId": ".-1.140215541992128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215541992128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215541992128", "variance": "INVARIANT"}, "140215475459728": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541992576"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140215475459728"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__next__"]}, "140215541992576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475459728", "args": [{"nodeId": ".1.140215475459728"}]}], "returnType": {"nodeId": ".1.140215475459728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475459728": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475459728", "variance": "COVARIANT"}, "140215475460064": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541993024"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140215475460064"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__anext__"]}, "140215541993024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475460064", "args": [{"nodeId": ".1.140215475460064"}]}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".1.140215475460064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475460064": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475460064", "variance": "COVARIANT"}, "140215475461072": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541994368"}, "name": "__le__"}], "typeVars": [{"nodeId": ".1.140215475461072"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__le__"]}, "140215541994368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475461072", "args": [{"nodeId": ".1.140215475461072"}]}, {"nodeId": ".1.140215475461072"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475461072": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475461072", "variance": "CONTRAVARIANT"}, "140215475461408": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541994816"}, "name": "__ge__"}], "typeVars": [{"nodeId": ".1.140215475461408"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__ge__"]}, "140215541994816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475461408", "args": [{"nodeId": ".1.140215475461408"}]}, {"nodeId": ".1.140215475461408"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475461408": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475461408", "variance": "CONTRAVARIANT"}, "140215475461744": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475460400", "args": [{"nodeId": "A"}]}, {"nodeId": "140215475460736", "args": [{"nodeId": "A"}]}, {"nodeId": "140215475461072", "args": [{"nodeId": "A"}]}, {"nodeId": "140215475461408", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}, "140215475462752": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541996160"}, "name": "__sub__"}], "typeVars": [{"nodeId": ".1.140215475462752"}, {"nodeId": ".2.140215475462752"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__sub__"]}, "140215541996160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475462752", "args": [{"nodeId": ".1.140215475462752"}, {"nodeId": ".2.140215475462752"}]}, {"nodeId": ".1.140215475462752"}], "returnType": {"nodeId": ".2.140215475462752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475462752": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462752", "variance": "CONTRAVARIANT"}, ".2.140215475462752": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475462752", "variance": "COVARIANT"}, "140215475463088": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541996608"}, "name": "__rsub__"}], "typeVars": [{"nodeId": ".1.140215475463088"}, {"nodeId": ".2.140215475463088"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__rsub__"]}, "140215541996608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475463088", "args": [{"nodeId": ".1.140215475463088"}, {"nodeId": ".2.140215475463088"}]}, {"nodeId": ".1.140215475463088"}], "returnType": {"nodeId": ".2.140215475463088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475463088": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463088", "variance": "CONTRAVARIANT"}, ".2.140215475463088": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463088", "variance": "COVARIANT"}, "140215475463424": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541997056"}, "name": "__divmod__"}], "typeVars": [{"nodeId": ".1.140215475463424"}, {"nodeId": ".2.140215475463424"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__divmod__"]}, "140215541997056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475463424", "args": [{"nodeId": ".1.140215475463424"}, {"nodeId": ".2.140215475463424"}]}, {"nodeId": ".1.140215475463424"}], "returnType": {"nodeId": ".2.140215475463424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475463424": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463424", "variance": "CONTRAVARIANT"}, ".2.140215475463424": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463424", "variance": "COVARIANT"}, "140215475463760": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541997504"}, "name": "__rdivmod__"}], "typeVars": [{"nodeId": ".1.140215475463760"}, {"nodeId": ".2.140215475463760"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__rdivmod__"]}, "140215541997504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475463760", "args": [{"nodeId": ".1.140215475463760"}, {"nodeId": ".2.140215475463760"}]}, {"nodeId": ".1.140215475463760"}], "returnType": {"nodeId": ".2.140215475463760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140215475463760": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463760", "variance": "CONTRAVARIANT"}, ".2.140215475463760": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475463760", "variance": "COVARIANT"}, "140215475464096": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541997952"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140215475464096"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__iter__"]}, "140215541997952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475464096", "args": [{"nodeId": ".1.140215475464096"}]}], "returnType": {"nodeId": ".1.140215475464096"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215475464096": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475464096", "variance": "COVARIANT"}, "140215475464432": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215541998400"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140215475464432"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__aiter__"]}, "140215541998400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475464432", "args": [{"nodeId": ".1.140215475464432"}]}], "returnType": {"nodeId": ".1.140215475464432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475464432": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475464432", "variance": "COVARIANT"}, "140215475465440": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542000192"}, "name": "items"}], "typeVars": [{"nodeId": ".1.140215475465440"}, {"nodeId": ".2.140215475465440"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["items"]}, "140215542000192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475465440", "args": [{"nodeId": ".1.140215475465440"}, {"nodeId": ".2.140215475465440"}]}], "returnType": {"nodeId": "140215567758864", "args": [{"nodeId": "140215453901296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475465440": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475465440", "variance": "COVARIANT"}, ".2.140215475465440": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475465440", "variance": "COVARIANT"}, "140215453901296": {"type": "Tuple", "items": [{"nodeId": ".1.140215475465440"}, {"nodeId": ".2.140215475465440"}]}, "140215475466112": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542001536"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542001984"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140215475466112"}, {"nodeId": ".2.140215475466112"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__contains__", "__getitem__"]}, "140215542001536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475466112", "args": [{"nodeId": ".1.140215475466112"}, {"nodeId": ".2.140215475466112"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140215475466112": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475466112", "variance": "CONTRAVARIANT"}, ".2.140215475466112": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475466112", "variance": "COVARIANT"}, "140215542001984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475466112", "args": [{"nodeId": ".1.140215475466112"}, {"nodeId": ".2.140215475466112"}]}, {"nodeId": ".1.140215475466112"}], "returnType": {"nodeId": ".2.140215475466112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215475466448": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542002432"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542002880"}, "name": "__delitem__"}], "typeVars": [{"nodeId": ".1.140215475466448"}, {"nodeId": ".2.140215475466448"}], "bases": [{"nodeId": "140215475466112", "args": [{"nodeId": ".1.140215475466448"}, {"nodeId": ".2.140215475466448"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}, "140215542002432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475466448", "args": [{"nodeId": ".1.140215475466448"}, {"nodeId": ".2.140215475466448"}]}, {"nodeId": ".1.140215475466448"}, {"nodeId": ".2.140215475466448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140215475466448": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475466448", "variance": "CONTRAVARIANT"}, ".2.140215475466448": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475466448", "variance": "INVARIANT"}, "140215542002880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475466448", "args": [{"nodeId": ".1.140215475466448"}, {"nodeId": ".2.140215475466448"}]}, {"nodeId": ".1.140215475466448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215475466784": {"type": "Protocol", "module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542003328"}, "name": "fileno"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["fileno"]}, "140215542003328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475466784"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215475467456": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542004224"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140215475467456"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["readline"]}, "140215542004224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475467456", "args": [{"nodeId": ".1.140215475467456"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215475467456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140215475467456": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475467456", "variance": "COVARIANT"}, "140215475467792": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542004672"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140215475467792"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["readline"]}, "140215542004672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475467792", "args": [{"nodeId": ".1.140215475467792"}]}], "returnType": {"nodeId": ".1.140215475467792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215475467792": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215475467792", "variance": "COVARIANT"}, "140215488346960": {"type": "Concrete", "module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487805504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487805728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537694784"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450098752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450099872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487805504": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215487805728": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215537694784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346960"}, {"nodeId": "140215487334768"}, {"nodeId": "140215466985056"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215466985280"}], "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"]}, "140215466985056": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140215487334768"}]}, "140215466985280": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215450098752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346960"}], "returnType": {"nodeId": "140215567752144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567752144": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567752816"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526039264"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215567752816": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487801360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526040160"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450238112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215450238560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526042400"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526042848"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487801360": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215526040160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752816"}, {"nodeId": "140215487334768"}, {"nodeId": "140215466983600"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}, "140215466983600": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215450238112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752816"}], "returnType": {"nodeId": "140215567752144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215450238560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752816"}], "returnType": {"nodeId": "140215567752480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567752480": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567752816"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526039712"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215526039712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752480"}, {"nodeId": "140215567752816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140215526042400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752816"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567751808": {"type": "Concrete", "module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526035232"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526035680"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526036128"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215526035232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751808"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526035680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751808"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526036128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751808"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526042848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752816"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526039264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567752144"}, {"nodeId": "140215567752816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140215450099872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346960"}], "returnType": {"nodeId": "140215567752480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567751472": {"type": "Concrete", "module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487792064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526033440"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526033888"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526034336"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487792064": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215526033440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751472"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}, {"nodeId": "140215466984608"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}], "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"]}, "140215466984608": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215526033888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526034336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567751472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567753152": {"type": "Concrete", "module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526043296"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526043744"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526044192"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526044640"}, "name": "__ror__"}, {"kind": "Variable", "name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487332416"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215526043296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567753152"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}, "140215526043744": {"type": "Function", "typeVars": [".-1.140215526043744"], "argTypes": [{"nodeId": "140215567753152"}, {"nodeId": ".-1.140215526043744"}], "returnType": {"nodeId": ".-1.140215526043744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, ".-1.140215526043744": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215526043744", "variance": "INVARIANT"}, "140215526044192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567753152"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215526044640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567753152"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567751808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215567753488": {"type": "Concrete", "module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215526046432"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215526046432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567753488"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488331840": {"type": "Concrete", "module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140215488149008"}], "isAbstract": false}, "140215488149008": {"type": "Concrete", "module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517059488"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517059936"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517060384"}, "name": "__subclasscheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517060832"}, "name": "_dump_registry"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517061280"}, "name": "register"}], "typeVars": [], "bases": [{"nodeId": "140215487332416"}], "isAbstract": false}, "140215517059488": {"type": "Function", "typeVars": [".-1.140215517059488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215517059488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}, ".-1.140215517059488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517059488", "variance": "INVARIANT"}, "140215517059936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149008"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}, "140215517060384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149008"}, {"nodeId": "140215487332416"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140215517060832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149008"}, {"nodeId": "140215453900848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}, "140215453900848": {"type": "Union", "items": [{"nodeId": "140215475468128", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215517061280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149008"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140215488333520": {"type": "Protocol", "module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450362464"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__index__"]}, "140215450362464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488333520"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215567753824": {"type": "Protocol", "module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450363808"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215567753824"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__abs__"]}, "140215450363808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567753824", "args": [{"nodeId": ".1.140215567753824"}]}], "returnType": {"nodeId": ".1.140215567753824"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215567753824": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567753824", "variance": "COVARIANT"}, "140215567754160": {"type": "Protocol", "module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466797408"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}], "typeVars": [{"nodeId": ".1.140215567754160"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__round__"]}, "140215466797408": {"type": "Overloaded", "items": [{"nodeId": "140215521036768"}, {"nodeId": "140215521037216"}]}, "140215521036768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567754160", "args": [{"nodeId": ".1.140215567754160"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215567754160": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215567754160", "variance": "COVARIANT"}, "140215521037216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567754160", "args": [{"nodeId": ".1.140215567754160"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".1.140215567754160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215488334192": {"type": "Protocol", "module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450468416"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__hash__"]}, "140215450468416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488334192"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215488334528": {"type": "Concrete", "module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140215488334528"}, {"nodeId": ".2.140215488334528"}, {"nodeId": ".3.140215488334528"}, {"nodeId": ".4.140215488334528"}], "bases": [{"nodeId": "140215567755840", "args": [{"nodeId": ".3.140215488334528"}]}, {"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215488334528"}, {"nodeId": ".2.140215488334528"}, {"nodeId": ".3.140215488334528"}]}], "isAbstract": true}, ".1.140215488334528": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488334528", "variance": "COVARIANT"}, ".2.140215488334528": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488334528", "variance": "CONTRAVARIANT"}, ".3.140215488334528": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488334528", "variance": "COVARIANT"}, ".4.140215488334528": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488334528", "variance": "INVARIANT"}, "140215488337552": {"type": "Concrete", "module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215467199952"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215445783936"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521739040"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521739936"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140215467199952": {"type": "Overloaded", "items": [{"nodeId": "140215521606368"}, {"nodeId": "140215521606816"}]}, "140215521606368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337552"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215467203200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140215467203200": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "140215521606816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337552"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140215445783936": {"type": "Function", "typeVars": [".-1.140215445783936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140215445783936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140215445783936": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215445783936", "variance": "INVARIANT"}, "140215521739040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337552"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521739936": {"type": "Function", "typeVars": [".-1.140215521739936"], "argTypes": [{"nodeId": ".-1.140215521739936"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215521739936"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140215521739936": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521739936", "variance": "INVARIANT"}, "140215488337888": {"type": "Concrete", "module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521740384"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521740832"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521741280"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521741728"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521742176"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521742624"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521743072"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521743520"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521743968"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521744416"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}], "isAbstract": true}, "140215521740384": {"type": "Function", "typeVars": [".-1.140215521740384"], "argTypes": [{"nodeId": ".-1.140215521740384"}], "returnType": {"nodeId": ".-1.140215521740384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215521740384": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521740384", "variance": "INVARIANT"}, "140215521740832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337888"}, {"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140215521741280": {"type": "Function", "typeVars": [".-1.140215521741280"], "argTypes": [{"nodeId": "140215488337888"}, {"nodeId": "0"}, {"nodeId": ".-1.140215521741280"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140215521741280": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521741280", "variance": "INVARIANT"}, "140215521741728": {"type": "Function", "typeVars": [".-1.140215521741728"], "argTypes": [{"nodeId": ".-1.140215521741728"}, {"nodeId": ".-1.140215521741728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215521741728": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521741728", "variance": "INVARIANT"}, "140215521742176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337888"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521742624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337888"}], "returnType": {"nodeId": "140215488338896", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521743072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337888"}], "returnType": {"nodeId": "140215488338224", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521743520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488337888"}], "returnType": {"nodeId": "140215488338560", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215521743968": {"type": "Function", "typeVars": [".-1.140215521743968"], "argTypes": [{"nodeId": ".-1.140215521743968"}, {"nodeId": ".-1.140215521743968"}], "returnType": {"nodeId": ".-1.140215521743968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521743968": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521743968", "variance": "INVARIANT"}, "140215521744416": {"type": "Function", "typeVars": [".-1.140215521744416"], "argTypes": [{"nodeId": ".-1.140215521744416"}, {"nodeId": ".-1.140215521744416"}], "returnType": {"nodeId": ".-1.140215521744416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215521744416": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521744416", "variance": "INVARIANT"}, "140215567760208": {"type": "Concrete", "module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474798992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475206544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475206992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521744864"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521745760"}, "name": "_evaluate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521746656"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215475206544": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215475206992": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215521744864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760208"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}, {"nodeId": "140215467203872"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}, "140215467203872": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215521745760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760208"}, {"nodeId": "140215467204096"}, {"nodeId": "140215467204320"}, {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215467204544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}, "140215467204096": {"type": "Union", "items": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215467204320": {"type": "Union", "items": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215467204544": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215521746656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215567760208"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488345280": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521751808"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521752256"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521752704"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215521751808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521752256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488345280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215521752704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488345280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488345616": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488340240", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215521754496"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537680448"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537680896"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537681344"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537681792"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537682240"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537682688"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537683136"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537683584"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537684032"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}], "isAbstract": true}, "140215521754496": {"type": "Function", "typeVars": [".-1.140215521754496"], "argTypes": [{"nodeId": ".-1.140215521754496"}], "returnType": {"nodeId": ".-1.140215521754496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215521754496": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215521754496", "variance": "INVARIANT"}, "140215537680448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345616"}, {"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140215537680896": {"type": "Function", "typeVars": [".-1.140215537680896"], "argTypes": [{"nodeId": "140215488345616"}, {"nodeId": "0"}, {"nodeId": ".-1.140215537680896"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140215537680896": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215537680896", "variance": "INVARIANT"}, "140215537681344": {"type": "Function", "typeVars": [".-1.140215537681344"], "argTypes": [{"nodeId": ".-1.140215537681344"}, {"nodeId": ".-1.140215537681344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140215537681344": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215537681344", "variance": "INVARIANT"}, "140215537681792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345616"}], "returnType": {"nodeId": "140215488338896", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537682240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345616"}], "returnType": {"nodeId": "140215488338224", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537682688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345616"}], "returnType": {"nodeId": "140215488338560", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537683136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488345616"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215537683584": {"type": "Function", "typeVars": [".-1.140215537683584"], "argTypes": [{"nodeId": ".-1.140215537683584"}, {"nodeId": ".-1.140215537683584"}], "returnType": {"nodeId": ".-1.140215537683584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215537683584": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215537683584", "variance": "INVARIANT"}, "140215537684032": {"type": "Function", "typeVars": [".-1.140215537684032"], "argTypes": [{"nodeId": ".-1.140215537684032"}, {"nodeId": ".-1.140215537684032"}], "returnType": {"nodeId": ".-1.140215537684032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215537684032": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215537684032", "variance": "INVARIANT"}, "140215488346288": {"type": "Concrete", "module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215466799984"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215450096512"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537691648"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537692544"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140215466799984": {"type": "Overloaded", "items": [{"nodeId": "140215537690304"}, {"nodeId": "140215537690752"}]}, "140215537690304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215466992112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140215466992112": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "140215537690752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346288"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140215450096512": {"type": "Function", "typeVars": [".-1.140215450096512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140215450096512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140215450096512": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215450096512", "variance": "INVARIANT"}, "140215537691648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346288"}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215537692544": {"type": "Function", "typeVars": [".-1.140215537692544"], "argTypes": [{"nodeId": ".-1.140215537692544"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215537692544"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140215537692544": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215537692544", "variance": "INVARIANT"}, "140215488346624": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487804384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487805168"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537692992"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537693440"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537693888"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487804384": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215487805168": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215537692992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346624"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}, {"nodeId": "140215466993120"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215466993344"}, {"nodeId": "140215567750800"}], "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"]}, "140215466993120": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215466993344": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215537693440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346624"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488345280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215537693888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488346624"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215488345280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215488347296": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487805952"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215537696128"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542399040"}, "name": "__iter__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487805952": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215537696128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488347296"}, {"nodeId": "140215487334768"}, {"nodeId": "140215466989424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}, "140215466989424": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215542399040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488347296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475469136": {"type": "Concrete", "module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408514368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542400608"}, "name": "__init__"}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466839504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215492114832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215492115056"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215408514368": {"type": "Tuple", "items": []}, "140215542400608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475469136"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140215466839504": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215492114832": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215492115056": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475469472": {"type": "Concrete", "module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475469808": {"type": "Concrete", "module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475683392": {"type": "Concrete", "module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408518848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469808"}], "isAbstract": false}, "140215408518848": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475683728": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408519856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469472"}], "isAbstract": false}, "140215408519856": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475693808": {"type": "Concrete", "module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475684064": {"type": "Concrete", "module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408520864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475683392"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469472"}], "isAbstract": false}, "140215408520864": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475685072": {"type": "Concrete", "module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475684400": {"type": "Concrete", "module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408522208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469472"}], "isAbstract": false}, "140215408522208": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475684736": {"type": "Concrete", "module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408523104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469472"}], "isAbstract": false}, "140215408523104": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475685408": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215408525120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466427440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466839616"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215408525120": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466427440": {"type": "Concrete", "module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403898672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466427776"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466427776"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215517025712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466427776"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215537725984"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466839168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403898672": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466427776": {"type": "Concrete", "module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403899904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466839280"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403899904": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466839280": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215517025712": {"type": "Union", "items": [{"nodeId": "140215466427776"}, {"nodeId": "N"}]}, "140215537725984": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215466839168": {"type": "Union", "items": [{"nodeId": "140215466427776"}, {"nodeId": "N"}]}, "140215466839616": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475685744": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403431296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466427440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403431296": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466838160": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475686080": {"type": "Concrete", "module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403432528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428112"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403432528": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466428112": {"type": "Concrete", "module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403900800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215516968240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403900800": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215516968240": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475686416": {"type": "Concrete", "module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403432976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838272"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403432976": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466838272": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475686752": {"type": "Concrete", "module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403433872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403433872": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475687088": {"type": "Concrete", "module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403435216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403435216": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475687424": {"type": "Concrete", "module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403436336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466366944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403436336": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466838384": {"type": "Union", "items": [{"nodeId": "140215466363584"}, {"nodeId": "140215466362240"}, {"nodeId": "140215466362912"}]}, "140215466363584": {"type": "Concrete", "module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403891056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403891056": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466364592": {"type": "Concrete", "module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215466362240": {"type": "Concrete", "module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403738192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403738192": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466362912": {"type": "Concrete", "module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403889152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403889152": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466366944": {"type": "Concrete", "module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475687760": {"type": "Concrete", "module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403437680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403437680": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466838496": {"type": "Union", "items": [{"nodeId": "140215466363584"}, {"nodeId": "140215466362240"}, {"nodeId": "140215466362912"}]}, "140215466838608": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475688096": {"type": "Concrete", "module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403439136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403439136": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475688432": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403440480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403440480": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475688768": {"type": "Concrete", "module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403441376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403441376": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475689104": {"type": "Concrete", "module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403442496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403442496": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475689440": {"type": "Concrete", "module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403443616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428784"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403443616": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466428784": {"type": "Concrete", "module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403902816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215521780768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403902816": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215521780768": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475689776": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403444736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428784"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403444736": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475690112": {"type": "Concrete", "module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403445632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403445632": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466838720": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215466838832": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475690448": {"type": "Concrete", "module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403594688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466427104"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403594688": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466427104": {"type": "Concrete", "module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403896656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215517032320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215517029408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466426768"}], "isAbstract": false}, "140215403896656": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215517032320": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215517029408": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466426768": {"type": "Concrete", "module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475690784": {"type": "Concrete", "module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403596032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466838944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403596032": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466838944": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475691120": {"type": "Concrete", "module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403596816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428448"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403596816": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466428448": {"type": "Concrete", "module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403901808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215521782224"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403901808": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215521782224": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475691456": {"type": "Concrete", "module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403598160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466839056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428448"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403598160": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466839056": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215475691792": {"type": "Concrete", "module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403598832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403598832": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475692128": {"type": "Concrete", "module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403599728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403599728": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475692464": {"type": "Concrete", "module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403600624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403600624": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475692800": {"type": "Concrete", "module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215475693136": {"type": "Concrete", "module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215475693472": {"type": "Concrete", "module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215475694144": {"type": "Concrete", "module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403601744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466365936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403601744": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466365936": {"type": "Concrete", "module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475694480": {"type": "Concrete", "module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403602976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466366944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403602976": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475694816": {"type": "Concrete", "module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403603872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466371648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403603872": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466371648": {"type": "Concrete", "module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475695152": {"type": "Concrete", "module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403604880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466427440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403604880": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475695488": {"type": "Concrete", "module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403606112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403606112": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475695824": {"type": "Concrete", "module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403607008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215492109904"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403607008": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215492109904": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475696160": {"type": "Concrete", "module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403607792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403607792": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475696496": {"type": "Concrete", "module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403608912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466426432"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403608912": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466426432": {"type": "Concrete", "module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403895648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403895648": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475696832": {"type": "Concrete", "module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403609920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466426432"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403609920": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475697168": {"type": "Concrete", "module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403725984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466426432"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403725984": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475697504": {"type": "Concrete", "module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403726880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466426432"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403726880": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215475697840": {"type": "Concrete", "module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403727664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403727664": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475698176": {"type": "Concrete", "module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403728560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466837824"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403728560": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466837824": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215475698512": {"type": "Concrete", "module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403729456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403729456": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215475698848": {"type": "Concrete", "module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403730800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466373328"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403730800": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466373328": {"type": "Concrete", "module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215475699184": {"type": "Concrete", "module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403731920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466428112"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403731920": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466360896": {"type": "Concrete", "module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403733040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215492109680"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403733040": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215492109680": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215466361232": {"type": "Concrete", "module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403733712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403733712": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466361568": {"type": "Concrete", "module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403735392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215492115280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215513109712"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403735392": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215492115280": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215513109712": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333760"}]}, "140215466361904": {"type": "Concrete", "module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403736960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466363584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403736960": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466362576": {"type": "Concrete", "module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403739872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215512912208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215512471744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215517214000"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403739872": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215512912208": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215512471744": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215517214000": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215466363248": {"type": "Concrete", "module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403890048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403890048": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466363920": {"type": "Concrete", "module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403892064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403892064": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466364256": {"type": "Concrete", "module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403893072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466364592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475693808"}], "isAbstract": false}, "140215403893072": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466364928": {"type": "Concrete", "module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466364592"}], "isAbstract": false}, "140215466365264": {"type": "Concrete", "module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466364592"}], "isAbstract": false}, "140215466365600": {"type": "Concrete", "module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466364592"}], "isAbstract": false}, "140215466366272": {"type": "Concrete", "module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466365936"}], "isAbstract": false}, "140215466366608": {"type": "Concrete", "module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466365936"}], "isAbstract": false}, "140215466367280": {"type": "Concrete", "module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466367616": {"type": "Concrete", "module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466367952": {"type": "Concrete", "module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466368288": {"type": "Concrete", "module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466368624": {"type": "Concrete", "module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466368960": {"type": "Concrete", "module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466369296": {"type": "Concrete", "module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466369632": {"type": "Concrete", "module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466369968": {"type": "Concrete", "module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466370304": {"type": "Concrete", "module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466370640": {"type": "Concrete", "module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466370976": {"type": "Concrete", "module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466371312": {"type": "Concrete", "module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466366944"}], "isAbstract": false}, "140215466371984": {"type": "Concrete", "module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466371648"}], "isAbstract": false}, "140215466372320": {"type": "Concrete", "module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466371648"}], "isAbstract": false}, "140215466372656": {"type": "Concrete", "module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466371648"}], "isAbstract": false}, "140215466372992": {"type": "Concrete", "module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466371648"}], "isAbstract": false}, "140215466373664": {"type": "Concrete", "module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466374000": {"type": "Concrete", "module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466374336": {"type": "Concrete", "module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466374672": {"type": "Concrete", "module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466375008": {"type": "Concrete", "module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466375344": {"type": "Concrete", "module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466375680": {"type": "Concrete", "module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466376016": {"type": "Concrete", "module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466376352": {"type": "Concrete", "module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466376688": {"type": "Concrete", "module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466373328"}], "isAbstract": false}, "140215466429120": {"type": "Concrete", "module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403903824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429792"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475685072"}], "isAbstract": false}, "140215403903824": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466429792": {"type": "Concrete", "module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403904496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466429456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215542021392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475685072"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215403904496": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466429456": {"type": "Concrete", "module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475469136"}], "isAbstract": false}, "140215542021392": {"type": "Union", "items": [{"nodeId": "140215475693808"}, {"nodeId": "N"}]}, "140215466430128": {"type": "Concrete", "module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215403904608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215403904608": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466430464": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404150848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215542009072"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404150848": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215542009072": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140215466430800": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404151184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429456"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404151184": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215466431136": {"type": "Concrete", "module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404151520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215550257056"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404151520": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215550257056": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466431472": {"type": "Concrete", "module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404152304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215475693808"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429456"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215550256944"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404152304": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215550256944": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466431808": {"type": "Concrete", "module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404153088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475693808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429456"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429456"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404153088": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466432144": {"type": "Concrete", "module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404153312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215525728304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215525221296"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404153312": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215525728304": {"type": "Union", "items": [{"nodeId": "140215466429456"}, {"nodeId": "N"}]}, "140215525221296": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466432480": {"type": "Concrete", "module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215404153536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466429456"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215466429456"}], "isAbstract": false}, "140215404153536": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215483154832": {"type": "Concrete", "module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487342496"}, {"nodeId": "140215487347872"}], "isAbstract": false}, "140215483156512": {"type": "Concrete", "module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542352576"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542353024"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542353472"}, "name": "getvalue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542353920"}, "name": "getbuffer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542354368"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140215483155840"}, {"nodeId": "140215488336544"}], "isAbstract": false}, "140215542352576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156512"}, {"nodeId": "140215463148592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}, "140215463148592": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215542353024": {"type": "Function", "typeVars": [".-1.140215542353024"], "argTypes": [{"nodeId": ".-1.140215542353024"}], "returnType": {"nodeId": ".-1.140215542353024"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215542353024": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215542353024", "variance": "INVARIANT"}, "140215542353472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156512"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542353920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156512"}], "returnType": {"nodeId": "140215487335104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215542354368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483156512"}, {"nodeId": "140215463148704"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215463148704": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215483157856": {"type": "Concrete", "module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542358400"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215542358848"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140215483155840"}], "isAbstract": false}, "140215542358400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483157856"}, {"nodeId": "140215483155504"}, {"nodeId": "140215483155504"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}, "140215542358848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483157856"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215483158864": {"type": "Concrete", "module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517055680"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517056128"}, "name": "getvalue"}], "typeVars": [], "bases": [{"nodeId": "140215483158528"}], "isAbstract": false}, "140215517055680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158864"}, {"nodeId": "140215458103808"}, {"nodeId": "140215458103920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}, "140215458103808": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458103920": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517056128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483158864"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466727392": {"type": "Concrete", "module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517056576"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517057024"}, "name": "decode"}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215424473728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517057920"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140215475458384"}], "isAbstract": false}, "140215517056576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727392"}, {"nodeId": "140215458104032"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}, "140215458104032": {"type": "Union", "items": [{"nodeId": "140215475458384"}, {"nodeId": "N"}]}, "140215475458384": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495951296"}, "name": "__init__"}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215412106048"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495952192"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495952640"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495953088"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": true}, "140215495951296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458384"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215412106048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458384"}, {"nodeId": "140215453894800"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140215453894800": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215495952192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495952640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458384"}], "returnType": {"nodeId": "140215453895024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215453895024": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215495953088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458384"}, {"nodeId": "140215453895248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140215453895248": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215517057024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727392"}, {"nodeId": "140215458104256"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140215458104256": {"type": "Union", "items": [{"nodeId": "140215458104144"}, {"nodeId": "140215487334768"}]}, "140215458104144": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215424473728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727392"}], "returnType": {"nodeId": "140215458104368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458104368": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215517057920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466727392"}, {"nodeId": "140215458104592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215458104592": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215488149344": {"type": "Concrete", "module": "abc", "simpleName": "abstractclassmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517062176"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140215488149344"}], "bases": [{"nodeId": "140215567760880", "args": [{"nodeId": ".1.140215488149344"}]}], "isAbstract": false}, "140215517062176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149344", "args": [{"nodeId": ".1.140215488149344"}]}, {"nodeId": "140215458650528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140215488149344": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488149344", "variance": "COVARIANT"}, "140215458650528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215488149344"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215488149680": {"type": "Concrete", "module": "abc", "simpleName": "abstractstaticmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517062624"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140215488149680"}], "bases": [{"nodeId": "140215567760544", "args": [{"nodeId": ".1.140215488149680"}]}], "isAbstract": false}, "140215517062624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215488149680", "args": [{"nodeId": ".1.140215488149680"}]}, {"nodeId": "140215458649856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140215488149680": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215488149680", "variance": "COVARIANT"}, "140215458649856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140215488149680"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215488150016": {"type": "Concrete", "module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487337120"}], "isAbstract": false}, "140215488150352": {"type": "Concrete", "module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215483159536": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517067328"}, "name": "joinpath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517067776"}, "name": "parent"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517068224"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517068672"}, "name": "__truediv__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}, "140215517067328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159536"}], "returnType": {"nodeId": "140215483159536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517067776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159536"}], "returnType": {"nodeId": "140215483159536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517068224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159536"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517068672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483159536"}], "returnType": {"nodeId": "140215483159536"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215483170288": {"type": "Concrete", "module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215483169280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466850480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466649504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215479700496"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517135584"}, "name": "is_multipart"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517136032"}, "name": "set_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517136480"}, "name": "get_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517136928"}, "name": "attach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517137376"}, "name": "get_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517137824"}, "name": "set_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517138272"}, "name": "set_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517138720"}, "name": "get_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517139168"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517139616"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517140064"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517140512"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517140960"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517141408"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517141856"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517142304"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517142752"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517143200"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517143648"}, "name": "get_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517144096"}, "name": "add_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517144544"}, "name": "replace_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517144992"}, "name": "get_content_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517145440"}, "name": "get_content_maintype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517145888"}, "name": "get_content_subtype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517146336"}, "name": "get_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517146784"}, "name": "set_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517147232"}, "name": "get_params"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517147680"}, "name": "get_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517148128"}, "name": "del_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517148576"}, "name": "set_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517149024"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517149472"}, "name": "get_boundary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517149920"}, "name": "set_boundary"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458284704"}, "items": [{"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get_content_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517282592"}, "name": "get_charsets"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517283040"}, "name": "walk"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517283488"}, "name": "get_content_disposition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517283936"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517284384"}, "name": "as_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517284832"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517285280"}, "name": "set_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517285728"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517286176"}, "name": "set_raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517286624"}, "name": "raw_items"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215483169280": {"type": "Concrete", "module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479592080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479591632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496209824"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496210272"}, "name": "clone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496210720"}, "name": "handle_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496211168"}, "name": "register_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496211616"}, "name": "header_max_count"}, {"kind": "Variable", "name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420450208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420449312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420448416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420448864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420447744"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": true}, "140215479592080": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215479591632": {"type": "Union", "items": [{"nodeId": "140215483462848"}, {"nodeId": "N"}]}, "140215483462848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}], "returnType": {"nodeId": "140215483170288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215496209824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215458288736"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458288848"}], "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"]}, "140215458288736": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458288848": {"type": "Union", "items": [{"nodeId": "140215457961504"}, {"nodeId": "N"}]}, "140215457961504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}], "returnType": {"nodeId": "140215483170288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215496210272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215483169280"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}, "140215496210720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215483170288"}, {"nodeId": "140215479700496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140215479700496": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496208480"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215487347872"}], "isAbstract": false}, "140215496208480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479700496"}, {"nodeId": "140215458496576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}, "140215458496576": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215496211168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215483170288"}, {"nodeId": "140215479700496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140215496211616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458289072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140215458289072": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215420450208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215458289296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140215458289296": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215420449312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458289520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215458289520": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215420448416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215420448864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215420447744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215466850480": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466649504": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517135584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517136032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}, "140215517136480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215458290864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458290864": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517136928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215483170288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}, "140215517137376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215458290976"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}, "140215458290976": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215517137824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215458291200"}, {"nodeId": "140215458291312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}, "140215458291200": {"type": "TypeAlias", "target": {"nodeId": "140215479593312"}}, "140215479593312": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215483170288"}]}, {"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215458291312": {"type": "TypeAlias", "target": {"nodeId": "140215466649280"}}, "140215466649280": {"type": "Union", "items": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479707552": {"type": "Concrete", "module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479590288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479590400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479590064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496200192"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496200640"}, "name": "get_body_encoding"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496201088"}, "name": "get_output_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496201536"}, "name": "header_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496201984"}, "name": "header_encode_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496202432"}, "name": "body_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496202880"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496203328"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215479590288": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479590400": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479590064": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215496200192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}, "140215496200640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496201088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}], "returnType": {"nodeId": "140215458498144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458498144": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215496201536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140215496201984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567754832", "args": [{"nodeId": "140215487333088"}]}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}, "140215496202432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140215496202880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496203328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707552"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517138272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215458291424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}, "140215458291424": {"type": "TypeAlias", "target": {"nodeId": "140215466649280"}}, "140215517138720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215458291536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458291536": {"type": "TypeAlias", "target": {"nodeId": "140215466649280"}}, "140215517139168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517139616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517140064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215517140512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458291648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458291648": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517140960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458291760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215458291760": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517141408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215517141856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517142304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215458291872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458291872": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517142752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215458292208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458292208": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215458291984"}]}, "140215458291984": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517143200": {"type": "Function", "typeVars": [".-1.140215517143200"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": ".-1.140215517143200"}], "returnType": {"nodeId": "140215458292432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140215517143200": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517143200", "variance": "INVARIANT"}, "140215458292432": {"type": "Union", "items": [{"nodeId": "140215458292320"}, {"nodeId": ".-1.140215517143200"}]}, "140215458292320": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517143648": {"type": "Function", "typeVars": [".-1.140215517143648"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": ".-1.140215517143648"}], "returnType": {"nodeId": "140215458292656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140215517143648": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517143648", "variance": "INVARIANT"}, "140215458292656": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215458292544"}]}, {"nodeId": ".-1.140215517143648"}]}, "140215458292544": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517144096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458292768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}, "140215458292768": {"type": "TypeAlias", "target": {"nodeId": "140215479588496"}}, "140215479588496": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}, {"nodeId": "140215479587264"}]}, "140215479587264": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215479587488"}, {"nodeId": "140215487334768"}]}, "140215479587488": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517144544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458292880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}, "140215458292880": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517144992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517145440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517145888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517146336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517146784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}, "140215517147232": {"type": "Function", "typeVars": [".-1.140215517147232"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": ".-1.140215517147232"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215458293216"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}, ".-1.140215517147232": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517147232", "variance": "INVARIANT"}, "140215458293216": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215458293104"}]}, {"nodeId": ".-1.140215517147232"}]}, "140215458293104": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215517147680": {"type": "Function", "typeVars": [".-1.140215517147680"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": ".-1.140215517147680"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215458293440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}, ".-1.140215517147680": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517147680", "variance": "INVARIANT"}, "140215458293440": {"type": "Union", "items": [{"nodeId": ".-1.140215517147680"}, {"nodeId": "140215458293328"}]}, "140215458293328": {"type": "TypeAlias", "target": {"nodeId": "140215479587824"}}, "140215479587824": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215479586928"}]}, "140215479586928": {"type": "Tuple", "items": [{"nodeId": "140215479587040"}, {"nodeId": "140215479589840"}, {"nodeId": "140215487334768"}]}, "140215479587040": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479589840": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517148128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}, "140215517148576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}, "140215517149024": {"type": "Function", "typeVars": [".-1.140215517149024"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": ".-1.140215517149024"}], "returnType": {"nodeId": "140215458293664"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140215517149024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517149024", "variance": "INVARIANT"}, "140215458293664": {"type": "Union", "items": [{"nodeId": ".-1.140215517149024"}, {"nodeId": "140215487334768"}]}, "140215517149472": {"type": "Function", "typeVars": [".-1.140215517149472"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": ".-1.140215517149472"}], "returnType": {"nodeId": "140215458292992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140215517149472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517149472", "variance": "INVARIANT"}, "140215458292992": {"type": "Union", "items": [{"nodeId": ".-1.140215517149472"}, {"nodeId": "140215487334768"}]}, "140215517149920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}, "140215458284704": {"type": "Overloaded", "items": [{"nodeId": "140215517150368"}, {"nodeId": "140215517150816"}]}, "140215517150368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215458293888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458293888": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517150816": {"type": "Function", "typeVars": [".-1.140215517150816"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": ".-1.140215517150816"}], "returnType": {"nodeId": "140215458294000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}, ".-1.140215517150816": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517150816", "variance": "INVARIANT"}, "140215458294000": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": ".-1.140215517150816"}]}, "140215517282592": {"type": "Function", "typeVars": [".-1.140215517282592"], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": ".-1.140215517282592"}], "returnType": {"nodeId": "140215458294112"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140215517282592": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517282592", "variance": "INVARIANT"}, "140215458294112": {"type": "Union", "items": [{"nodeId": ".-1.140215517282592"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}, "140215517283040": {"type": "Function", "typeVars": [".-1.140215517283040"], "argTypes": [{"nodeId": ".-1.140215517283040"}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".-1.140215517283040"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215517283040": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215517283040", "variance": "INVARIANT"}, "140215517283488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215458294224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458294224": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517283936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487333088"}, {"nodeId": "140215458294336"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140215458294336": {"type": "Union", "items": [{"nodeId": "140215483169280"}, {"nodeId": "N"}]}, "140215517284384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458294448"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}, "140215458294448": {"type": "Union", "items": [{"nodeId": "140215483169280"}, {"nodeId": "N"}]}, "140215517284832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517285280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458294560"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "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"]}, "140215458294560": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517285728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215483169280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140215517286176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458294672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215458294672": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215517286624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483170288"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215458295008"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458295008": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215458294784"}]}, "140215458294784": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140215479697472": {"type": "Concrete", "module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517287072"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517287520"}, "name": "get_body"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517287968"}, "name": "iter_attachments"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517288416"}, "name": "iter_parts"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517288864"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517289312"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517289760"}, "name": "make_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517290208"}, "name": "make_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517290656"}, "name": "make_mixed"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517291104"}, "name": "add_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517291552"}, "name": "add_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517292000"}, "name": "add_attachment"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517292448"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517292896"}, "name": "clear_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517293344"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215517293792"}, "name": "is_attachment"}], "typeVars": [], "bases": [{"nodeId": "140215483170288"}], "isAbstract": false}, "140215517287072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215458295120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140215458295120": {"type": "Union", "items": [{"nodeId": "140215483169280"}, {"nodeId": "N"}]}, "140215517287520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215458295232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}, "140215458295232": {"type": "Union", "items": [{"nodeId": "140215483170288"}, {"nodeId": "N"}]}, "140215517287968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215483170288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517288416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "140215483170288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517288864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "A"}, {"nodeId": "140215458295456"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140215458295456": {"type": "Union", "items": [{"nodeId": "140215479707216"}, {"nodeId": "N"}]}, "140215479707216": {"type": "Concrete", "module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496205792"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496206240"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496206688"}, "name": "add_get_handler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496207136"}, "name": "add_set_handler"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215496205792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707216"}, {"nodeId": "140215483170288"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}, "140215496206240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707216"}, {"nodeId": "140215483170288"}, {"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"]}, "140215496206688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707216"}, {"nodeId": "140215487334768"}, {"nodeId": "140215457964192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}, "140215457964192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215496207136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479707216"}, {"nodeId": "140215487332416"}, {"nodeId": "140215457963968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}, "140215457963968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215517289312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "A"}, {"nodeId": "140215458295904"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140215458295904": {"type": "Union", "items": [{"nodeId": "140215479707216"}, {"nodeId": "N"}]}, "140215517289760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215458296128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140215458296128": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517290208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215458296240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140215458296240": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517290656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215458296352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140215458296352": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215517291104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "A"}, {"nodeId": "140215458296576"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140215458296576": {"type": "Union", "items": [{"nodeId": "140215479707216"}, {"nodeId": "N"}]}, "140215517291552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "A"}, {"nodeId": "140215458296912"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140215458296912": {"type": "Union", "items": [{"nodeId": "140215479707216"}, {"nodeId": "N"}]}, "140215517292000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "A"}, {"nodeId": "140215458297248"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140215458297248": {"type": "Union", "items": [{"nodeId": "140215479707216"}, {"nodeId": "N"}]}, "140215517292448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517292896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215517293344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458297472"}, {"nodeId": "140215458297584"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140215458297472": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458297584": {"type": "Union", "items": [{"nodeId": "140215483169280"}, {"nodeId": "N"}]}, "140215517293792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479697472"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479697808": {"type": "Concrete", "module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479697472"}], "isAbstract": false}, "140215466726048": {"type": "Concrete", "module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466725376"}], "isAbstract": false}, "140215466726720": {"type": "Concrete", "module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466726384"}, {"nodeId": "140215466725712"}], "isAbstract": false}, "140215466727056": {"type": "Concrete", "module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140215466726384"}, {"nodeId": "140215466726048"}], "isAbstract": false}, "140215474814112": {"type": "Concrete", "module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512502048"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512502944"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512503392"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512503840"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512504288"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512504736"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512505184"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512505632"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512506080"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215512506528"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462671440"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140215474814112"}], "bases": [{"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}]}], "isAbstract": false}, "140215512502048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": "140215567759872", "args": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}]}, {"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"]}, ".1.140215474814112": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474814112", "variance": "INVARIANT"}, "140215512502944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}], "returnType": {"nodeId": ".1.140215474814112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}, "140215512503392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215512503840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": ".1.140215474814112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215512504288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": ".1.140215474814112"}], "returnType": {"nodeId": ".1.140215474814112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215512504736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215512505184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215474814112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215512505632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215512506080": {"type": "Function", "typeVars": [".-1.140215512506080", ".-2.140215512506080"], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215512506080"}, {"nodeId": ".-2.140215512506080"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215462796128"}, {"nodeId": "140215462796240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215512506080": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512506080", "variance": "INVARIANT"}, ".-2.140215512506080": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512506080", "variance": "INVARIANT"}, "140215462796128": {"type": "Union", "items": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".-1.140215512506080"}]}, "140215462796240": {"type": "Union", "items": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".-2.140215512506080"}]}, "140215512506528": {"type": "Function", "typeVars": [".-1.140215512506528", ".-2.140215512506528"], "argTypes": [{"nodeId": "140215474814112", "args": [{"nodeId": ".1.140215474814112"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": ".-1.140215512506528"}, {"nodeId": ".-2.140215512506528"}]}], "returnType": {"nodeId": "140215487336448", "args": [{"nodeId": "140215462796352"}, {"nodeId": "140215462796688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215512506528": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512506528", "variance": "INVARIANT"}, ".-2.140215512506528": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512506528", "variance": "INVARIANT"}, "140215462796352": {"type": "Union", "items": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".-1.140215512506528"}]}, "140215462796688": {"type": "Union", "items": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".-2.140215512506528"}]}, "140215462671440": {"type": "Overloaded", "items": [{"nodeId": "140215512506976"}, {"nodeId": "140215512507424"}]}, "140215512506976": {"type": "Function", "typeVars": [".-1.140215512506976"], "argTypes": [{"nodeId": ".-1.140215512506976"}, {"nodeId": "140215567759536", "args": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}]}], "returnType": {"nodeId": ".-1.140215512506976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215512506976": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512506976", "variance": "INVARIANT"}, "140215512507424": {"type": "Function", "typeVars": [".-1.140215512507424"], "argTypes": [{"nodeId": ".-1.140215512507424"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215462797024"}]}], "returnType": {"nodeId": ".-1.140215512507424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215512507424": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215512507424", "variance": "INVARIANT"}, "140215462797024": {"type": "Tuple", "items": [{"nodeId": ".1.140215474814112"}, {"nodeId": ".1.140215474814112"}]}, "140215466436176": {"type": "Concrete", "module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433628688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433345760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433342400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433343744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433343296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433343520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433342848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433343072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433341952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433342176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433342624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433341728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433341504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433339488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433341280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433340160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433340608"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333424"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}], "isAbstract": false}, "140215433628688": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433345760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462797472"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462797472": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433342400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462797584"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462797584": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433343744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462797696"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462797696": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433343296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462797808"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462797808": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433343520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462797920"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462797920": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433342848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798032"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798032": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433343072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798144"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798144": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433341952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798256"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798256": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433342176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798368"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798368": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433342624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798480"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798480": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433341728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798592"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798592": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433341504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798704"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798704": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433339488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798816"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798816": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433341280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462798928"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462798928": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433340160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462799040"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462799040": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433340608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462799152"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462799152": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215474814448": {"type": "Concrete", "module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433335904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433336128"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504000544"}, "name": "inode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504000992"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504001440"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504001888"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504002336"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504002784"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504003232"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474814448"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215433335904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}], "returnType": {"nodeId": ".1.140215474814448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215474814448": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474814448", "variance": "INVARIANT"}, "140215433336128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}], "returnType": {"nodeId": ".1.140215474814448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215504000544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215504000992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140215504001440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140215504001888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215504002336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215462799600"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140215462799600": {"type": "TypeAlias", "target": {"nodeId": "140215466847344"}}, "140215504002784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215474814448"}]}], "returnType": {"nodeId": ".1.140215474814448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215504003232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215466436848": {"type": "Concrete", "module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433636192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433312768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433311872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433311648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433311424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433311200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433310976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433310752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433310528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433310304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433310080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433309856"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215433636192": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433312768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462799936"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462799936": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433311872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800048"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800048": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433311648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800160"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800160": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433311424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800272"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800272": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433311200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800384"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800384": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433310976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800496"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800496": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433310752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800608"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800608": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433310528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800720"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800720": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433310304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800832"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800832": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433310080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462800944"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462800944": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433309856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462801056"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462801056": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215466437184": {"type": "Concrete", "module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433637872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433309184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433307616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433306944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433306496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433306048"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": false}, "140215433637872": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433309184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462801616"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462801616": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433307616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462801728"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462801728": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433306944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462801840"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462801840": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433306496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462801952"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462801952": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433306048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215462802064"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462802064": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215466437520": {"type": "Concrete", "module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215433641344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433302464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433300448"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215433641344": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433302464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463040096"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463040096": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433300448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463040208"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463040208": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215466437856": {"type": "Concrete", "module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504560736"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504561184"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504561632"}, "name": "close"}], "typeVars": [{"nodeId": ".1.140215466437856"}], "bases": [{"nodeId": "140215567754832", "args": [{"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215466437856"}]}]}, {"nodeId": "140215487457520", "args": [{"nodeId": "140215466437856", "args": [{"nodeId": ".1.140215466437856"}]}]}], "isAbstract": false}, "140215504560736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466437856", "args": [{"nodeId": ".1.140215466437856"}]}], "returnType": {"nodeId": "140215474814448", "args": [{"nodeId": ".1.140215466437856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215466437856": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215466437856", "variance": "INVARIANT"}, "140215504561184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466437856", "args": [{"nodeId": ".1.140215466437856"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140215504561632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466437856", "args": [{"nodeId": ".1.140215466437856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487457520": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500527136"}, "name": "__enter__"}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215415999840"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215487457520"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__enter__", "__exit__"]}, "140215500527136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487457520"}]}], "returnType": {"nodeId": ".1.140215487457520"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140215487457520": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487457520", "variance": "COVARIANT"}, "140215415999840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487457520"}]}, {"nodeId": "140215458505536"}, {"nodeId": "140215458505648"}, {"nodeId": "140215458505760"}], "returnType": {"nodeId": "140215458505872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215458505536": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458505648": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458505760": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215458505872": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215466438192": {"type": "Concrete", "module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504724576"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504725024"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140215483158528"}], "isAbstract": false}, "140215504724576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466438192"}, {"nodeId": "140215483158528"}, {"nodeId": "140215474808736", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}, "140215474808736": {"type": "Concrete", "module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466844432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466842528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466535488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474822320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474822432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215462198432"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479396480"}, "name": "poll"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479396928"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479397376"}, "name": "communicate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479397824"}, "name": "send_signal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479398272"}, "name": "terminate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479398720"}, "name": "kill"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479390656"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479399616"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479400064"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474808736"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466844432": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215466524736": {"type": "Union", "items": [{"nodeId": "140215466526976"}, {"nodeId": "140215567758192", "args": [{"nodeId": "140215466527088"}]}]}, "140215466526976": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215466527088": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215466842528": {"type": "Union", "items": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "N"}]}, ".1.140215474808736": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474808736", "variance": "INVARIANT"}, "140215466535488": {"type": "Union", "items": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "N"}]}, "140215474822320": {"type": "Union", "items": [{"nodeId": "140215488336208", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "N"}]}, "140215474822432": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "A"}]}, "140215462198432": {"type": "Overloaded", "items": [{"nodeId": "140215496293984"}, {"nodeId": "140215496293312"}, {"nodeId": "140215479388864"}, {"nodeId": "140215479389312"}, {"nodeId": "140215479389760"}, {"nodeId": "140215525349120"}]}, "140215496293984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462480912"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462481136"}, {"nodeId": "140215462481360"}, {"nodeId": "140215462481584"}, {"nodeId": "140215462481808"}, {"nodeId": "140215462481920"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462482256"}, {"nodeId": "140215462482480"}, {"nodeId": "140215462482592"}, {"nodeId": "140215462482816"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215462482928"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462483040"}, {"nodeId": "140215462483152"}, {"nodeId": "140215462483264"}, {"nodeId": "140215462483488"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462480912": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462481136": {"type": "Union", "items": [{"nodeId": "140215462481024"}, {"nodeId": "N"}]}, "140215462481024": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462481360": {"type": "Union", "items": [{"nodeId": "140215462481248"}, {"nodeId": "N"}]}, "140215462481248": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215474820976": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140215487333088"}, {"nodeId": "140215488336208", "args": [{"nodeId": "A"}]}]}, "140215462481584": {"type": "Union", "items": [{"nodeId": "140215462481472"}, {"nodeId": "N"}]}, "140215462481472": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462481808": {"type": "Union", "items": [{"nodeId": "140215462481696"}, {"nodeId": "N"}]}, "140215462481696": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462481920": {"type": "Union", "items": [{"nodeId": "140215496286592"}, {"nodeId": "N"}]}, "140215496286592": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462482256": {"type": "Union", "items": [{"nodeId": "140215462482144"}, {"nodeId": "N"}]}, "140215462482144": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462482480": {"type": "Union", "items": [{"nodeId": "140215462482368"}, {"nodeId": "N"}]}, "140215462482368": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215466535824": {"type": "Union", "items": [{"nodeId": "140215567759536", "args": [{"nodeId": "140215488339232"}, {"nodeId": "140215466535376"}]}, {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215466530784"}]}]}, "140215466535376": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215466530784": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462482592": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462482816": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462482928": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462483040": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462483152": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462483264": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462483488": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462483376"}]}, {"nodeId": "N"}]}, "140215462483376": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215496293312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462483600"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462483824"}, {"nodeId": "140215462484048"}, {"nodeId": "140215462484272"}, {"nodeId": "140215462484496"}, {"nodeId": "140215462484608"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462484944"}, {"nodeId": "140215462485168"}, {"nodeId": "140215462485280"}, {"nodeId": "140215462485504"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215462485616"}, {"nodeId": "140215462485728"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462485840"}, {"nodeId": "140215462485952"}, {"nodeId": "140215462486176"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462483600": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462483824": {"type": "Union", "items": [{"nodeId": "140215462483712"}, {"nodeId": "N"}]}, "140215462483712": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462484048": {"type": "Union", "items": [{"nodeId": "140215462483936"}, {"nodeId": "N"}]}, "140215462483936": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462484272": {"type": "Union", "items": [{"nodeId": "140215462484160"}, {"nodeId": "N"}]}, "140215462484160": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462484496": {"type": "Union", "items": [{"nodeId": "140215462484384"}, {"nodeId": "N"}]}, "140215462484384": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462484608": {"type": "Union", "items": [{"nodeId": "140215496287488"}, {"nodeId": "N"}]}, "140215496287488": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462484944": {"type": "Union", "items": [{"nodeId": "140215462484832"}, {"nodeId": "N"}]}, "140215462484832": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462485168": {"type": "Union", "items": [{"nodeId": "140215462485056"}, {"nodeId": "N"}]}, "140215462485056": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215462485280": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462485504": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462485616": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462485728": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462485840": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462485952": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462486176": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462486064"}]}, {"nodeId": "N"}]}, "140215462486064": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215479388864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462486288"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462486512"}, {"nodeId": "140215462486736"}, {"nodeId": "140215462486960"}, {"nodeId": "140215462487184"}, {"nodeId": "140215462487296"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462487632"}, {"nodeId": "140215462487856"}, {"nodeId": "0"}, {"nodeId": "140215462488192"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215462488304"}, {"nodeId": "140215462488416"}, {"nodeId": "140215462488528"}, {"nodeId": "140215462488640"}, {"nodeId": "140215462488752"}, {"nodeId": "140215462488976"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462486288": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462486512": {"type": "Union", "items": [{"nodeId": "140215462486400"}, {"nodeId": "N"}]}, "140215462486400": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462486736": {"type": "Union", "items": [{"nodeId": "140215462486624"}, {"nodeId": "N"}]}, "140215462486624": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462486960": {"type": "Union", "items": [{"nodeId": "140215462486848"}, {"nodeId": "N"}]}, "140215462486848": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462487184": {"type": "Union", "items": [{"nodeId": "140215462487072"}, {"nodeId": "N"}]}, "140215462487072": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462487296": {"type": "Union", "items": [{"nodeId": "140215525350240"}, {"nodeId": "N"}]}, "140215525350240": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462487632": {"type": "Union", "items": [{"nodeId": "140215462487520"}, {"nodeId": "N"}]}, "140215462487520": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462487856": {"type": "Union", "items": [{"nodeId": "140215462487744"}, {"nodeId": "N"}]}, "140215462487744": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215462488192": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462488304": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462488416": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462488528": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462488640": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462488752": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462488976": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462488864"}]}, {"nodeId": "N"}]}, "140215462488864": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215479389312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215462489088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462489312"}, {"nodeId": "140215462489536"}, {"nodeId": "140215462489760"}, {"nodeId": "140215462489984"}, {"nodeId": "140215462490096"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462490432"}, {"nodeId": "140215462490656"}, {"nodeId": "140215462490768"}, {"nodeId": "140215462490992"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "0"}, {"nodeId": "140215462491216"}, {"nodeId": "140215462491328"}, {"nodeId": "140215462491440"}, {"nodeId": "140215462491552"}, {"nodeId": "140215462491776"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462489088": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462489312": {"type": "Union", "items": [{"nodeId": "140215462489200"}, {"nodeId": "N"}]}, "140215462489200": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462489536": {"type": "Union", "items": [{"nodeId": "140215462489424"}, {"nodeId": "N"}]}, "140215462489424": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462489760": {"type": "Union", "items": [{"nodeId": "140215462489648"}, {"nodeId": "N"}]}, "140215462489648": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462489984": {"type": "Union", "items": [{"nodeId": "140215462489872"}, {"nodeId": "N"}]}, "140215462489872": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462490096": {"type": "Union", "items": [{"nodeId": "140215525350464"}, {"nodeId": "N"}]}, "140215525350464": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462490432": {"type": "Union", "items": [{"nodeId": "140215462490320"}, {"nodeId": "N"}]}, "140215462490320": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462490656": {"type": "Union", "items": [{"nodeId": "140215462490544"}, {"nodeId": "N"}]}, "140215462490544": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215462490768": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462490992": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462491216": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462491328": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462491440": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462491552": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462491776": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462491664"}]}, {"nodeId": "N"}]}, "140215462491664": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215479389760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462491888"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462492112"}, {"nodeId": "140215462492336"}, {"nodeId": "140215462492560"}, {"nodeId": "140215462492784"}, {"nodeId": "140215462492896"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462493232"}, {"nodeId": "140215462493456"}, {"nodeId": "140215462493680"}, {"nodeId": "140215462493904"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215462543424"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140215462543536"}, {"nodeId": "140215462543648"}, {"nodeId": "140215462543872"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462491888": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462492112": {"type": "Union", "items": [{"nodeId": "140215462492000"}, {"nodeId": "N"}]}, "140215462492000": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462492336": {"type": "Union", "items": [{"nodeId": "140215462492224"}, {"nodeId": "N"}]}, "140215462492224": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462492560": {"type": "Union", "items": [{"nodeId": "140215462492448"}, {"nodeId": "N"}]}, "140215462492448": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462492784": {"type": "Union", "items": [{"nodeId": "140215462492672"}, {"nodeId": "N"}]}, "140215462492672": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462492896": {"type": "Union", "items": [{"nodeId": "140215525348896"}, {"nodeId": "N"}]}, "140215525348896": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462493232": {"type": "Union", "items": [{"nodeId": "140215462493120"}, {"nodeId": "N"}]}, "140215462493120": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462493456": {"type": "Union", "items": [{"nodeId": "140215462493344"}, {"nodeId": "N"}]}, "140215462493344": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215462493680": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215462493904": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462543424": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140215462543536": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462543648": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462543872": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462543760"}]}, {"nodeId": "N"}]}, "140215462543760": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215525349120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": "A"}]}, {"nodeId": "140215462544096"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462544320"}, {"nodeId": "140215462544544"}, {"nodeId": "140215462544768"}, {"nodeId": "140215462544992"}, {"nodeId": "140215462545104"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462545440"}, {"nodeId": "140215462545664"}, {"nodeId": "140215462545776"}, {"nodeId": "140215462546000"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567757856", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215462546112"}, {"nodeId": "140215462546224"}, {"nodeId": "140215462546336"}, {"nodeId": "140215462546448"}, {"nodeId": "140215462546560"}, {"nodeId": "140215462546784"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "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"]}, "140215462544096": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462544320": {"type": "Union", "items": [{"nodeId": "140215462544208"}, {"nodeId": "N"}]}, "140215462544208": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462544544": {"type": "Union", "items": [{"nodeId": "140215462544432"}, {"nodeId": "N"}]}, "140215462544432": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462544768": {"type": "Union", "items": [{"nodeId": "140215462544656"}, {"nodeId": "N"}]}, "140215462544656": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462544992": {"type": "Union", "items": [{"nodeId": "140215462544880"}, {"nodeId": "N"}]}, "140215462544880": {"type": "TypeAlias", "target": {"nodeId": "140215474820976"}}, "140215462545104": {"type": "Union", "items": [{"nodeId": "140215496293536"}, {"nodeId": "N"}]}, "140215496293536": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140215462545440": {"type": "Union", "items": [{"nodeId": "140215462545328"}, {"nodeId": "N"}]}, "140215462545328": {"type": "TypeAlias", "target": {"nodeId": "140215484112272"}}, "140215462545664": {"type": "Union", "items": [{"nodeId": "140215462545552"}, {"nodeId": "N"}]}, "140215462545552": {"type": "TypeAlias", "target": {"nodeId": "140215466535824"}}, "140215462545776": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462546000": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140215462546112": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215462546224": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462546336": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215462546448": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462546560": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462546784": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215462546672"}]}, {"nodeId": "N"}]}, "140215462546672": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215479396480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}], "returnType": {"nodeId": "140215462546896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462546896": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215479396928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "140215462547008"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140215462547008": {"type": "Union", "items": [{"nodeId": "140215487333424"}, {"nodeId": "N"}]}, "140215479397376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "140215462547120"}, {"nodeId": "140215462547232"}], "returnType": {"nodeId": "140215462547456"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}, "140215462547120": {"type": "Union", "items": [{"nodeId": ".1.140215474808736"}, {"nodeId": "N"}]}, "140215462547232": {"type": "Union", "items": [{"nodeId": "140215487333424"}, {"nodeId": "N"}]}, "140215462547456": {"type": "Tuple", "items": [{"nodeId": ".1.140215474808736"}, {"nodeId": ".1.140215474808736"}]}, "140215479397824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}, "140215479398272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479398720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479390656": {"type": "Function", "typeVars": [".-1.140215479390656"], "argTypes": [{"nodeId": ".-1.140215479390656"}], "returnType": {"nodeId": ".-1.140215479390656"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215479390656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479390656", "variance": "INVARIANT"}, "140215479399616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808736", "args": [{"nodeId": ".1.140215474808736"}]}, {"nodeId": "140215462547568"}, {"nodeId": "140215462547680"}, {"nodeId": "140215462547792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215462547568": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215462547680": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215462547792": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215479400064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215504725024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466438192"}], "returnType": {"nodeId": "140215463135712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463135712": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215466438528": {"type": "Concrete", "module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215428686320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433257792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433256672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433256896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433016288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433009568"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333424"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333424"}]}], "isAbstract": false}, "140215428686320": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433257792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463137280"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463137280": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433256672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463136720"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463136720": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433256896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463137056"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463137056": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433016288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463137392"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463137392": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215433009568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463137504"}], "returnType": {"nodeId": "140215487333424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463137504": {"type": "Tuple", "items": [{"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}, {"nodeId": "140215487333424"}]}, "140215466438864": {"type": "Concrete", "module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215428688560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433466976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433468096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433468320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433468544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433468768"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215428688560": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215433466976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463138960"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463138960": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433468096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463139296"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463139296": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433468320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463139632"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463139632": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433468544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463139744"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463139744": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215433468768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463139856"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463139856": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215466439200": {"type": "Concrete", "module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215428690352"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215504841504"}, "name": "__new__"}, {"kind": "Variable", "name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215433470112"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215475468464", "args": [{"nodeId": "140215487333088"}]}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215428690352": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}]}, "140215504841504": {"type": "Function", "typeVars": [".-1.140215504841504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215504841504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}, ".-1.140215504841504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215504841504", "variance": "INVARIANT"}, "140215433470112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215463143440"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215463143440": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}]}, "140215466435840": {"type": "Concrete", "module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215483168944"}], "isAbstract": false}, "140215483168944": {"type": "Concrete", "module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496663424"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496663872"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496664320"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496664768"}, "name": "__xor__"}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420390080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420390976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420391872"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215487333088"}, {"nodeId": "140215483168608"}], "isAbstract": false}, "140215496663424": {"type": "Function", "typeVars": [".-1.140215496663424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215496663424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140215496663424": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496663424", "variance": "INVARIANT"}, "140215496663872": {"type": "Function", "typeVars": [".-1.140215496663872"], "argTypes": [{"nodeId": ".-1.140215496663872"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215496663872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496663872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496663872", "variance": "INVARIANT"}, "140215496664320": {"type": "Function", "typeVars": [".-1.140215496664320"], "argTypes": [{"nodeId": ".-1.140215496664320"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215496664320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496664320": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496664320", "variance": "INVARIANT"}, "140215496664768": {"type": "Function", "typeVars": [".-1.140215496664768"], "argTypes": [{"nodeId": ".-1.140215496664768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215496664768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496664768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496664768", "variance": "INVARIANT"}, "140215420390080": {"type": "Function", "typeVars": [".-1.140215420390080"], "argTypes": [{"nodeId": ".-1.140215420390080"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420390080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215420390080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420390080", "variance": "INVARIANT"}, "140215420390976": {"type": "Function", "typeVars": [".-1.140215420390976"], "argTypes": [{"nodeId": ".-1.140215420390976"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420390976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215420390976": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420390976", "variance": "INVARIANT"}, "140215420391872": {"type": "Function", "typeVars": [".-1.140215420391872"], "argTypes": [{"nodeId": ".-1.140215420391872"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215420391872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215420391872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420391872", "variance": "INVARIANT"}, "140215483168608": {"type": "Concrete", "module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479590960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420236096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420236992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496658048"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496658496"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496658944"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496659392"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496659840"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496660288"}, "name": "__invert__"}], "typeVars": [], "bases": [{"nodeId": "140215483167936"}], "isAbstract": false}, "140215479590960": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215420236096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483168608"}], "returnType": {"nodeId": "140215458288624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458288624": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215420236992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483168608"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496658048": {"type": "Function", "typeVars": [".-1.140215496658048"], "argTypes": [{"nodeId": ".-1.140215496658048"}, {"nodeId": ".-1.140215496658048"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496658048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496658048", "variance": "INVARIANT"}, "140215496658496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483168608"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496658944": {"type": "Function", "typeVars": [".-1.140215496658944"], "argTypes": [{"nodeId": ".-1.140215496658944"}, {"nodeId": ".-1.140215496658944"}], "returnType": {"nodeId": ".-1.140215496658944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496658944": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496658944", "variance": "INVARIANT"}, "140215496659392": {"type": "Function", "typeVars": [".-1.140215496659392"], "argTypes": [{"nodeId": ".-1.140215496659392"}, {"nodeId": ".-1.140215496659392"}], "returnType": {"nodeId": ".-1.140215496659392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496659392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496659392", "variance": "INVARIANT"}, "140215496659840": {"type": "Function", "typeVars": [".-1.140215496659840"], "argTypes": [{"nodeId": ".-1.140215496659840"}, {"nodeId": ".-1.140215496659840"}], "returnType": {"nodeId": ".-1.140215496659840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215496659840": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496659840", "variance": "INVARIANT"}, "140215496660288": {"type": "Function", "typeVars": [".-1.140215496660288"], "argTypes": [{"nodeId": ".-1.140215496660288"}], "returnType": {"nodeId": ".-1.140215496660288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215496660288": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496660288", "variance": "INVARIANT"}, "140215483167936": {"type": "Concrete", "module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420231392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420232064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479591296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420232288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420232512"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479924800"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479925248"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479925696"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479926144"}, "name": "__reduce_ex__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215420231392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167936"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215420232064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479591296": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}]}, "140215420232288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, "140215420232512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}, "140215479924800": {"type": "Function", "typeVars": [".-1.140215479924800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": ".-1.140215479924800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140215479924800": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479924800", "variance": "INVARIANT"}, "140215479925248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167936"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479925696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167936"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}, "140215479926144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167936"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}, "140215479708224": {"type": "Concrete", "module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479707888"}], "isAbstract": false}, "140215466722016": {"type": "Concrete", "module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513101056"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513101504"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513101952"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513102400"}, "name": "LoadLibrary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513102848"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215466722016"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215513101056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722016", "args": [{"nodeId": ".1.140215466722016"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}, ".1.140215466722016": {"type": "TypeVar", "varName": "_DLLT", "values": [], "upperBound": {"nodeId": "140215479707888"}, "def": "140215466722016", "variance": "INVARIANT"}, "140215513101504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722016", "args": [{"nodeId": ".1.140215466722016"}]}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".1.140215466722016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513101952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722016", "args": [{"nodeId": ".1.140215466722016"}]}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".1.140215466722016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513102400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722016", "args": [{"nodeId": ".1.140215466722016"}]}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".1.140215466722016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140215513102848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215479708560": {"type": "Concrete", "module": "ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513103296"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513103744"}, "name": "__rmul__"}], "typeVars": [], "bases": [{"nodeId": "140215487332416"}], "isAbstract": false}, "140215513103296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215513103744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215479710576": {"type": "Concrete", "module": "ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215479711584": {"type": "Concrete", "module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215479711920": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500196544"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215488339232"}]}], "isAbstract": false}, "140215500196544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479711920"}, {"nodeId": "140215458503072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140215458503072": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}]}, "140215479712256": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500196992"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215479709568"}, {"nodeId": "140215479711248", "args": [{"nodeId": "140215466650400"}]}], "isAbstract": false}, "140215500196992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479712256"}, {"nodeId": "140215458503184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140215458503184": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215466650400": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215479712592": {"type": "Concrete", "module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333424"}]}], "isAbstract": false}, "140215479712928": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333424"}]}], "isAbstract": false}, "140215479713264": {"type": "Concrete", "module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333424"}]}], "isAbstract": false}, "140215487447440": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487447776": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487448112": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487448448": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487448784": {"type": "Concrete", "module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487449120": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487449456": {"type": "Concrete", "module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487449792": {"type": "Concrete", "module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487450128": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487450464": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487450800": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487451136": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487451472": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487451808": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487452144": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487452480": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487452816": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487453152": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487333088"}]}], "isAbstract": false}, "140215487453488": {"type": "Concrete", "module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479709568"}, {"nodeId": "140215479711248", "args": [{"nodeId": "140215466651296"}]}], "isAbstract": false}, "140215466651296": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215487453824": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215487334768"}]}], "isAbstract": false}, "140215487454160": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500197440"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215479709568"}, {"nodeId": "140215479711248", "args": [{"nodeId": "140215466650624"}]}], "isAbstract": false}, "140215500197440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487454160"}, {"nodeId": "140215458503296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140215458503296": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215466650624": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215487454496": {"type": "Concrete", "module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500197888"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215479711248", "args": [{"nodeId": "140215567750800"}]}], "isAbstract": false}, "140215500197888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487454496"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140215487454832": {"type": "Concrete", "module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.140215487454832"}], "bases": [{"nodeId": "140215479709232"}, {"nodeId": "140215479711248", "args": [{"nodeId": ".1.140215487454832"}]}], "isAbstract": false}, ".1.140215487454832": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487454832", "variance": "INVARIANT"}, "140215487455168": {"type": "Concrete", "module": "ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487455504": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567758192", "args": [{"nodeId": "140215479142992"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567758192", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500198336"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215479708560"}], "isAbstract": false}, "140215479142992": {"type": "Union", "items": [{"nodeId": "140215479144560"}, {"nodeId": "140215479142880"}]}, "140215479144560": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "0"}]}, "140215479142880": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "0"}, {"nodeId": "140215487333088"}]}, "140215500198336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487455504"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487455168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215487455840": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500198784"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500199232"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500199680"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "140215479708896"}], "isAbstract": false}, "140215500198784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487455840"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}, "140215500199232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487455840"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215500199680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487455840"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215487456176": {"type": "Concrete", "module": "ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487455840"}], "isAbstract": false}, "140215487456512": {"type": "Concrete", "module": "ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487455840"}], "isAbstract": false}, "140215487456848": {"type": "Concrete", "module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487456512"}], "isAbstract": false}, "140215487457184": {"type": "Concrete", "module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487456512"}], "isAbstract": false}, "140215466722688": {"type": "Concrete", "module": "ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458502176"}, "items": [{"kind": "Variable", "name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215421013344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_length_"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458502288"}, "items": [{"kind": "Variable", "name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215421013792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_type_"}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488339232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500201920"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458503856"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458503968"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500204160"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500204608"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500205056"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215466722688"}], "bases": [{"nodeId": "140215479708896"}], "isAbstract": true}, "140215458502176": {"type": "Overloaded", "items": [{"nodeId": "140215500200128"}]}, "140215500200128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215466722688": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140215479708896"}, "def": "140215466722688", "variance": "INVARIANT"}, "140215421013344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458502288": {"type": "Overloaded", "items": [{"nodeId": "140215500201024"}]}, "140215500201024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215421013792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500201920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140215458503856": {"type": "Overloaded", "items": [{"nodeId": "140215500202368"}, {"nodeId": "140215500202816"}]}, "140215500202368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215500202816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}, {"nodeId": "140215487335440"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215458503968": {"type": "Overloaded", "items": [{"nodeId": "140215500203264"}, {"nodeId": "140215500203712"}]}, "140215500203264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}, {"nodeId": "140215487333088"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215500203712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}, {"nodeId": "140215487335440"}, {"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215500204160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215500204608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466722688", "args": [{"nodeId": ".1.140215466722688"}]}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215500205056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215474811760": {"type": "Protocol", "module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513228544"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513228992"}, "name": "readline"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["read", "readline"]}, "140215513228544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811760"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215513228992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474811760"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474812432": {"type": "Concrete", "module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215474812768": {"type": "Concrete", "module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215474812432"}], "isAbstract": false}, "140215474813104": {"type": "Concrete", "module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215474812432"}], "isAbstract": false}, "140215474813440": {"type": "Concrete", "module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567759536", "args": [{"nodeId": "140215487332416"}, {"nodeId": "140215487717984"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487332416"}, {"nodeId": "140215479012256"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513234368"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215513234816"}, "name": "reducer_override"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500521984"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500522432"}, "name": "clear_memo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500522880"}, "name": "persistent_id"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487717984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "140215475192768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475192768": {"type": "TypeAlias", "target": {"nodeId": "140215475198704"}}, "140215475198704": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215475195904"}, {"nodeId": "140215475196576"}, {"nodeId": "140215475197472"}, {"nodeId": "140215475198592"}]}, "140215475195904": {"type": "Tuple", "items": [{"nodeId": "140215487709696"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}]}, "140215487709696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215475196576": {"type": "Tuple", "items": [{"nodeId": "140215487712608"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}, "140215487712608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215475197472": {"type": "Tuple", "items": [{"nodeId": "140215487712384"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140215475197360"}]}, "140215487712384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215475197360": {"type": "Union", "items": [{"nodeId": "140215567754832", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215475198592": {"type": "Tuple", "items": [{"nodeId": "140215487717536"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140215475198256"}, {"nodeId": "140215475198480"}]}, "140215487717536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215475198256": {"type": "Union", "items": [{"nodeId": "140215567754832", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215475198480": {"type": "Union", "items": [{"nodeId": "140215567754832", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215479012256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215474813776": {"type": "Concrete", "module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487333088"}, {"nodeId": "140215487718432"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500523328"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500524224"}, "name": "load"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500524672"}, "name": "find_class"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500525120"}, "name": "persistent_load"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215487718432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215500523328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}, {"nodeId": "140215474811760"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462789744"}], "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"]}, "140215462789744": {"type": "Union", "items": [{"nodeId": "140215567754496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140215500524224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500524672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215500525120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813776"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}, "140215513234368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813440"}, {"nodeId": "140215475468128", "args": [{"nodeId": "140215488339232"}]}, {"nodeId": "140215462674016"}, {"nodeId": "140215567750800"}, {"nodeId": "140215462674128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}, "140215462674016": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215462674128": {"type": "TypeAlias", "target": {"nodeId": "140215474826912"}}, "140215474826912": {"type": "Union", "items": [{"nodeId": "140215491835072"}, {"nodeId": "N"}]}, "140215491835072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474812096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215513234816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813440"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140215500521984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215500522432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500522880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474813440"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140215487457856": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215457970912"}, "name": "__aenter__"}, {"kind": "Variable", "name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215415997376"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140215487457856"}], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__aenter__", "__aexit__"]}, "140215457970912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487457856", "args": [{"nodeId": ".1.140215487457856"}]}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215487457856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140215487457856": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487457856", "variance": "COVARIANT"}, "140215415997376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487457856", "args": [{"nodeId": ".1.140215487457856"}]}, {"nodeId": "140215458506096"}, {"nodeId": "140215458506208"}, {"nodeId": "140215458506320"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140215458506432"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140215458506096": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458506208": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458506320": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215458506432": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215487458192": {"type": "Concrete", "module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500528928"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215500528928": {"type": "Function", "typeVars": [".-1.140215500528928"], "argTypes": [{"nodeId": "140215487458192"}, {"nodeId": ".-1.140215500528928"}], "returnType": {"nodeId": ".-1.140215500528928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140215500528928": {"type": "TypeVar", "varName": "_F", "values": [], "upperBound": {"nodeId": "140215483462624"}, "def": "140215500528928", "variance": "INVARIANT"}, "140215483462624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215487458528": {"type": "Concrete", "module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500529376"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215487458528"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215483462176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500529824"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140215487458528"}], "bases": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487458528"}]}, {"nodeId": "140215487458192"}], "isAbstract": false}, "140215500529376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487458528", "args": [{"nodeId": ".1.140215487458528"}]}, {"nodeId": "140215457970688"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140215487458528": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487458528", "variance": "COVARIANT"}, "140215457970688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".1.140215487458528"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215483462176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567755504", "args": [{"nodeId": ".1.140215487458528"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215500529824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487458528", "args": [{"nodeId": ".1.140215487458528"}]}, {"nodeId": "140215458506992"}, {"nodeId": "140215458507104"}, {"nodeId": "140215458507216"}], "returnType": {"nodeId": "140215458507328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215458506992": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458507104": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458507216": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215458507328": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215487458864": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500530720"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215500530720": {"type": "Function", "typeVars": [".-1.140215500530720"], "argTypes": [{"nodeId": "140215487458864"}, {"nodeId": ".-1.140215500530720"}], "returnType": {"nodeId": ".-1.140215500530720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140215500530720": {"type": "TypeVar", "varName": "_AF", "values": [], "upperBound": {"nodeId": "140215483461952"}, "def": "140215500530720", "variance": "INVARIANT"}, "140215483461952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215487459200": {"type": "Concrete", "module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500531168"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215487459200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479921888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215457971808"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140215487459200"}], "bases": [{"nodeId": "140215487457856", "args": [{"nodeId": ".1.140215487459200"}]}, {"nodeId": "140215487458864"}], "isAbstract": false}, "140215500531168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487459200", "args": [{"nodeId": ".1.140215487459200"}]}, {"nodeId": "140215458644480"}, {"nodeId": "140215487335776", "args": [{"nodeId": "A"}]}, {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140215487459200": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487459200", "variance": "COVARIANT"}, "140215458644480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567756848", "args": [{"nodeId": ".1.140215487459200"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215479921888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215567757184", "args": [{"nodeId": ".1.140215487459200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140215457971808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487459200", "args": [{"nodeId": ".1.140215487459200"}]}, {"nodeId": "140215458507776"}, {"nodeId": "140215458507888"}, {"nodeId": "140215458508000"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140215458508112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}, "140215458507776": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458507888": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458508000": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215458508112": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215487459536": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500533408"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["close"]}, "140215500533408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487459536"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487459872": {"type": "Concrete", "module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500533856"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500534304"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140215487459872"}], "bases": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487459872"}]}], "isAbstract": false}, "140215500533856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487459872", "args": [{"nodeId": ".1.140215487459872"}]}, {"nodeId": ".1.140215487459872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140215487459872": {"type": "TypeVar", "varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140215487459536"}, "def": "140215487459872", "variance": "INVARIANT"}, "140215500534304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487459872", "args": [{"nodeId": ".1.140215487459872"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140215487460208": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500534752"}, "name": "aclose"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["aclose"]}, "140215500534752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487460208"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": "140215567750464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215487460544": {"type": "Concrete", "module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500535200"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500531616"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140215487460544"}], "bases": [{"nodeId": "140215487457856", "args": [{"nodeId": ".1.140215487460544"}]}], "isAbstract": false}, "140215500535200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487460544", "args": [{"nodeId": ".1.140215487460544"}]}, {"nodeId": ".1.140215487460544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140215487460544": {"type": "TypeVar", "varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140215487460208"}, "def": "140215487460544", "variance": "INVARIANT"}, "140215500531616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487460544", "args": [{"nodeId": ".1.140215487460544"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}, "140215487460880": {"type": "Concrete", "module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500536096"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500536544"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140215487457520", "args": [{"nodeId": "N"}]}], "isAbstract": false}, "140215500536096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487460880"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}, "140215500536544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487460880"}, {"nodeId": "140215458508448"}, {"nodeId": "140215458508560"}, {"nodeId": "140215458508672"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215458508448": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458508560": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458508672": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215487461216": {"type": "Concrete", "module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500536992"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500537440"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140215487461216"}], "bases": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487461216"}]}], "isAbstract": false}, "140215500536992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487461216", "args": [{"nodeId": ".1.140215487461216"}]}, {"nodeId": ".1.140215487461216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}, ".1.140215487461216": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140215479584912"}, "def": "140215487461216", "variance": "INVARIANT"}, "140215479584912": {"type": "Union", "items": [{"nodeId": "140215488336208", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "N"}]}, "140215500537440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487461216", "args": [{"nodeId": ".1.140215487461216"}]}, {"nodeId": "140215458508784"}, {"nodeId": "140215458508896"}, {"nodeId": "140215458509008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215458508784": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458508896": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458509008": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215487461552": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140215487461552"}], "bases": [{"nodeId": "140215487461216", "args": [{"nodeId": ".1.140215487461552"}]}], "isAbstract": false}, ".1.140215487461552": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140215479584912"}, "def": "140215487461552", "variance": "INVARIANT"}, "140215487461888": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140215487461888"}], "bases": [{"nodeId": "140215487461216", "args": [{"nodeId": ".1.140215487461888"}]}], "isAbstract": false}, ".1.140215487461888": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140215479584912"}, "def": "140215487461888", "variance": "INVARIANT"}, "140215487462224": {"type": "Concrete", "module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500800288"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500800736"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500801184"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500535648"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500802080"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500801632"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500802976"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215500800288": {"type": "Function", "typeVars": [".-1.140215500800288"], "argTypes": [{"nodeId": "140215487462224"}, {"nodeId": "140215487457520", "args": [{"nodeId": ".-1.140215500800288"}]}], "returnType": {"nodeId": ".-1.140215500800288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140215500800288": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500800288", "variance": "INVARIANT"}, "140215500800736": {"type": "Function", "typeVars": [".-1.140215500800736"], "argTypes": [{"nodeId": "140215487462224"}, {"nodeId": ".-1.140215500800736"}], "returnType": {"nodeId": ".-1.140215500800736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140215500800736": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140215466651856"}, "def": "140215500800736", "variance": "INVARIANT"}, "140215466651856": {"type": "Union", "items": [{"nodeId": "140215487457520", "args": [{"nodeId": "A"}]}, {"nodeId": "140215466651632"}]}, "140215466651632": {"type": "TypeAlias", "target": {"nodeId": "140215491831712"}}, "140215491831712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479143328"}, {"nodeId": "140215479143440"}, {"nodeId": "140215479143664"}], "returnType": {"nodeId": "140215479143776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215479143328": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215479143440": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215479143664": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215479143776": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215500801184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462224"}, {"nodeId": "140215458645376"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140215458645600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140215458645376": {"type": "Function", "typeVars": [".-2.140215458645376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140215458645376"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458645376": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458645376", "variance": "INVARIANT"}, "140215458645600": {"type": "Function", "typeVars": [".-2.140215458645600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140215458645600"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458645600": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458645600", "variance": "INVARIANT"}, "140215500535648": {"type": "Function", "typeVars": [".-1.140215500535648"], "argTypes": [{"nodeId": ".-1.140215500535648"}], "returnType": {"nodeId": ".-1.140215500535648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215500535648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500535648", "variance": "INVARIANT"}, "140215500802080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500801632": {"type": "Function", "typeVars": [".-1.140215500801632"], "argTypes": [{"nodeId": ".-1.140215500801632"}], "returnType": {"nodeId": ".-1.140215500801632"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215500801632": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500801632", "variance": "INVARIANT"}, "140215500802976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462224"}, {"nodeId": "140215458508336"}, {"nodeId": "140215458509232"}, {"nodeId": "140215458509344"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215458508336": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458509232": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458509344": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215487462560": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500803424"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500802528"}, "name": "enter_async_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500804320"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500804768"}, "name": "push_async_exit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500805216"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500805664"}, "name": "push_async_callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500803872"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500806112"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500807008"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500806560"}, "name": "__aexit__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215500803424": {"type": "Function", "typeVars": [".-1.140215500803424"], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": "140215487457520", "args": [{"nodeId": ".-1.140215500803424"}]}], "returnType": {"nodeId": ".-1.140215500803424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140215500803424": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500803424", "variance": "INVARIANT"}, "140215500802528": {"type": "Function", "typeVars": [".-1.140215500802528"], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": "140215487457856", "args": [{"nodeId": ".-1.140215500802528"}]}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140215500802528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140215500802528": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500802528", "variance": "INVARIANT"}, "140215500804320": {"type": "Function", "typeVars": [".-1.140215500804320"], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": ".-1.140215500804320"}], "returnType": {"nodeId": ".-1.140215500804320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140215500804320": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140215466651856"}, "def": "140215500804320", "variance": "INVARIANT"}, "140215500804768": {"type": "Function", "typeVars": [".-1.140215500804768"], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": ".-1.140215500804768"}], "returnType": {"nodeId": ".-1.140215500804768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140215500804768": {"type": "TypeVar", "varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140215466652864"}, "def": "140215500804768", "variance": "INVARIANT"}, "140215466652864": {"type": "Union", "items": [{"nodeId": "140215487457856", "args": [{"nodeId": "A"}]}, {"nodeId": "140215466653200"}]}, "140215466653200": {"type": "TypeAlias", "target": {"nodeId": "140215491830592"}}, "140215491830592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479140864"}, {"nodeId": "140215484118432"}, {"nodeId": "140215484119776"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": "140215484118208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215479140864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215484118432": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215484119776": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215484118208": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, "140215500805216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": "140215458645152"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140215458646048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140215458645152": {"type": "Function", "typeVars": [".-2.140215458645152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140215458645152"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458645152": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458645152", "variance": "INVARIANT"}, "140215458646048": {"type": "Function", "typeVars": [".-2.140215458646048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140215458646048"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458646048": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458646048", "variance": "INVARIANT"}, "140215500805664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": "140215458645824"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140215458646496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140215458645824": {"type": "Function", "typeVars": [".-2.140215458645824"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".-2.140215458645824"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458645824": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458645824", "variance": "INVARIANT"}, "140215458646496": {"type": "Function", "typeVars": [".-2.140215458646496"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140215567755840", "args": [{"nodeId": ".-2.140215458646496"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140215458646496": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215458646496", "variance": "INVARIANT"}, "140215500803872": {"type": "Function", "typeVars": [".-1.140215500803872"], "argTypes": [{"nodeId": ".-1.140215500803872"}], "returnType": {"nodeId": ".-1.140215500803872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215500803872": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500803872", "variance": "INVARIANT"}, "140215500806112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462560"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500807008": {"type": "Function", "typeVars": [".-1.140215500807008"], "argTypes": [{"nodeId": ".-1.140215500807008"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140215500807008"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215500807008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215500807008", "variance": "INVARIANT"}, "140215500806560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462560"}, {"nodeId": "140215458509904"}, {"nodeId": "140215458510240"}, {"nodeId": "140215458510352"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140215567750800"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140215458509904": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215458510240": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215458510352": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215487462896": {"type": "Concrete", "module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140215487462896"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458509792"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500808800"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500809248"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500808352"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500809696"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140215487462896"}], "bases": [{"nodeId": "140215487457520", "args": [{"nodeId": ".1.140215487462896"}]}, {"nodeId": "140215487457856", "args": [{"nodeId": ".1.140215487462896"}]}], "isAbstract": false}, ".1.140215487462896": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215487462896", "variance": "INVARIANT"}, "140215458509792": {"type": "Overloaded", "items": [{"nodeId": "140215500807456"}, {"nodeId": "140215500807904"}]}, "140215500807456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}, "140215500807904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": ".1.140215487462896"}]}, {"nodeId": ".1.140215487462896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}, "140215500808800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": ".1.140215487462896"}]}], "returnType": {"nodeId": ".1.140215487462896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215500809248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": ".1.140215487462896"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140215500808352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": ".1.140215487462896"}]}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140215487462896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215500809696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487462896", "args": [{"nodeId": ".1.140215487462896"}]}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567756176", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}, "140215475455024": {"type": "Protocol", "module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500814400"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500814848"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500815296"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["close", "seek", "write"]}, "140215500814400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455024"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140215500814848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455024"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215500815296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455024"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215475455360": {"type": "Protocol", "module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215500815744"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495819328"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495819776"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["close", "read", "seek"]}, "140215500815744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455360"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140215495819328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455360"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140215495819776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455360"}], "returnType": {"nodeId": "140215567750464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215466723024": {"type": "Protocol", "module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140215475455024"}, {"nodeId": "140215475455360"}], "protocolMembers": ["close", "read", "seek", "write"]}, "140215475455696": {"type": "Protocol", "module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495820224"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495820224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475455696"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458805264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140215458805264": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215475456032": {"type": "Protocol", "module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495820672"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495820672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475456032"}, {"nodeId": "140215488339232"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458805488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140215458805488": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215475456368": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495821120"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495821120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475456368"}, {"nodeId": "140215475455360"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215466724704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140215466724704": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475455360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495959360"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495959808"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495960256"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495960704"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495961152"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495961600"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495962048"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495962496"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495962944"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495963392"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215475457712"}], "isAbstract": false}, "140215495959360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215475455360"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140215495959808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}, "140215495960256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215453896368"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}, "140215453896368": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215495960704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215453896480"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}, "140215453896480": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215495961152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495961600": {"type": "Function", "typeVars": [".-1.140215495961600"], "argTypes": [{"nodeId": ".-1.140215495961600"}], "returnType": {"nodeId": ".-1.140215495961600"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215495961600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215495961600", "variance": "INVARIANT"}, "140215495962048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215453896592"}, {"nodeId": "140215453896704"}, {"nodeId": "140215453896816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215453896592": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215453896704": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215453896816": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215495962496": {"type": "Function", "typeVars": [".-1.140215495962496"], "argTypes": [{"nodeId": ".-1.140215495962496"}], "returnType": {"nodeId": ".-1.140215495962496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215495962496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215495962496", "variance": "INVARIANT"}, "140215495962944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495963392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724704"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458648736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215458648736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475457712": {"type": "Concrete", "module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495833216"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495833664"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215495833216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475457712"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215453894240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140215453894240": {"type": "Tuple", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215487333088"}]}, "140215495833664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475457712"}, {"nodeId": "140215488339232"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215453894464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140215453894464": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215475456704": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495821568"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495821568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475456704"}, {"nodeId": "140215475455024"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215466724368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140215466724368": {"type": "Concrete", "module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215475455024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495956224"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495956672"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495957120"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495957568"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495958016"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495958464"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495958912"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140215475457712"}], "isAbstract": false}, "140215495956224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}, {"nodeId": "140215475455024"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140215495956672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}, "140215495957120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140215495957568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495958016": {"type": "Function", "typeVars": [".-1.140215495958016"], "argTypes": [{"nodeId": ".-1.140215495958016"}], "returnType": {"nodeId": ".-1.140215495958016"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215495958016": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215495958016", "variance": "INVARIANT"}, "140215495958464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}, {"nodeId": "140215453895808"}, {"nodeId": "140215453895920"}, {"nodeId": "140215453896032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215453895808": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215453895920": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215453896032": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215495958912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724368"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458648064"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140215458648064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215475457040": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495822016"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495822016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475457040"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215475458048"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215475458048": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495834112"}, "name": "__init__"}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215412106944"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495835008"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495950400"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495950848"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": true}, "140215495834112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458048"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215412106944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458048"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140215495835008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495950400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458048"}], "returnType": {"nodeId": "140215453894576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215453894576": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215495950848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458048"}, {"nodeId": "140215453894688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140215453894688": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}]}, "140215475457376": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495822464"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "protocolMembers": ["__call__"]}, "140215495822464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475457376"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215475458384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215466723360": {"type": "Concrete", "module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412139488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412137696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412137920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412136128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412133888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215412135456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495825600"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140215487335776", "args": [{"nodeId": "140215567750464"}]}], "isAbstract": false}, "140215412139488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458805712"}], "returnType": {"nodeId": "140215475455696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458805712": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215412137696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458805824"}], "returnType": {"nodeId": "140215475456032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458805824": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215412137920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458805936"}], "returnType": {"nodeId": "140215475456368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458805936": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215412136128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458806048"}], "returnType": {"nodeId": "140215475456704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458806048": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215412133888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458806160"}], "returnType": {"nodeId": "140215475457040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458806160": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215412135456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215458806272"}], "returnType": {"nodeId": "140215475457376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458806272": {"type": "Tuple", "items": [{"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}]}, "140215495825600": {"type": "Function", "typeVars": [".-1.140215495825600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215458805600"}, {"nodeId": "140215458806384"}, {"nodeId": "140215458806496"}, {"nodeId": "140215458806608"}, {"nodeId": "140215458806720"}, {"nodeId": "140215458806832"}], "returnType": {"nodeId": ".-1.140215495825600"}, "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"]}, "140215458805600": {"type": "Union", "items": [{"nodeId": "140215475456368"}, {"nodeId": "N"}]}, "140215458806384": {"type": "Union", "items": [{"nodeId": "140215475456704"}, {"nodeId": "N"}]}, "140215458806496": {"type": "Union", "items": [{"nodeId": "140215475457040"}, {"nodeId": "N"}]}, "140215458806608": {"type": "Union", "items": [{"nodeId": "140215475457376"}, {"nodeId": "N"}]}, "140215458806720": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458806832": {"type": "Union", "items": [{"nodeId": "140215567750800"}, {"nodeId": "N"}]}, ".-1.140215495825600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215495825600", "variance": "INVARIANT"}, "140215466723696": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495953536"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215412105152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495954432"}, "name": "encode"}], "typeVars": [], "bases": [{"nodeId": "140215475458048"}], "isAbstract": true}, "140215495953536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466723696"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215412105152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466723696"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140215495954432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466723696"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140215466724032": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215488339232"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495954880"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215412104032"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495955776"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140215475458384"}], "isAbstract": true}, "140215495954880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724032"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140215412104032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724032"}, {"nodeId": "140215453895360"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215453895584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140215453895360": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215453895584": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "140215495955776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466724032"}, {"nodeId": "140215453895696"}, {"nodeId": "140215567750800"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140215453895696": {"type": "TypeAlias", "target": {"nodeId": "140215492108560"}}, "140215466725040": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466723024"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495963840"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495964288"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495964736"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495965184"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495965632"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215495966080"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496097856"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496098304"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496098752"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496099200"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496099648"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496100096"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496100544"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496100992"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496101440"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496101888"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496102336"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496102784"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496103232"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496103680"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496104128"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496104576"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140215488336880"}], "isAbstract": false}, "140215495963840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215466723024"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}, "140215495964288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215495964736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215453897152"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215453897152": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215495965184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215453897264"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140215453897264": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215495965632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215495966080": {"type": "Function", "typeVars": [".-1.140215495966080"], "argTypes": [{"nodeId": ".-1.140215495966080"}], "returnType": {"nodeId": ".-1.140215495966080"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215495966080": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215495966080", "variance": "INVARIANT"}, "140215496097856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140215496098304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140215496098752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496099200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140215496099648": {"type": "Function", "typeVars": [".-1.140215496099648"], "argTypes": [{"nodeId": ".-1.140215496099648"}], "returnType": {"nodeId": ".-1.140215496099648"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215496099648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496099648", "variance": "INVARIANT"}, "140215496100096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215453897376"}, {"nodeId": "140215453897488"}, {"nodeId": "140215453897600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215453897376": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215453897488": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215453897600": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215496100544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496100992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496101440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496101888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496102336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496102784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496103232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}, {"nodeId": "140215453897824"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215453897824": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215496103680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496104128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496104576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466725040"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215475458720": {"type": "Concrete", "module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496105024"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496105472"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496105920"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496106368"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496106816"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496107264"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496107712"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496108160"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496108608"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496109056"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496109504"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496109952"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496110400"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496110848"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496111296"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496111744"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496112192"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496112640"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496113088"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496113536"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496196160"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496196608"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140215488336544"}], "isAbstract": false}, "140215496105024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215466723024"}, {"nodeId": "140215475455696"}, {"nodeId": "140215475456032"}, {"nodeId": "140215475456368"}, {"nodeId": "140215475456704"}, {"nodeId": "140215487334768"}], "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"]}, "140215496105472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215496105920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215453897936"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215453897936": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215496106368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215453898048"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215488339232"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140215453898048": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215496106816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496107264": {"type": "Function", "typeVars": [".-1.140215496107264"], "argTypes": [{"nodeId": ".-1.140215496107264"}], "returnType": {"nodeId": ".-1.140215496107264"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215496107264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496107264", "variance": "INVARIANT"}, "140215496107712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215488339232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140215496108160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215488339232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140215496108608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496109056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496109504": {"type": "Function", "typeVars": [".-1.140215496109504"], "argTypes": [{"nodeId": ".-1.140215496109504"}], "returnType": {"nodeId": ".-1.140215496109504"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215496109504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496109504", "variance": "INVARIANT"}, "140215496109952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215453898272"}, {"nodeId": "140215453898384"}, {"nodeId": "140215453898496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140215453898272": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140215453898384": {"type": "Union", "items": [{"nodeId": "140215487340480"}, {"nodeId": "N"}]}, "140215453898496": {"type": "Union", "items": [{"nodeId": "140215474804032"}, {"nodeId": "N"}]}, "140215496110400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140215496110848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496111296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496111744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496112192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496112640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496113088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}, {"nodeId": "140215453898608"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140215453898608": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215496113536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496196160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496196608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475458720"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479698480": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215479698816": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479698480"}], "isAbstract": false}, "140215479699152": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479698816"}], "isAbstract": false}, "140215479699488": {"type": "Concrete", "module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479698816"}], "isAbstract": false}, "140215479699824": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479698480"}, {"nodeId": "140215487347536"}], "isAbstract": false}, "140215479700160": {"type": "Concrete", "module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479698480"}], "isAbstract": false}, "140215479700832": {"type": "Concrete", "module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479701168": {"type": "Concrete", "module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479701504": {"type": "Concrete", "module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479701840": {"type": "Concrete", "module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479702176": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479702512": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479702848": {"type": "Concrete", "module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479703184": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479703520": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479703856": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479704192": {"type": "Concrete", "module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479704528": {"type": "Concrete", "module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479704864": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479700496"}], "isAbstract": false}, "140215479705200": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215479705536": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215479705872": {"type": "Concrete", "module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496208928"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215496208928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479705872"}, {"nodeId": "140215458496688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}, "140215458496688": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215479706208": {"type": "Concrete", "module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215479706544": {"type": "Concrete", "module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215479706880": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140215479704864"}], "isAbstract": false}, "140215483169616": {"type": "Concrete", "module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496280096"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496280544"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496280992"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496281440"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496281888"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140215483169280"}], "isAbstract": false}, "140215496280096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169616"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215458289744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140215458289744": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215496280544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169616"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458289968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215458289968": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215496280992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169616"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458290080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215458290080": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215479698144"}]}, "140215479698144": {"type": "Concrete", "module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215492391680"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215492392128"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215492392576"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215492393024"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215492393472"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215492391680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479698144"}, {"nodeId": "140215458297696"}, {"nodeId": "140215458297808"}, {"nodeId": "140215458297920"}, {"nodeId": "140215458298032"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "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"]}, "140215458297696": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458297808": {"type": "Union", "items": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458297920": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458298032": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215492392128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479698144"}, {"nodeId": "140215458298144"}, {"nodeId": "140215458298256"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}, "140215458298144": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "140215488339568"}, {"nodeId": "140215487334768"}]}, "140215458298256": {"type": "Union", "items": [{"nodeId": "140215479707552"}, {"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215492392576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479698144"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458298368"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}, "140215458298368": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215492393024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479698144"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215492393472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215479698144"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496281440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169616"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215496281888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169616"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215483169952": {"type": "Concrete", "module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479009344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215479707216"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496282336"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496282784"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496283232"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496283680"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496284128"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496284576"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140215483169280"}], "isAbstract": false}, "140215479009344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496282336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215458290192"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}, {"nodeId": "140215567750800"}, {"nodeId": "140215567750800"}, {"nodeId": "140215458290304"}, {"nodeId": "140215567750800"}, {"nodeId": "140215487334768"}, {"nodeId": "140215457965088"}, {"nodeId": "140215479707216"}], "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"]}, "140215458290192": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215458290304": {"type": "Union", "items": [{"nodeId": "140215457964864"}, {"nodeId": "N"}]}, "140215457964864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169280"}], "returnType": {"nodeId": "140215483170288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215457965088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215496282784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215458290528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140215458290528": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215496283232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215458290752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215458290752": {"type": "Tuple", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}]}, "140215496283680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215496284128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215496284576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483169952"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215488339232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140215474807392": {"type": "Concrete", "module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140215474807392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140215474807392"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483455680"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483454336"}, "name": "check_returncode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483454112"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140215474807392"}], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, ".1.140215474807392": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215474807392", "variance": "INVARIANT"}, "140215483455680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474807392", "args": [{"nodeId": ".1.140215474807392"}]}, {"nodeId": "140215462197984"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462198096"}, {"nodeId": "140215462198208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}, "140215462197984": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462198096": {"type": "Union", "items": [{"nodeId": ".1.140215474807392"}, {"nodeId": "N"}]}, "140215462198208": {"type": "Union", "items": [{"nodeId": ".1.140215474807392"}, {"nodeId": "N"}]}, "140215483454336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474807392", "args": [{"nodeId": ".1.140215474807392"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215483454112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140215474805376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140215474807728": {"type": "Concrete", "module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215474808064": {"type": "Concrete", "module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479014720"}, "name": "__init__"}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466840736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466535600"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215474807728"}], "isAbstract": false}, "140215479014720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808064"}, {"nodeId": "140215462480240"}, {"nodeId": "140215487333424"}, {"nodeId": "140215462480352"}, {"nodeId": "140215462480128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}, "140215462480240": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462480352": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215462480128": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215466840736": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215466535600": {"type": "Union", "items": [{"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215474808400": {"type": "Concrete", "module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479015168"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215474807728"}], "isAbstract": false}, "140215479015168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474808400"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462480464"}, {"nodeId": "140215462480576"}, {"nodeId": "140215462480688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}, "140215462480464": {"type": "TypeAlias", "target": {"nodeId": "140215466524736"}}, "140215462480576": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215462480688": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215483167264": {"type": "Concrete", "module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479913600"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479914048"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}], "isAbstract": false}, "140215479913600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479914048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167264"}, {"nodeId": "140215487334768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215483167600": {"type": "Concrete", "module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479915840"}, "name": "__new__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215420226688"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479917632"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479918080"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479918528"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479918976"}, "name": "__getitem__"}, {"kind": "Variable", "name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420226912"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479919872"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479920320"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215479920768"}, "name": "__dir__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140215458119040"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "Variable", "name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215483167936"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "A"}, {"nodeId": "140215483167936"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140215488149008"}], "isAbstract": false}, "140215479915840": {"type": "Function", "typeVars": [".-1.140215479915840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "140215483167264"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140215479915840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}, ".-1.140215479915840": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479915840", "variance": "INVARIANT"}, "140215420226688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487335776", "args": [{"nodeId": "140215487332416"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140215483167264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}, "140215479917632": {"type": "Function", "typeVars": [".-1.140215479917632"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".-1.140215479917632"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215479917632": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479917632", "variance": "INVARIANT"}, "140215479918080": {"type": "Function", "typeVars": [".-1.140215479918080"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140215567754832", "args": [{"nodeId": ".-1.140215479918080"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140215479918080": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479918080", "variance": "INVARIANT"}, "140215479918528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215567750464"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215479918976": {"type": "Function", "typeVars": [".-1.140215479918976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215479918976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140215479918976": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479918976", "variance": "INVARIANT"}, "140215420226912": {"type": "Function", "typeVars": [".-1.140215420226912"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140215474799328", "args": [{"nodeId": "140215487334768"}, {"nodeId": ".-1.140215420226912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140215420226912": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215420226912", "variance": "INVARIANT"}, "140215479919872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167600"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215479920320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215479920768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167600"}], "returnType": {"nodeId": "140215487336112", "args": [{"nodeId": "140215487334768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215458119040": {"type": "Overloaded", "items": [{"nodeId": "140215479921216"}, {"nodeId": "140215479922112"}]}, "140215479921216": {"type": "Function", "typeVars": [".-1.140215479921216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140215479921216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}, ".-1.140215479921216": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215479921216", "variance": "INVARIANT"}, "140215479922112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483167600"}, {"nodeId": "140215487334768"}, {"nodeId": "140215458287504"}, {"nodeId": "140215458287616"}, {"nodeId": "140215458287728"}, {"nodeId": "140215458287840"}, {"nodeId": "140215487333088"}], "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"]}, "140215458287504": {"type": "TypeAlias", "target": {"nodeId": "140215479591184"}}, "140215479591184": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215567754496", "args": [{"nodeId": "140215479592976"}]}]}, {"nodeId": "140215567759536", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}]}, "140215479592976": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "140215458287616": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458287728": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215458287840": {"type": "Union", "items": [{"nodeId": "140215487332416"}, {"nodeId": "N"}]}, "140215483168272": {"type": "Concrete", "module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420234528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496655360"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140215487333088"}, {"nodeId": "140215483167936"}], "isAbstract": false}, "140215420234528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215483168272"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496655360": {"type": "Function", "typeVars": [".-1.140215496655360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": ".-1.140215496655360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140215496655360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496655360", "variance": "INVARIANT"}, "140215466721680": {"type": "Concrete", "module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215420235200"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215496656704"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140215483168944"}], "isAbstract": false}, "140215420235200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215466721680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215496656704": {"type": "Function", "typeVars": [".-1.140215496656704"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140215496656704"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140215496656704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215496656704", "variance": "INVARIANT"}, "140215474810416": {"type": "Concrete", "module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474823440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474825904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483138336"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215474823440": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215474825904": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215483138336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810416"}, {"nodeId": "140215487334768"}, {"nodeId": "140215462551376"}, {"nodeId": "140215462551040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}, "140215462551376": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "140215488339232"}, {"nodeId": "N"}]}, "140215462551040": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215474810752": {"type": "Concrete", "module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483138784"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140215487333088"}], "isAbstract": false}, "140215483138784": {"type": "Function", "typeVars": [".-1.140215483138784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": ".-1.140215483138784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}, ".-1.140215483138784": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140215567750464"}, "def": "140215483138784", "variance": "INVARIANT"}, "140215475468800": {"type": "Concrete", "module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215483141472"}, "name": "size"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215483141472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215475468800"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215474809072": {"type": "Concrete", "module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140215487341824"}], "isAbstract": false}, "140215474809408": {"type": "Concrete", "module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215474821200"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466840176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215442143072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491905792"}, "name": "opengroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491906240"}, "name": "closegroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491906688"}, "name": "checkgroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491907136"}, "name": "checklookbehindgroup"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215474821200": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215466840176": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215442143072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809408"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215491905792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809408"}, {"nodeId": "140215462548576"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140215462548576": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215491906240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809408"}, {"nodeId": "140215487333088"}, {"nodeId": "140215474809744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}, "140215474809744": {"type": "Concrete", "module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336112", "args": [{"nodeId": "140215466844320"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466801664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215474809408"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491907584"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491908480"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491908928"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491909376"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491909824"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491910272"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491910720"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491911168"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491911616"}, "name": "getwidth"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466844320": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215466841968": {"type": "Tuple", "items": [{"nodeId": "140215474810752"}, {"nodeId": "140215466840960"}]}, "140215466840960": {"type": "TypeAlias", "target": {"nodeId": "140215466841520"}}, "140215466841520": {"type": "Union", "items": [{"nodeId": "140215466843536"}, {"nodeId": "140215466844096"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215474809744"}]}, {"nodeId": "140215466841296"}, {"nodeId": "140215466841408"}]}, "140215466843536": {"type": "TypeAlias", "target": {"nodeId": "140215487336112", "args": [{"nodeId": "140215474822992"}]}}, "140215474822992": {"type": "Tuple", "items": [{"nodeId": "140215474810752"}, {"nodeId": "140215487333088"}]}, "140215466844096": {"type": "TypeAlias", "target": {"nodeId": "140215466536944"}}, "140215466536944": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "140215487336112", "args": [{"nodeId": "140215474809744"}]}]}, "140215466841296": {"type": "TypeAlias", "target": {"nodeId": "140215466536832"}}, "140215466536832": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215474809744"}, {"nodeId": "140215474809744"}]}, "140215466841408": {"type": "TypeAlias", "target": {"nodeId": "140215466846000"}}, "140215466846000": {"type": "Tuple", "items": [{"nodeId": "140215474821648"}, {"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}, {"nodeId": "140215474809744"}]}, "140215474821648": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215466801664": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "N"}]}, "140215491907584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215474809408"}, {"nodeId": "140215462548800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}, "140215462548800": {"type": "Union", "items": [{"nodeId": "140215487336112", "args": [{"nodeId": "140215462548688"}]}, {"nodeId": "N"}]}, "140215462548688": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215491908480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}, "140215491908928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140215491909376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215462549136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215462549136": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487335440"}]}, "140215491909824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215462549248"}], "returnType": {"nodeId": "140215462548912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140215462549248": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487335440"}]}, "140215462548912": {"type": "Union", "items": [{"nodeId": "140215474809744"}, {"nodeId": "140215462549360"}]}, "140215462549360": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215491910272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215462549584"}, {"nodeId": "140215462549696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140215462549584": {"type": "Union", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487335440"}]}, "140215462549696": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215491910720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215487333088"}, {"nodeId": "140215462549472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}, "140215462549472": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215491911168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}, {"nodeId": "140215462549808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}, "140215462549808": {"type": "TypeAlias", "target": {"nodeId": "140215466841968"}}, "140215491911616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809744"}], "returnType": {"nodeId": "140215462550032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462550032": {"type": "Tuple", "items": [{"nodeId": "140215487333088"}, {"nodeId": "140215487333088"}]}, "140215491906688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809408"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}, "140215491907136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474809408"}, {"nodeId": "140215487333088"}, {"nodeId": "140215474810080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}, "140215474810080": {"type": "Concrete", "module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215567750800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487333088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215466797184"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491912064"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491912512"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491912960"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491913408"}, "name": "getwhile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491913856"}, "name": "getuntil"}, {"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140215442138368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491915200"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491915648"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140215491916096"}, "name": "error"}], "typeVars": [], "bases": [{"nodeId": "140215567750464"}], "isAbstract": false}, "140215466797184": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215491912064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140215491912512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215567750800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}, "140215491912960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}], "returnType": {"nodeId": "140215462549024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215462549024": {"type": "Union", "items": [{"nodeId": "140215487334768"}, {"nodeId": "N"}]}, "140215491913408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "140215487333088"}, {"nodeId": "140215567754496", "args": [{"nodeId": "140215487334768"}]}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}, "140215491913856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487334768"}], "returnType": {"nodeId": "140215487334768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}, "140215442138368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215491915200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}], "returnType": {"nodeId": "140215487333088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140215491915648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}, "140215491916096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140215474810080"}, {"nodeId": "140215487334768"}, {"nodeId": "140215487333088"}], "returnType": {"nodeId": "140215474810416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}, "140215395202240": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "140215483162896"}, "argKinds": [], "argNames": []}}, "types": {"import_test": [{"startOffset": 105, "endOffset": 134, "line": 6, "type": {"nodeId": "140215395202240"}}]}, "definitions": {"import_test": {"__name__": {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, "__doc__": {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, "__file__": {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, "__package__": {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487334768"}, "isInitializedInClass": false}, "__annotations__": {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140215487336448", "args": [{"nodeId": "140215487334768"}, {"nodeId": "A"}]}, "isInitializedInClass": false}, "A": {"kind": "ClassDef", "type": {"nodeId": "140215466728064"}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "type": {"nodeId": "140215483162560"}}, "BuiltinImporter": {"kind": "ClassDef", "type": {"nodeId": "140215466440544"}}, "FrozenImporter": {"kind": "ClassDef", "type": {"nodeId": "140215466440880"}}, "WindowsRegistryFinder": {"kind": "ClassDef", "type": {"nodeId": "140215466441216"}}, "PathFinder": {"kind": "ClassDef", "type": {"nodeId": "140215483162896"}}, "FileFinder": {"kind": "ClassDef", "type": {"nodeId": "140215466441552"}}, "SourceFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140215466441888"}}, "SourcelessFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140215466442224"}}, "ExtensionFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140215466721344"}}}, "importlib": {"Loader": {"kind": "ClassDef", "type": {"nodeId": "140215483163568"}}}, "collections": {"UserDict": {"kind": "ClassDef", "type": {"nodeId": "140215488342256"}}, "UserList": {"kind": "ClassDef", "type": {"nodeId": "140215488342592"}}, "UserString": {"kind": "ClassDef", "type": {"nodeId": "140215488342928"}}, "deque": {"kind": "ClassDef", "type": {"nodeId": "140215488343264"}}, "Counter": {"kind": "ClassDef", "type": {"nodeId": "140215488150688"}}, "_OrderedDictKeysView": {"kind": "ClassDef", "type": {"nodeId": "140215475454016"}}, "_OrderedDictItemsView": {"kind": "ClassDef", "type": {"nodeId": "140215475454352"}}, "_OrderedDictValuesView": {"kind": "ClassDef", "type": {"nodeId": "140215475454688"}}, "_odict_keys": {"kind": "ClassDef", "type": {"nodeId": "140215488343600"}}, "_odict_items": {"kind": "ClassDef", "type": {"nodeId": "140215488343936"}}, "_odict_values": {"kind": "ClassDef", "type": {"nodeId": "140215488344272"}}, "OrderedDict": {"kind": "ClassDef", "type": {"nodeId": "140215488344608"}}, "defaultdict": {"kind": "ClassDef", "type": {"nodeId": "140215488151024"}}, "ChainMap": {"kind": "ClassDef", "type": {"nodeId": "140215488344944"}}}, "builtins": {"object": {"kind": "ClassDef", "type": {"nodeId": "140215567750464"}}, "bool": {"kind": "ClassDef", "type": {"nodeId": "140215567750800"}}, "function": {"kind": "ClassDef", "type": {"nodeId": "140215567751136"}}, "staticmethod": {"kind": "ClassDef", "type": {"nodeId": "140215567760544"}}, "classmethod": {"kind": "ClassDef", "type": {"nodeId": "140215567760880"}}, "type": {"kind": "ClassDef", "type": {"nodeId": "140215487332416"}}, "super": {"kind": "ClassDef", "type": {"nodeId": "140215487332752"}}, "int": {"kind": "ClassDef", "type": {"nodeId": "140215487333088"}}, "float": {"kind": "ClassDef", "type": {"nodeId": "140215487333424"}}, "complex": {"kind": "ClassDef", "type": {"nodeId": "140215487333760"}}, "_FormatMapMapping": {"kind": "ClassDef", "type": {"nodeId": "140215487334096"}}, "_TranslateTable": {"kind": "ClassDef", "type": {"nodeId": "140215487334432"}}, "str": {"kind": "ClassDef", "type": {"nodeId": "140215487334768"}}, "bytes": {"kind": "ClassDef", "type": {"nodeId": "140215488339232"}}, "bytearray": {"kind": "ClassDef", "type": {"nodeId": "140215488339568"}}, "memoryview": {"kind": "ClassDef", "type": {"nodeId": "140215487335104"}}, "slice": {"kind": "ClassDef", "type": {"nodeId": "140215487335440"}}, "tuple": {"kind": "ClassDef", "type": {"nodeId": "140215487335776"}}, "list": {"kind": "ClassDef", "type": {"nodeId": "140215487336112"}}, "dict": {"kind": "ClassDef", "type": {"nodeId": "140215487336448"}}, "set": {"kind": "ClassDef", "type": {"nodeId": "140215488339904"}}, "frozenset": {"kind": "ClassDef", "type": {"nodeId": "140215488340240"}}, "enumerate": {"kind": "ClassDef", "type": {"nodeId": "140215488340576"}}, "range": {"kind": "ClassDef", "type": {"nodeId": "140215487336784"}}, "property": {"kind": "ClassDef", "type": {"nodeId": "140215487337120"}}, "_NotImplementedType": {"kind": "ClassDef", "type": {"nodeId": "140215487337456"}}, "_PathLike": {"kind": "ClassDef", "type": {"nodeId": "140215466432816"}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "type": {"nodeId": "140215487337792"}}, "filter": {"kind": "ClassDef", "type": {"nodeId": "140215488340912"}}, "_GetItemIterable": {"kind": "ClassDef", "type": {"nodeId": "140215487338128"}}, "map": {"kind": "ClassDef", "type": {"nodeId": "140215488341248"}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "type": {"nodeId": "140215466433152"}}, "_SupportsPow2": {"kind": "ClassDef", "type": {"nodeId": "140215487338464"}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "type": {"nodeId": "140215487338800"}}, "_SupportsPow3": {"kind": "ClassDef", "type": {"nodeId": "140215487339136"}}, "reversed": {"kind": "ClassDef", "type": {"nodeId": "140215488341584"}}, "_SupportsRound1": {"kind": "ClassDef", "type": {"nodeId": "140215487339472"}}, "_SupportsRound2": {"kind": "ClassDef", "type": {"nodeId": "140215487339808"}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "type": {"nodeId": "140215466433488"}}, "zip": {"kind": "ClassDef", "type": {"nodeId": "140215488341920"}}, "ellipsis": {"kind": "ClassDef", "type": {"nodeId": "140215487340144"}}, "BaseException": {"kind": "ClassDef", "type": {"nodeId": "140215487340480"}}, "GeneratorExit": {"kind": "ClassDef", "type": {"nodeId": "140215487340816"}}, "KeyboardInterrupt": {"kind": "ClassDef", "type": {"nodeId": "140215487341152"}}, "SystemExit": {"kind": "ClassDef", "type": {"nodeId": "140215487341488"}}, "Exception": {"kind": "ClassDef", "type": {"nodeId": "140215487341824"}}, "StopIteration": {"kind": "ClassDef", "type": {"nodeId": "140215487342160"}}, "OSError": {"kind": "ClassDef", "type": {"nodeId": "140215487342496"}}, "ArithmeticError": {"kind": "ClassDef", "type": {"nodeId": "140215487342832"}}, "AssertionError": {"kind": "ClassDef", "type": {"nodeId": "140215487343168"}}, "AttributeError": {"kind": "ClassDef", "type": {"nodeId": "140215487343504"}}, "BufferError": {"kind": "ClassDef", "type": {"nodeId": "140215487343840"}}, "EOFError": {"kind": "ClassDef", "type": {"nodeId": "140215487344176"}}, "ImportError": {"kind": "ClassDef", "type": {"nodeId": "140215487344512"}}, "LookupError": {"kind": "ClassDef", "type": {"nodeId": "140215487344848"}}, "MemoryError": {"kind": "ClassDef", "type": {"nodeId": "140215487345184"}}, "NameError": {"kind": "ClassDef", "type": {"nodeId": "140215487345520"}}, "ReferenceError": {"kind": "ClassDef", "type": {"nodeId": "140215487345856"}}, "RuntimeError": {"kind": "ClassDef", "type": {"nodeId": "140215487346192"}}, "StopAsyncIteration": {"kind": "ClassDef", "type": {"nodeId": "140215487346528"}}, "SyntaxError": {"kind": "ClassDef", "type": {"nodeId": "140215487346864"}}, "SystemError": {"kind": "ClassDef", "type": {"nodeId": "140215487347200"}}, "TypeError": {"kind": "ClassDef", "type": {"nodeId": "140215487347536"}}, "ValueError": {"kind": "ClassDef", "type": {"nodeId": "140215487347872"}}, "FloatingPointError": {"kind": "ClassDef", "type": {"nodeId": "140215487348208"}}, "OverflowError": {"kind": "ClassDef", "type": {"nodeId": "140215488135232"}}, "ZeroDivisionError": {"kind": "ClassDef", "type": {"nodeId": "140215488135568"}}, "ModuleNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140215488135904"}}, "IndexError": {"kind": "ClassDef", "type": {"nodeId": "140215488136240"}}, "KeyError": {"kind": "ClassDef", "type": {"nodeId": "140215488136576"}}, "UnboundLocalError": {"kind": "ClassDef", "type": {"nodeId": "140215488136912"}}, "BlockingIOError": {"kind": "ClassDef", "type": {"nodeId": "140215488137248"}}, "ChildProcessError": {"kind": "ClassDef", "type": {"nodeId": "140215488137584"}}, "ConnectionError": {"kind": "ClassDef", "type": {"nodeId": "140215488137920"}}, "BrokenPipeError": {"kind": "ClassDef", "type": {"nodeId": "140215488138256"}}, "ConnectionAbortedError": {"kind": "ClassDef", "type": {"nodeId": "140215488138592"}}, "ConnectionRefusedError": {"kind": "ClassDef", "type": {"nodeId": "140215488138928"}}, "ConnectionResetError": {"kind": "ClassDef", "type": {"nodeId": "140215488139264"}}, "FileExistsError": {"kind": "ClassDef", "type": {"nodeId": "140215488139600"}}, "FileNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140215488139936"}}, "InterruptedError": {"kind": "ClassDef", "type": {"nodeId": "140215488140272"}}, "IsADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140215488140608"}}, "NotADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140215488140944"}}, "PermissionError": {"kind": "ClassDef", "type": {"nodeId": "140215488141280"}}, "ProcessLookupError": {"kind": "ClassDef", "type": {"nodeId": "140215488141616"}}, "TimeoutError": {"kind": "ClassDef", "type": {"nodeId": "140215488141952"}}, "NotImplementedError": {"kind": "ClassDef", "type": {"nodeId": "140215488142288"}}, "RecursionError": {"kind": "ClassDef", "type": {"nodeId": "140215488142624"}}, "IndentationError": {"kind": "ClassDef", "type": {"nodeId": "140215488142960"}}, "TabError": {"kind": "ClassDef", "type": {"nodeId": "140215488143296"}}, "UnicodeError": {"kind": "ClassDef", "type": {"nodeId": "140215488143632"}}, "UnicodeDecodeError": {"kind": "ClassDef", "type": {"nodeId": "140215488143968"}}, "UnicodeEncodeError": {"kind": "ClassDef", "type": {"nodeId": "140215488144304"}}, "UnicodeTranslateError": {"kind": "ClassDef", "type": {"nodeId": "140215488144640"}}, "Warning": {"kind": "ClassDef", "type": {"nodeId": "140215488144976"}}, "UserWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488145312"}}, "DeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488145648"}}, "SyntaxWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488145984"}}, "RuntimeWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488146320"}}, "FutureWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488146656"}}, "PendingDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488146992"}}, "ImportWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488147328"}}, "UnicodeWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488147664"}}, "BytesWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488148000"}}, "ResourceWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488148336"}}, "EncodingWarning": {"kind": "ClassDef", "type": {"nodeId": "140215488148672"}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "type": {"nodeId": "140215483163232"}}, "Loader": {"kind": "ClassDef", "type": {"nodeId": "140215483163568"}}, "ResourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140215483163904"}}, "InspectLoader": {"kind": "ClassDef", "type": {"nodeId": "140215483164240"}}, "ExecutionLoader": {"kind": "ClassDef", "type": {"nodeId": "140215483164576"}}, "SourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140215483164912"}}, "MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140215483165248"}}, "PathEntryFinder": {"kind": "ClassDef", "type": {"nodeId": "140215483165584"}}, "FileLoader": {"kind": "ClassDef", "type": {"nodeId": "140215483165920"}}, "ResourceReader": {"kind": "ClassDef", "type": {"nodeId": "140215483166256"}}, "Traversable": {"kind": "ClassDef", "type": {"nodeId": "140215483166592"}}, "TraversableResources": {"kind": "ClassDef", "type": {"nodeId": "140215483166928"}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140215483159200"}}, "PackageNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140215483159872"}}, "EntryPoint": {"kind": "ClassDef", "type": {"nodeId": "140215483160544"}}, "EntryPoints": {"kind": "ClassDef", "type": {"nodeId": "140215483160880"}}, "SelectableGroups": {"kind": "ClassDef", "type": {"nodeId": "140215483161216"}}, "PackagePath": {"kind": "ClassDef", "type": {"nodeId": "140215466727728"}}, "FileHash": {"kind": "ClassDef", "type": {"nodeId": "140215483161552"}}, "Distribution": {"kind": "ClassDef", "type": {"nodeId": "140215483161888"}}, "DistributionFinder": {"kind": "ClassDef", "type": {"nodeId": "140215466439536"}}, "MetadataPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140215466440208"}}, "PathDistribution": {"kind": "ClassDef", "type": {"nodeId": "140215483162224"}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140215474806384"}}, "_flags": {"kind": "ClassDef", "type": {"nodeId": "140215466433824"}}, "_float_info": {"kind": "ClassDef", "type": {"nodeId": "140215466434160"}}, "_hash_info": {"kind": "ClassDef", "type": {"nodeId": "140215466434496"}}, "_implementation": {"kind": "ClassDef", "type": {"nodeId": "140215474806720"}}, "_int_info": {"kind": "ClassDef", "type": {"nodeId": "140215466434832"}}, "_version_info": {"kind": "ClassDef", "type": {"nodeId": "140215466435168"}}, "UnraisableHookArgs": {"kind": "ClassDef", "type": {"nodeId": "140215474807056"}}, "_asyncgen_hooks": {"kind": "ClassDef", "type": {"nodeId": "140215466435504"}}}, "types": {"_Cell": {"kind": "ClassDef", "type": {"nodeId": "140215488347632"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140215474798656"}}, "CodeType": {"kind": "ClassDef", "type": {"nodeId": "140215474798992"}}, "MappingProxyType": {"kind": "ClassDef", "type": {"nodeId": "140215474799328"}}, "SimpleNamespace": {"kind": "ClassDef", "type": {"nodeId": "140215474799664"}}, "_LoaderProtocol": {"kind": "ClassDef", "type": {"nodeId": "140215474800000"}}, "ModuleType": {"kind": "ClassDef", "type": {"nodeId": "140215474800336"}}, "GeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140215474800672"}}, "AsyncGeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140215474801008"}}, "CoroutineType": {"kind": "ClassDef", "type": {"nodeId": "140215474801344"}}, "_StaticFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140215474801680"}}, "MethodType": {"kind": "ClassDef", "type": {"nodeId": "140215474802016"}}, "BuiltinFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140215474802352"}}, "WrapperDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140215474802688"}}, "MethodWrapperType": {"kind": "ClassDef", "type": {"nodeId": "140215474803024"}}, "MethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140215474803360"}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140215474803696"}}, "TracebackType": {"kind": "ClassDef", "type": {"nodeId": "140215474804032"}}, "FrameType": {"kind": "ClassDef", "type": {"nodeId": "140215474804368"}}, "GetSetDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140215474804704"}}, "MemberDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140215474805040"}}, "GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "140215474805376"}}, "NoneType": {"kind": "ClassDef", "type": {"nodeId": "140215474805712"}}, "UnionType": {"kind": "ClassDef", "type": {"nodeId": "140215474806048"}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "type": {"nodeId": "140215475459392"}}, "SupportsNext": {"kind": "ClassDef", "type": {"nodeId": "140215475459728"}}, "SupportsAnext": {"kind": "ClassDef", "type": {"nodeId": "140215475460064"}}, "SupportsDunderLT": {"kind": "ClassDef", "type": {"nodeId": "140215475460400"}}, "SupportsDunderGT": {"kind": "ClassDef", "type": {"nodeId": "140215475460736"}}, "SupportsDunderLE": {"kind": "ClassDef", "type": {"nodeId": "140215475461072"}}, "SupportsDunderGE": {"kind": "ClassDef", "type": {"nodeId": "140215475461408"}}, "SupportsAllComparisons": {"kind": "ClassDef", "type": {"nodeId": "140215475461744"}}, "SupportsAdd": {"kind": "ClassDef", "type": {"nodeId": "140215475462080"}}, "SupportsRAdd": {"kind": "ClassDef", "type": {"nodeId": "140215475462416"}}, "SupportsSub": {"kind": "ClassDef", "type": {"nodeId": "140215475462752"}}, "SupportsRSub": {"kind": "ClassDef", "type": {"nodeId": "140215475463088"}}, "SupportsDivMod": {"kind": "ClassDef", "type": {"nodeId": "140215475463424"}}, "SupportsRDivMod": {"kind": "ClassDef", "type": {"nodeId": "140215475463760"}}, "SupportsIter": {"kind": "ClassDef", "type": {"nodeId": "140215475464096"}}, "SupportsAiter": {"kind": "ClassDef", "type": {"nodeId": "140215475464432"}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140215475464768"}}, "SupportsTrunc": {"kind": "ClassDef", "type": {"nodeId": "140215475465104"}}, "SupportsItems": {"kind": "ClassDef", "type": {"nodeId": "140215475465440"}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140215475465776"}}, "SupportsGetItem": {"kind": "ClassDef", "type": {"nodeId": "140215475466112"}}, "SupportsItemAccess": {"kind": "ClassDef", "type": {"nodeId": "140215475466448"}}, "HasFileno": {"kind": "ClassDef", "type": {"nodeId": "140215475466784"}}, "SupportsRead": {"kind": "ClassDef", "type": {"nodeId": "140215475467120"}}, "SupportsReadline": {"kind": "ClassDef", "type": {"nodeId": "140215475467456"}}, "SupportsNoArgReadline": {"kind": "ClassDef", "type": {"nodeId": "140215475467792"}}, "SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140215475468128"}}, "structseq": {"kind": "ClassDef", "type": {"nodeId": "140215475468464"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140215488346960"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140215567751472"}}, "_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140215567751808"}}, "ParamSpecArgs": {"kind": "ClassDef", "type": {"nodeId": "140215567752144"}}, "ParamSpecKwargs": {"kind": "ClassDef", "type": {"nodeId": "140215567752480"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140215567752816"}}, "NewType": {"kind": "ClassDef", "type": {"nodeId": "140215567753152"}}, "_Alias": {"kind": "ClassDef", "type": {"nodeId": "140215567753488"}}, "_ProtocolMeta": {"kind": "ClassDef", "type": {"nodeId": "140215488331840"}}, "SupportsInt": {"kind": "ClassDef", "type": {"nodeId": "140215488332176"}}, "SupportsFloat": {"kind": "ClassDef", "type": {"nodeId": "140215488332512"}}, "SupportsComplex": {"kind": "ClassDef", "type": {"nodeId": "140215488332848"}}, "SupportsBytes": {"kind": "ClassDef", "type": {"nodeId": "140215488333184"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140215488333520"}}, "SupportsAbs": {"kind": "ClassDef", "type": {"nodeId": "140215567753824"}}, "SupportsRound": {"kind": "ClassDef", "type": {"nodeId": "140215567754160"}}, "Sized": {"kind": "ClassDef", "type": {"nodeId": "140215488333856"}}, "Hashable": {"kind": "ClassDef", "type": {"nodeId": "140215488334192"}}, "Iterable": {"kind": "ClassDef", "type": {"nodeId": "140215567754496"}}, "Iterator": {"kind": "ClassDef", "type": {"nodeId": "140215567754832"}}, "Reversible": {"kind": "ClassDef", "type": {"nodeId": "140215567755168"}}, "Generator": {"kind": "ClassDef", "type": {"nodeId": "140215567755504"}}, "Awaitable": {"kind": "ClassDef", "type": {"nodeId": "140215567755840"}}, "Coroutine": {"kind": "ClassDef", "type": {"nodeId": "140215567756176"}}, "AwaitableGenerator": {"kind": "ClassDef", "type": {"nodeId": "140215488334528"}}, "AsyncIterable": {"kind": "ClassDef", "type": {"nodeId": "140215567756512"}}, "AsyncIterator": {"kind": "ClassDef", "type": {"nodeId": "140215567756848"}}, "AsyncGenerator": {"kind": "ClassDef", "type": {"nodeId": "140215567757184"}}, "Container": {"kind": "ClassDef", "type": {"nodeId": "140215567757520"}}, "Collection": {"kind": "ClassDef", "type": {"nodeId": "140215567757856"}}, "Sequence": {"kind": "ClassDef", "type": {"nodeId": "140215567758192"}}, "MutableSequence": {"kind": "ClassDef", "type": {"nodeId": "140215567758528"}}, "AbstractSet": {"kind": "ClassDef", "type": {"nodeId": "140215567758864"}}, "MutableSet": {"kind": "ClassDef", "type": {"nodeId": "140215567759200"}}, "MappingView": {"kind": "ClassDef", "type": {"nodeId": "140215488334864"}}, "ItemsView": {"kind": "ClassDef", "type": {"nodeId": "140215488335200"}}, "KeysView": {"kind": "ClassDef", "type": {"nodeId": "140215488335536"}}, "ValuesView": {"kind": "ClassDef", "type": {"nodeId": "140215488335872"}}, "Mapping": {"kind": "ClassDef", "type": {"nodeId": "140215567759536"}}, "MutableMapping": {"kind": "ClassDef", "type": {"nodeId": "140215567759872"}}, "IO": {"kind": "ClassDef", "type": {"nodeId": "140215488336208"}}, "BinaryIO": {"kind": "ClassDef", "type": {"nodeId": "140215488336544"}}, "TextIO": {"kind": "ClassDef", "type": {"nodeId": "140215488336880"}}, "ByteString": {"kind": "ClassDef", "type": {"nodeId": "140215488337216"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140215488337552"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140215488337888"}}, "ForwardRef": {"kind": "ClassDef", "type": {"nodeId": "140215567760208"}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "type": {"nodeId": "140215488338224"}}, "dict_values": {"kind": "ClassDef", "type": {"nodeId": "140215488338560"}}, "dict_items": {"kind": "ClassDef", "type": {"nodeId": "140215488338896"}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140215488345280"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140215488345616"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140215488345952"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140215488346288"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140215488346624"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140215488346960"}}, "TypeVarTuple": {"kind": "ClassDef", "type": {"nodeId": "140215488347296"}}}, "_ast": {"AST": {"kind": "ClassDef", "type": {"nodeId": "140215475469136"}}, "mod": {"kind": "ClassDef", "type": {"nodeId": "140215475469472"}}, "type_ignore": {"kind": "ClassDef", "type": {"nodeId": "140215475469808"}}, "TypeIgnore": {"kind": "ClassDef", "type": {"nodeId": "140215475683392"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140215475683728"}}, "Module": {"kind": "ClassDef", "type": {"nodeId": "140215475684064"}}, "Interactive": {"kind": "ClassDef", "type": {"nodeId": "140215475684400"}}, "Expression": {"kind": "ClassDef", "type": {"nodeId": "140215475684736"}}, "stmt": {"kind": "ClassDef", "type": {"nodeId": "140215475685072"}}, "FunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140215475685408"}}, "AsyncFunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140215475685744"}}, "ClassDef": {"kind": "ClassDef", "type": {"nodeId": "140215475686080"}}, "Return": {"kind": "ClassDef", "type": {"nodeId": "140215475686416"}}, "Delete": {"kind": "ClassDef", "type": {"nodeId": "140215475686752"}}, "Assign": {"kind": "ClassDef", "type": {"nodeId": "140215475687088"}}, "AugAssign": {"kind": "ClassDef", "type": {"nodeId": "140215475687424"}}, "AnnAssign": {"kind": "ClassDef", "type": {"nodeId": "140215475687760"}}, "For": {"kind": "ClassDef", "type": {"nodeId": "140215475688096"}}, "AsyncFor": {"kind": "ClassDef", "type": {"nodeId": "140215475688432"}}, "While": {"kind": "ClassDef", "type": {"nodeId": "140215475688768"}}, "If": {"kind": "ClassDef", "type": {"nodeId": "140215475689104"}}, "With": {"kind": "ClassDef", "type": {"nodeId": "140215475689440"}}, "AsyncWith": {"kind": "ClassDef", "type": {"nodeId": "140215475689776"}}, "Raise": {"kind": "ClassDef", "type": {"nodeId": "140215475690112"}}, "Try": {"kind": "ClassDef", "type": {"nodeId": "140215475690448"}}, "Assert": {"kind": "ClassDef", "type": {"nodeId": "140215475690784"}}, "Import": {"kind": "ClassDef", "type": {"nodeId": "140215475691120"}}, "ImportFrom": {"kind": "ClassDef", "type": {"nodeId": "140215475691456"}}, "Global": {"kind": "ClassDef", "type": {"nodeId": "140215475691792"}}, "Nonlocal": {"kind": "ClassDef", "type": {"nodeId": "140215475692128"}}, "Expr": {"kind": "ClassDef", "type": {"nodeId": "140215475692464"}}, "Pass": {"kind": "ClassDef", "type": {"nodeId": "140215475692800"}}, "Break": {"kind": "ClassDef", "type": {"nodeId": "140215475693136"}}, "Continue": {"kind": "ClassDef", "type": {"nodeId": "140215475693472"}}, "expr": {"kind": "ClassDef", "type": {"nodeId": "140215475693808"}}, "BoolOp": {"kind": "ClassDef", "type": {"nodeId": "140215475694144"}}, "BinOp": {"kind": "ClassDef", "type": {"nodeId": "140215475694480"}}, "UnaryOp": {"kind": "ClassDef", "type": {"nodeId": "140215475694816"}}, "Lambda": {"kind": "ClassDef", "type": {"nodeId": "140215475695152"}}, "IfExp": {"kind": "ClassDef", "type": {"nodeId": "140215475695488"}}, "Dict": {"kind": "ClassDef", "type": {"nodeId": "140215475695824"}}, "Set": {"kind": "ClassDef", "type": {"nodeId": "140215475696160"}}, "ListComp": {"kind": "ClassDef", "type": {"nodeId": "140215475696496"}}, "SetComp": {"kind": "ClassDef", "type": {"nodeId": "140215475696832"}}, "DictComp": {"kind": "ClassDef", "type": {"nodeId": "140215475697168"}}, "GeneratorExp": {"kind": "ClassDef", "type": {"nodeId": "140215475697504"}}, "Await": {"kind": "ClassDef", "type": {"nodeId": "140215475697840"}}, "Yield": {"kind": "ClassDef", "type": {"nodeId": "140215475698176"}}, "YieldFrom": {"kind": "ClassDef", "type": {"nodeId": "140215475698512"}}, "Compare": {"kind": "ClassDef", "type": {"nodeId": "140215475698848"}}, "Call": {"kind": "ClassDef", "type": {"nodeId": "140215475699184"}}, "FormattedValue": {"kind": "ClassDef", "type": {"nodeId": "140215466360896"}}, "JoinedStr": {"kind": "ClassDef", "type": {"nodeId": "140215466361232"}}, "Constant": {"kind": "ClassDef", "type": {"nodeId": "140215466361568"}}, "NamedExpr": {"kind": "ClassDef", "type": {"nodeId": "140215466361904"}}, "Attribute": {"kind": "ClassDef", "type": {"nodeId": "140215466362240"}}, "Slice": {"kind": "ClassDef", "type": {"nodeId": "140215466362576"}}, "Subscript": {"kind": "ClassDef", "type": {"nodeId": "140215466362912"}}, "Starred": {"kind": "ClassDef", "type": {"nodeId": "140215466363248"}}, "Name": {"kind": "ClassDef", "type": {"nodeId": "140215466363584"}}, "List": {"kind": "ClassDef", "type": {"nodeId": "140215466363920"}}, "Tuple": {"kind": "ClassDef", "type": {"nodeId": "140215466364256"}}, "expr_context": {"kind": "ClassDef", "type": {"nodeId": "140215466364592"}}, "Del": {"kind": "ClassDef", "type": {"nodeId": "140215466364928"}}, "Load": {"kind": "ClassDef", "type": {"nodeId": "140215466365264"}}, "Store": {"kind": "ClassDef", "type": {"nodeId": "140215466365600"}}, "boolop": {"kind": "ClassDef", "type": {"nodeId": "140215466365936"}}, "And": {"kind": "ClassDef", "type": {"nodeId": "140215466366272"}}, "Or": {"kind": "ClassDef", "type": {"nodeId": "140215466366608"}}, "operator": {"kind": "ClassDef", "type": {"nodeId": "140215466366944"}}, "Add": {"kind": "ClassDef", "type": {"nodeId": "140215466367280"}}, "BitAnd": {"kind": "ClassDef", "type": {"nodeId": "140215466367616"}}, "BitOr": {"kind": "ClassDef", "type": {"nodeId": "140215466367952"}}, "BitXor": {"kind": "ClassDef", "type": {"nodeId": "140215466368288"}}, "Div": {"kind": "ClassDef", "type": {"nodeId": "140215466368624"}}, "FloorDiv": {"kind": "ClassDef", "type": {"nodeId": "140215466368960"}}, "LShift": {"kind": "ClassDef", "type": {"nodeId": "140215466369296"}}, "Mod": {"kind": "ClassDef", "type": {"nodeId": "140215466369632"}}, "Mult": {"kind": "ClassDef", "type": {"nodeId": "140215466369968"}}, "MatMult": {"kind": "ClassDef", "type": {"nodeId": "140215466370304"}}, "Pow": {"kind": "ClassDef", "type": {"nodeId": "140215466370640"}}, "RShift": {"kind": "ClassDef", "type": {"nodeId": "140215466370976"}}, "Sub": {"kind": "ClassDef", "type": {"nodeId": "140215466371312"}}, "unaryop": {"kind": "ClassDef", "type": {"nodeId": "140215466371648"}}, "Invert": {"kind": "ClassDef", "type": {"nodeId": "140215466371984"}}, "Not": {"kind": "ClassDef", "type": {"nodeId": "140215466372320"}}, "UAdd": {"kind": "ClassDef", "type": {"nodeId": "140215466372656"}}, "USub": {"kind": "ClassDef", "type": {"nodeId": "140215466372992"}}, "cmpop": {"kind": "ClassDef", "type": {"nodeId": "140215466373328"}}, "Eq": {"kind": "ClassDef", "type": {"nodeId": "140215466373664"}}, "Gt": {"kind": "ClassDef", "type": {"nodeId": "140215466374000"}}, "GtE": {"kind": "ClassDef", "type": {"nodeId": "140215466374336"}}, "In": {"kind": "ClassDef", "type": {"nodeId": "140215466374672"}}, "Is": {"kind": "ClassDef", "type": {"nodeId": "140215466375008"}}, "IsNot": {"kind": "ClassDef", "type": {"nodeId": "140215466375344"}}, "Lt": {"kind": "ClassDef", "type": {"nodeId": "140215466375680"}}, "LtE": {"kind": "ClassDef", "type": {"nodeId": "140215466376016"}}, "NotEq": {"kind": "ClassDef", "type": {"nodeId": "140215466376352"}}, "NotIn": {"kind": "ClassDef", "type": {"nodeId": "140215466376688"}}, "comprehension": {"kind": "ClassDef", "type": {"nodeId": "140215466426432"}}, "excepthandler": {"kind": "ClassDef", "type": {"nodeId": "140215466426768"}}, "ExceptHandler": {"kind": "ClassDef", "type": {"nodeId": "140215466427104"}}, "arguments": {"kind": "ClassDef", "type": {"nodeId": "140215466427440"}}, "arg": {"kind": "ClassDef", "type": {"nodeId": "140215466427776"}}, "keyword": {"kind": "ClassDef", "type": {"nodeId": "140215466428112"}}, "alias": {"kind": "ClassDef", "type": {"nodeId": "140215466428448"}}, "withitem": {"kind": "ClassDef", "type": {"nodeId": "140215466428784"}}, "Match": {"kind": "ClassDef", "type": {"nodeId": "140215466429120"}}, "pattern": {"kind": "ClassDef", "type": {"nodeId": "140215466429456"}}, "match_case": {"kind": "ClassDef", "type": {"nodeId": "140215466429792"}}, "MatchValue": {"kind": "ClassDef", "type": {"nodeId": "140215466430128"}}, "MatchSingleton": {"kind": "ClassDef", "type": {"nodeId": "140215466430464"}}, "MatchSequence": {"kind": "ClassDef", "type": {"nodeId": "140215466430800"}}, "MatchStar": {"kind": "ClassDef", "type": {"nodeId": "140215466431136"}}, "MatchMapping": {"kind": "ClassDef", "type": {"nodeId": "140215466431472"}}, "MatchClass": {"kind": "ClassDef", "type": {"nodeId": "140215466431808"}}, "MatchAs": {"kind": "ClassDef", "type": {"nodeId": "140215466432144"}}, "MatchOr": {"kind": "ClassDef", "type": {"nodeId": "140215466432480"}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "type": {"nodeId": "140215483154832"}}, "IOBase": {"kind": "ClassDef", "type": {"nodeId": "140215483155168"}}, "RawIOBase": {"kind": "ClassDef", "type": {"nodeId": "140215483155504"}}, "BufferedIOBase": {"kind": "ClassDef", "type": {"nodeId": "140215483155840"}}, "FileIO": {"kind": "ClassDef", "type": {"nodeId": "140215483156176"}}, "BytesIO": {"kind": "ClassDef", "type": {"nodeId": "140215483156512"}}, "BufferedReader": {"kind": "ClassDef", "type": {"nodeId": "140215483156848"}}, "BufferedWriter": {"kind": "ClassDef", "type": {"nodeId": "140215483157184"}}, "BufferedRandom": {"kind": "ClassDef", "type": {"nodeId": "140215483157520"}}, "BufferedRWPair": {"kind": "ClassDef", "type": {"nodeId": "140215483157856"}}, "TextIOBase": {"kind": "ClassDef", "type": {"nodeId": "140215483158192"}}, "TextIOWrapper": {"kind": "ClassDef", "type": {"nodeId": "140215483158528"}}, "StringIO": {"kind": "ClassDef", "type": {"nodeId": "140215483158864"}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "type": {"nodeId": "140215466727392"}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "type": {"nodeId": "140215488149008"}}, "abstractclassmethod": {"kind": "ClassDef", "type": {"nodeId": "140215488149344"}}, "abstractstaticmethod": {"kind": "ClassDef", "type": {"nodeId": "140215488149680"}}, "abstractproperty": {"kind": "ClassDef", "type": {"nodeId": "140215488150016"}}, "ABC": {"kind": "ClassDef", "type": {"nodeId": "140215488150352"}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140215483159200"}}, "SimplePath": {"kind": "ClassDef", "type": {"nodeId": "140215483159536"}}}, "email.message": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140215483170288"}}, "MIMEPart": {"kind": "ClassDef", "type": {"nodeId": "140215479697472"}}, "EmailMessage": {"kind": "ClassDef", "type": {"nodeId": "140215479697808"}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "type": {"nodeId": "140215466725376"}}, "PurePosixPath": {"kind": "ClassDef", "type": {"nodeId": "140215466725712"}}, "PureWindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140215466726048"}}, "Path": {"kind": "ClassDef", "type": {"nodeId": "140215466726384"}}, "PosixPath": {"kind": "ClassDef", "type": {"nodeId": "140215466726720"}}, "WindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140215466727056"}}}, "os": {"_Environ": {"kind": "ClassDef", "type": {"nodeId": "140215474814112"}}, "stat_result": {"kind": "ClassDef", "type": {"nodeId": "140215466436176"}}, "PathLike": {"kind": "ClassDef", "type": {"nodeId": "140215466436512"}}, "DirEntry": {"kind": "ClassDef", "type": {"nodeId": "140215474814448"}}, "statvfs_result": {"kind": "ClassDef", "type": {"nodeId": "140215466436848"}}, "uname_result": {"kind": "ClassDef", "type": {"nodeId": "140215466437184"}}, "terminal_size": {"kind": "ClassDef", "type": {"nodeId": "140215466437520"}}, "_ScandirIterator": {"kind": "ClassDef", "type": {"nodeId": "140215466437856"}}, "_wrap_close": {"kind": "ClassDef", "type": {"nodeId": "140215466438192"}}, "times_result": {"kind": "ClassDef", "type": {"nodeId": "140215466438528"}}, "waitid_result": {"kind": "ClassDef", "type": {"nodeId": "140215466438864"}}, "sched_param": {"kind": "ClassDef", "type": {"nodeId": "140215466439200"}}}, "re": {"Match": {"kind": "ClassDef", "type": {"nodeId": "140215474811088"}}, "Pattern": {"kind": "ClassDef", "type": {"nodeId": "140215474811424"}}, "RegexFlag": {"kind": "ClassDef", "type": {"nodeId": "140215466435840"}}}, "array": {"array": {"kind": "ClassDef", "type": {"nodeId": "140215475459056"}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "type": {"nodeId": "140215479707888"}}, "PyDLL": {"kind": "ClassDef", "type": {"nodeId": "140215479708224"}}, "LibraryLoader": {"kind": "ClassDef", "type": {"nodeId": "140215466722016"}}, "_CDataMeta": {"kind": "ClassDef", "type": {"nodeId": "140215479708560"}}, "_CData": {"kind": "ClassDef", "type": {"nodeId": "140215479708896"}}, "_CanCastTo": {"kind": "ClassDef", "type": {"nodeId": "140215479709232"}}, "_PointerLike": {"kind": "ClassDef", "type": {"nodeId": "140215479709568"}}, "_FuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140215479709904"}}, "_NamedFuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140215479710240"}}, "ArgumentError": {"kind": "ClassDef", "type": {"nodeId": "140215479710576"}}, "_CArgObject": {"kind": "ClassDef", "type": {"nodeId": "140215479710912"}}, "_Pointer": {"kind": "ClassDef", "type": {"nodeId": "140215466722352"}}, "_SimpleCData": {"kind": "ClassDef", "type": {"nodeId": "140215479711248"}}, "c_byte": {"kind": "ClassDef", "type": {"nodeId": "140215479711584"}}, "c_char": {"kind": "ClassDef", "type": {"nodeId": "140215479711920"}}, "c_char_p": {"kind": "ClassDef", "type": {"nodeId": "140215479712256"}}, "c_double": {"kind": "ClassDef", "type": {"nodeId": "140215479712592"}}, "c_longdouble": {"kind": "ClassDef", "type": {"nodeId": "140215479712928"}}, "c_float": {"kind": "ClassDef", "type": {"nodeId": "140215479713264"}}, "c_int": {"kind": "ClassDef", "type": {"nodeId": "140215487447104"}}, "c_int8": {"kind": "ClassDef", "type": {"nodeId": "140215487447440"}}, "c_int16": {"kind": "ClassDef", "type": {"nodeId": "140215487447776"}}, "c_int32": {"kind": "ClassDef", "type": {"nodeId": "140215487448112"}}, "c_int64": {"kind": "ClassDef", "type": {"nodeId": "140215487448448"}}, "c_long": {"kind": "ClassDef", "type": {"nodeId": "140215487448784"}}, "c_longlong": {"kind": "ClassDef", "type": {"nodeId": "140215487449120"}}, "c_short": {"kind": "ClassDef", "type": {"nodeId": "140215487449456"}}, "c_size_t": {"kind": "ClassDef", "type": {"nodeId": "140215487449792"}}, "c_ssize_t": {"kind": "ClassDef", "type": {"nodeId": "140215487450128"}}, "c_ubyte": {"kind": "ClassDef", "type": {"nodeId": "140215487450464"}}, "c_uint": {"kind": "ClassDef", "type": {"nodeId": "140215487450800"}}, "c_uint8": {"kind": "ClassDef", "type": {"nodeId": "140215487451136"}}, "c_uint16": {"kind": "ClassDef", "type": {"nodeId": "140215487451472"}}, "c_uint32": {"kind": "ClassDef", "type": {"nodeId": "140215487451808"}}, "c_uint64": {"kind": "ClassDef", "type": {"nodeId": "140215487452144"}}, "c_ulong": {"kind": "ClassDef", "type": {"nodeId": "140215487452480"}}, "c_ulonglong": {"kind": "ClassDef", "type": {"nodeId": "140215487452816"}}, "c_ushort": {"kind": "ClassDef", "type": {"nodeId": "140215487453152"}}, "c_void_p": {"kind": "ClassDef", "type": {"nodeId": "140215487453488"}}, "c_wchar": {"kind": "ClassDef", "type": {"nodeId": "140215487453824"}}, "c_wchar_p": {"kind": "ClassDef", "type": {"nodeId": "140215487454160"}}, "c_bool": {"kind": "ClassDef", "type": {"nodeId": "140215487454496"}}, "py_object": {"kind": "ClassDef", "type": {"nodeId": "140215487454832"}}, "_CField": {"kind": "ClassDef", "type": {"nodeId": "140215487455168"}}, "_StructUnionMeta": {"kind": "ClassDef", "type": {"nodeId": "140215487455504"}}, "_StructUnionBase": {"kind": "ClassDef", "type": {"nodeId": "140215487455840"}}, "Union": {"kind": "ClassDef", "type": {"nodeId": "140215487456176"}}, "Structure": {"kind": "ClassDef", "type": {"nodeId": "140215487456512"}}, "BigEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140215487456848"}}, "LittleEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140215487457184"}}, "Array": {"kind": "ClassDef", "type": {"nodeId": "140215466722688"}}}, "mmap": {"mmap": {"kind": "ClassDef", "type": {"nodeId": "140215483154496"}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "type": {"nodeId": "140215474811760"}}, "PickleBuffer": {"kind": "ClassDef", "type": {"nodeId": "140215474812096"}}, "PickleError": {"kind": "ClassDef", "type": {"nodeId": "140215474812432"}}, "PicklingError": {"kind": "ClassDef", "type": {"nodeId": "140215474812768"}}, "UnpicklingError": {"kind": "ClassDef", "type": {"nodeId": "140215474813104"}}, "Pickler": {"kind": "ClassDef", "type": {"nodeId": "140215474813440"}}, "Unpickler": {"kind": "ClassDef", "type": {"nodeId": "140215474813776"}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "type": {"nodeId": "140215487457520"}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "type": {"nodeId": "140215487457856"}}, "ContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140215487458192"}}, "_GeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140215487458528"}}, "AsyncContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140215487458864"}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140215487459200"}}, "_SupportsClose": {"kind": "ClassDef", "type": {"nodeId": "140215487459536"}}, "closing": {"kind": "ClassDef", "type": {"nodeId": "140215487459872"}}, "_SupportsAclose": {"kind": "ClassDef", "type": {"nodeId": "140215487460208"}}, "aclosing": {"kind": "ClassDef", "type": {"nodeId": "140215487460544"}}, "suppress": {"kind": "ClassDef", "type": {"nodeId": "140215487460880"}}, "_RedirectStream": {"kind": "ClassDef", "type": {"nodeId": "140215487461216"}}, "redirect_stdout": {"kind": "ClassDef", "type": {"nodeId": "140215487461552"}}, "redirect_stderr": {"kind": "ClassDef", "type": {"nodeId": "140215487461888"}}, "ExitStack": {"kind": "ClassDef", "type": {"nodeId": "140215487462224"}}, "AsyncExitStack": {"kind": "ClassDef", "type": {"nodeId": "140215487462560"}}, "nullcontext": {"kind": "ClassDef", "type": {"nodeId": "140215487462896"}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "type": {"nodeId": "140215475455024"}}, "_ReadableStream": {"kind": "ClassDef", "type": {"nodeId": "140215475455360"}}, "_Stream": {"kind": "ClassDef", "type": {"nodeId": "140215466723024"}}, "_Encoder": {"kind": "ClassDef", "type": {"nodeId": "140215475455696"}}, "_Decoder": {"kind": "ClassDef", "type": {"nodeId": "140215475456032"}}, "_StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140215475456368"}}, "_StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140215475456704"}}, "_IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140215475457040"}}, "_IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140215475457376"}}, "CodecInfo": {"kind": "ClassDef", "type": {"nodeId": "140215466723360"}}, "Codec": {"kind": "ClassDef", "type": {"nodeId": "140215475457712"}}, "IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140215475458048"}}, "IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140215475458384"}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140215466723696"}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140215466724032"}}, "StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140215466724368"}}, "StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140215466724704"}}, "StreamReaderWriter": {"kind": "ClassDef", "type": {"nodeId": "140215466725040"}}, "StreamRecoder": {"kind": "ClassDef", "type": {"nodeId": "140215475458720"}}}, "email": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140215483170288"}}, "Policy": {"kind": "ClassDef", "type": {"nodeId": "140215483169280"}}}, "email.charset": {"Charset": {"kind": "ClassDef", "type": {"nodeId": "140215479707552"}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "type": {"nodeId": "140215479707216"}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "type": {"nodeId": "140215479698480"}}, "MessageParseError": {"kind": "ClassDef", "type": {"nodeId": "140215479698816"}}, "HeaderParseError": {"kind": "ClassDef", "type": {"nodeId": "140215479699152"}}, "BoundaryError": {"kind": "ClassDef", "type": {"nodeId": "140215479699488"}}, "MultipartConversionError": {"kind": "ClassDef", "type": {"nodeId": "140215479699824"}}, "CharsetError": {"kind": "ClassDef", "type": {"nodeId": "140215479700160"}}, "MessageDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479700496"}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479700832"}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479701168"}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479701504"}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479701840"}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479702176"}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479702512"}}, "UndecodableBytesDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479702848"}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479703184"}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479703520"}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479703856"}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479704192"}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479704528"}}, "HeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479704864"}}, "InvalidHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479705200"}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "type": {"nodeId": "140215479705536"}}, "NonPrintableDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479705872"}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479706208"}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479706544"}}, "InvalidDateDefect": {"kind": "ClassDef", "type": {"nodeId": "140215479706880"}}}, "email.policy": {"Policy": {"kind": "ClassDef", "type": {"nodeId": "140215483169280"}}, "Compat32": {"kind": "ClassDef", "type": {"nodeId": "140215483169616"}}, "EmailPolicy": {"kind": "ClassDef", "type": {"nodeId": "140215483169952"}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "type": {"nodeId": "140215474807392"}}, "SubprocessError": {"kind": "ClassDef", "type": {"nodeId": "140215474807728"}}, "TimeoutExpired": {"kind": "ClassDef", "type": {"nodeId": "140215474808064"}}, "CalledProcessError": {"kind": "ClassDef", "type": {"nodeId": "140215474808400"}}, "Popen": {"kind": "ClassDef", "type": {"nodeId": "140215474808736"}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "type": {"nodeId": "140215483167264"}}, "EnumMeta": {"kind": "ClassDef", "type": {"nodeId": "140215483167600"}}, "Enum": {"kind": "ClassDef", "type": {"nodeId": "140215483167936"}}, "IntEnum": {"kind": "ClassDef", "type": {"nodeId": "140215483168272"}}, "auto": {"kind": "ClassDef", "type": {"nodeId": "140215466721680"}}, "Flag": {"kind": "ClassDef", "type": {"nodeId": "140215483168608"}}, "IntFlag": {"kind": "ClassDef", "type": {"nodeId": "140215483168944"}}}, "sre_constants": {"error": {"kind": "ClassDef", "type": {"nodeId": "140215474810416"}}, "_NamedIntConstant": {"kind": "ClassDef", "type": {"nodeId": "140215474810752"}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "type": {"nodeId": "140215475468800"}}}, "email.header": {"Header": {"kind": "ClassDef", "type": {"nodeId": "140215479698144"}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "type": {"nodeId": "140215474809072"}}, "_State": {"kind": "ClassDef", "type": {"nodeId": "140215474809408"}}, "SubPattern": {"kind": "ClassDef", "type": {"nodeId": "140215474809744"}}, "Tokenizer": {"kind": "ClassDef", "type": {"nodeId": "140215474810080"}}}}, "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": "Self", "kind": "Other"}, {"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": "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": "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": "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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "Self", "kind": "Other"}, {"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": "__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": "overload", "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": "_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": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_V_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": "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": "array", "kind": "Module", "fullname": "array"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "pickle", "kind": "Module", "fullname": "pickle"}, {"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": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"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": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"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": "_BufferWithLen", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "Other"}, {"name": "IndexableBuffer", "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"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"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": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "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": "__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": "_V_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T_contra", "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": "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": "LocalType"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "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": "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"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": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "Any", "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": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Text", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"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": "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": "override", "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "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": "Self", "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": "__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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "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": "Self", "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": "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": "Self", "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": "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": "Self", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"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": "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"}], "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": "Self", "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": "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"}], "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": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Self", "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_UnionT", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "_CT", "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": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "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": "get_errno", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "POINTER", "kind": "Other"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"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": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}], "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": "Self", "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": "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"}], "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": "Union", "kind": "Other"}, {"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"}], "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": "Self", "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": "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": "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": "Self", "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": "__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": "Union", "kind": "Other"}, {"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": "__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": "Self", "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": "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"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": "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": "auto", "kind": "LocalType"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "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": "Self", "kind": "Other"}, {"name": "Any", "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"}], "_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": "_CArgObject", "kind": "ImportedType", "fullname": "ctypes._CArgObject"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "ctypes._PointerLike"}, {"name": "TypeAlias", "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"}], "_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": {"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 diff --git a/utbot-python-types/src/test/resources/subtypes.json b/utbot-python-types/src/test/resources/subtypes.json index e5a3b4aa52..aea0ffd3b1 100644 --- a/utbot-python-types/src/test/resources/subtypes.json +++ b/utbot-python-types/src/test/resources/subtypes.json @@ -1 +1 @@ -{"nodeStorage": {"140126119317840": {"type": "Concrete", "module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099331040"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254200000"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254200448"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254200896"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254201344"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254201792"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254202240"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254301248"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254302144"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254302592"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254303040"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254303488"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254303936"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254304384"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254304832"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254305280"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254305728"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254306176"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254306624"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254307072"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254307520"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254307968"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254308416"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254308864"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254309312"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254309760"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254310208"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254310656"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254311104"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254311552"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254312000"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254312448"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254312896"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254313344"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254313792"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254314240"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254314688"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254315136"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254315584"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254316032"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254316480"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254316928"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254432320"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254432768"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254433216"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254433664"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254434112"}, "name": "zfill"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099331152"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254435456"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254435904"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254436352"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254436800"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254437248"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254437696"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254438144"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254438592"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254439040"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254439488"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254439936"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254440384"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254440832"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254441280"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254441728"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": false}, "140126099331040": {"type": "Overloaded", "items": [{"nodeId": "140126254199104"}, {"nodeId": "140126099309952"}]}, "140126254199104": {"type": "Function", "typeVars": [".-1.140126254199104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126254199104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}, "0": {"type": "Unknown"}, "140126325561984": {"type": "Concrete", "module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111384512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098815264"}, "items": [{"kind": "Variable", "name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053013920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__class__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261945600"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261946048"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261946496"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261946944"}, "name": "__delattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261947392"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261947840"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261948288"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261948736"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261949184"}, "name": "__hash__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261949632"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261950080"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261950528"}, "name": "__sizeof__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261950976"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261951424"}, "name": "__reduce_ex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291771456"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291771904"}, "name": "__init_subclass__"}], "typeVars": [], "bases": [], "isAbstract": false}, "140126111384512": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "N": {"type": "NoneType"}, "140126119319520": {"type": "Concrete", "module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094509104"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250049472"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250049920"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250050368"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250050816"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250051264"}, "name": "items"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094509328"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094509664"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094510448"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250054400"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250054848"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250055296"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250055744"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250056192"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250056640"}, "name": "__reversed__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250057088"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250172480"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250172928"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094510784"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}], "bases": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "isAbstract": false}, "140126094509104": {"type": "Overloaded", "items": [{"nodeId": "140126250046336"}, {"nodeId": "140126250046784"}, {"nodeId": "140126250047232"}, {"nodeId": "140126250047680"}, {"nodeId": "140126250048128"}, {"nodeId": "140126250048576"}, {"nodeId": "140126250049024"}]}, "140126250046336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119319520": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119319520", "variance": "INVARIANT"}, ".2.140126119319520": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119319520", "variance": "INVARIANT"}, "140126250046784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".2.140126119319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140126250047232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126116050448": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253714560"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253715008"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126116050448"}, {"nodeId": ".2.140126116050448"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__", "keys"]}, "140126253714560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126116050448"}, {"nodeId": ".2.140126116050448"}]}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126116050448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116050448": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050448", "variance": "INVARIANT"}, ".2.140126116050448": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050448", "variance": "COVARIANT"}, "140126325566688": {"type": "Protocol", "module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090235232"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325566688"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__iter__"]}, "140126090235232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325566688"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325566688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126325566688": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325566688", "variance": "COVARIANT"}, "140126325567024": {"type": "Protocol", "module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090238144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295837376"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140126325567024"}], "bases": [{"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325567024"}]}], "protocolMembers": ["__iter__", "__next__"]}, "140126090238144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325567024"}]}], "returnType": {"nodeId": ".1.140126325567024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325567024": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325567024", "variance": "COVARIANT"}, "140126295837376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325567024"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325567024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "A": {"type": "Any"}, "140126253715008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126116050448"}, {"nodeId": ".2.140126116050448"}]}, {"nodeId": ".1.140126116050448"}], "returnType": {"nodeId": ".2.140126116050448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250047680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".2.140126119319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126250048128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126094509888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094509888": {"type": "Tuple", "items": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "140126250048576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126094510112"}]}, {"nodeId": ".2.140126119319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126094510112": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119319520"}]}, "140126250049024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126119319184": {"type": "Concrete", "module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094326832"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249934336"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249934784"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249935232"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249935680"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249936128"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249936576"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249937024"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249937472"}, "name": "remove"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094326944"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249938816"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249939264"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094508544"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094508656"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249941504"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094508880"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250041408"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250041856"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250042304"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250042752"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250043200"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250043648"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250044096"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250044544"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250044992"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250045440"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250045888"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119319184"}], "bases": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126119319184"}]}], "isAbstract": false}, "140126094326832": {"type": "Overloaded", "items": [{"nodeId": "140126249933440"}, {"nodeId": "140126249933888"}]}, "140126249933440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119319184": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119319184", "variance": "INVARIANT"}, "140126249933888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249934336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249934784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249935232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249935680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126119319184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126120017984": {"type": "Protocol", "module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126095085792"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__index__"]}, "140126095085792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119316160": {"type": "Concrete", "module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099128128"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262248832"}, "name": "as_integer_ratio"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052675680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052676576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052675456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052674784"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262251072"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262251520"}, "name": "bit_length"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262251968"}, "name": "bit_count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262253312"}, "name": "to_bytes"}, {"kind": "Variable", "name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052674336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262254208"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262254656"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262255104"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262255552"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262256000"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262256448"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262256896"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262257344"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262257792"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262258240"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262258688"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262259136"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262259584"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262260032"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099326000"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262263168"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253957184"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253957632"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253958080"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253958528"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253958976"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253959424"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253959872"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253960320"}, "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253960768"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253961216"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253961664"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253962112"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253962560"}, "name": "__invert__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253963008"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253963456"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253963904"}, "name": "__floor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253964352"}, "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253964800"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253965248"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253965696"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253966144"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253966592"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253967040"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253967488"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253967936"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253968384"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253968832"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253969280"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253969728"}, "name": "__index__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126099128128": {"type": "Overloaded", "items": [{"nodeId": "140126098306464"}, {"nodeId": "140126098308704"}]}, "140126098306464": {"type": "Function", "typeVars": [".-1.140126098306464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099326672"}], "returnType": {"nodeId": ".-1.140126098306464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140126099326672": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126099326560"}, {"nodeId": "140126119709040"}, {"nodeId": "140126120017984"}, {"nodeId": "140126116049776"}]}, "140126099326560": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126110977600": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126110977488"}]}, "140126119716096": {"type": "Concrete", "module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099332272"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254443520"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254443968"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254444416"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254444864"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254445312"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254445760"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254446656"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254447104"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254448000"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249320512"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249320960"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249321408"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249321856"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249322304"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249322752"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249323200"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249323648"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249324096"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249324544"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249324992"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249325440"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249325888"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249326336"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249326784"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249327232"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249327680"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249328128"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249328576"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249329024"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249329472"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249329920"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249330368"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249330816"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249331264"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249331712"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249332160"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249332608"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249333056"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249333504"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249333952"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126048053152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126048052704"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249335296"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249335744"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099335744"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249435648"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249436096"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249436544"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249436992"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249437440"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249437888"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249438336"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249438784"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249439232"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249439680"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249440128"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249440576"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140126119714080"}], "isAbstract": false}, "140126099332272": {"type": "Overloaded", "items": [{"nodeId": "140126099310400"}, {"nodeId": "140126254442624"}, {"nodeId": "140126254443072"}]}, "140126099310400": {"type": "Function", "typeVars": [".-1.140126099310400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099336976"}], "returnType": {"nodeId": ".-1.140126099310400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126099336976": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126120017984"}]}, {"nodeId": "140126120017984"}, {"nodeId": "140126119710048"}, {"nodeId": "140126099336864"}]}, "140126119710048": {"type": "Protocol", "module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090159360"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__bytes__"]}, "140126090159360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119710048"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099336864": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, ".-1.140126099310400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126099310400", "variance": "INVARIANT"}, "140126254442624": {"type": "Function", "typeVars": [".-1.140126254442624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126254442624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}, ".-1.140126254442624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254442624", "variance": "INVARIANT"}, "140126254443072": {"type": "Function", "typeVars": [".-1.140126254443072"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126254443072"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126254443072": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254443072", "variance": "INVARIANT"}, "140126254443520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254443968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126254444416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099337200"}, {"nodeId": "140126099337312"}, {"nodeId": "140126099337424"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099337200": {"type": "Union", "items": [{"nodeId": "140126099337088"}, {"nodeId": "140126120017984"}]}, "140126099337088": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099337312": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099337424": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254444864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140126254445312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099337760"}, {"nodeId": "140126099337872"}, {"nodeId": "140126099337984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099337760": {"type": "Union", "items": [{"nodeId": "140126099337536"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126099337648"}]}]}, "140126099337536": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126119318848": {"type": "Concrete", "module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249809088"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249809536"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249809984"}, "name": "__contains__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094325376"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249811328"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249926720"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249927168"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249927616"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249928064"}, "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094326048"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249929408"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249929856"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249930304"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249930752"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249931200"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119318848"}], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126119318848"}]}], "isAbstract": false}, "140126249809088": {"type": "Function", "typeVars": [".-1.140126249809088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": ".-1.140126249809088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".1.140126119318848": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119318848", "variance": "COVARIANT"}, ".-1.140126249809088": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249809088", "variance": "INVARIANT"}, "140126249809536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249809984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325562992": {"type": "Concrete", "module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249800128"}, "name": "__new__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094323920"}, "items": [{"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__and__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094324032"}, "items": [{"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__or__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094324816"}, "items": [{"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__xor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094324928"}, "items": [{"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094325040"}, "items": [{"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094325152"}, "items": [{"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249805952"}, "name": "__getnewargs__"}], "typeVars": [], "bases": [{"nodeId": "140126119316160"}], "isAbstract": false}, "140126249800128": {"type": "Function", "typeVars": [".-1.140126249800128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126249800128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, ".-1.140126249800128": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249800128", "variance": "INVARIANT"}, "140126094323920": {"type": "Overloaded", "items": [{"nodeId": "140126249800576"}, {"nodeId": "140126249801024"}]}, "140126249800576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249801024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094324032": {"type": "Overloaded", "items": [{"nodeId": "140126249801472"}, {"nodeId": "140126249801920"}]}, "140126249801472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249801920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094324816": {"type": "Overloaded", "items": [{"nodeId": "140126249802368"}, {"nodeId": "140126249802816"}]}, "140126249802368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249802816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094324928": {"type": "Overloaded", "items": [{"nodeId": "140126249803264"}, {"nodeId": "140126249803712"}]}, "140126249803264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249803712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094325040": {"type": "Overloaded", "items": [{"nodeId": "140126249804160"}, {"nodeId": "140126249804608"}]}, "140126249804160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249804608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094325152": {"type": "Overloaded", "items": [{"nodeId": "140126249805056"}, {"nodeId": "140126249805504"}]}, "140126249805056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249805504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249805952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126094325600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094325600": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}]}, "140126094325376": {"type": "Overloaded", "items": [{"nodeId": "140126249810432"}, {"nodeId": "140126249810880"}]}, "140126249810432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126119318848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249810880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126119318512": {"type": "Concrete", "module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048379936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048380832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048381056"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094325264"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249808640"}, "name": "indices"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126048379936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048380832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048381056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094325264": {"type": "Overloaded", "items": [{"nodeId": "140126249807744"}, {"nodeId": "140126249808192"}]}, "140126249807744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249808192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126249808640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318512"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126094326720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094326720": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126249811328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119318848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249926720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249927168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249927616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249928064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094326048": {"type": "Overloaded", "items": [{"nodeId": "140126249928512"}, {"nodeId": "140126249928960"}]}, "140126249928512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249928960": {"type": "Function", "typeVars": [".-1.140126249928960"], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": ".-1.140126249928960"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126094327056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126249928960": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249928960", "variance": "INVARIANT"}, "140126094327056": {"type": "Union", "items": [{"nodeId": ".1.140126119318848"}, {"nodeId": ".-1.140126249928960"}]}, "140126249929408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249929856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249930304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249930752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318848", "args": [{"nodeId": ".1.140126119318848"}]}, {"nodeId": "A"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126249931200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126120026720": {"type": "Concrete", "module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086304192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086304640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086304864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258396096"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258396544"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258529216"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086304192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119315488": {"type": "Concrete", "module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053008768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053008320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053008096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053007872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053007648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053007424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052679264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052679040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126052678816"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098815712"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099125440"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291783104"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098306688"}, "name": "__subclasses__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291784000"}, "name": "mro"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291784448"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291784896"}, "name": "__subclasscheck__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052678592"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291785792"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291786240"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126053008768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053008320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053008096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126120020672", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126120020672": {"type": "Concrete", "module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258018368"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258018816"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258019264"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258019712"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257823808"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257824256"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257824704"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257825152"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257825600"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257826048"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257826496"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257826944"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257827392"}, "name": "__ror__"}], "typeVars": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}], "bases": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "isAbstract": false}, "140126258018368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140126120020672": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120020672", "variance": "INVARIANT"}, ".2.140126120020672": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120020672", "variance": "COVARIANT"}, "140126258018816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, {"nodeId": ".1.140126120020672"}], "returnType": {"nodeId": ".2.140126120020672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258019264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126258019712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126257823808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126257824256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257824704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119712400": {"type": "Concrete", "module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296271424"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296271872"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296272320"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296272768"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296273216"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296273664"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296274112"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296274560"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296275008"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296275456"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296275904"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296276352"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140126119712400"}], "bases": [{"nodeId": "140126119711728"}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119712400"}]}], "isAbstract": false}, "140126296271424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119712400"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140126119712400": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119712400", "variance": "COVARIANT"}, "140126119313808": {"type": "Concrete", "module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090537088"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106765120"}, "items": [{"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296394880"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296395328"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296395776"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296396224"}, "name": "__contains__"}], "typeVars": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}], "bases": [{"nodeId": "140126325570048", "args": [{"nodeId": ".1.140126119313808"}]}], "isAbstract": true}, "140126090537088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}, {"nodeId": ".1.140126119313808"}], "returnType": {"nodeId": ".2.140126119313808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126119313808": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119313808", "variance": "INVARIANT"}, ".2.140126119313808": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119313808", "variance": "COVARIANT"}, "140126106765120": {"type": "Overloaded", "items": [{"nodeId": "140126296393984"}, {"nodeId": "140126296394432"}]}, "140126296393984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}, {"nodeId": ".1.140126119313808"}], "returnType": {"nodeId": "140126106770272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126106770272": {"type": "Union", "items": [{"nodeId": ".2.140126119313808"}, {"nodeId": "N"}]}, "140126296394432": {"type": "Function", "typeVars": [".-1.140126296394432"], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}, {"nodeId": ".1.140126119313808"}, {"nodeId": "140126106770384"}], "returnType": {"nodeId": "140126106770496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140126106770384": {"type": "Union", "items": [{"nodeId": ".2.140126119313808"}, {"nodeId": ".-1.140126296394432"}]}, ".-1.140126296394432": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296394432", "variance": "INVARIANT"}, "140126106770496": {"type": "Union", "items": [{"nodeId": ".2.140126119313808"}, {"nodeId": ".-1.140126296394432"}]}, "140126296394880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}], "returnType": {"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119712064": {"type": "Concrete", "module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296266048"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296266496"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296266944"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296267392"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296267840"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296268288"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296268736"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296269184"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296269632"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296270080"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296270528"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296270976"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}], "bases": [{"nodeId": "140126119711728"}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126119811712"}]}], "isAbstract": false}, "140126296266048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140126119712064": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119712064", "variance": "COVARIANT"}, ".2.140126119712064": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119712064", "variance": "COVARIANT"}, "140126296266496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106767024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126119716768": {"type": "Concrete", "module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094511232"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250175168"}, "name": "add"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250175616"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250176064"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250176512"}, "name": "difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250176960"}, "name": "discard"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250177408"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250177856"}, "name": "intersection_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250178304"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250178752"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250179200"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250179648"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250180096"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250180544"}, "name": "symmetric_difference_update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250180992"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250181440"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250181888"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250182336"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250182784"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250183232"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250183680"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250184128"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250184576"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250185024"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250185472"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250185920"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250186368"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250186816"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250187264"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250187712"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250188160"}, "name": "__gt__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250303552"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119716768"}], "bases": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119716768"}]}], "isAbstract": false}, "140126094511232": {"type": "Overloaded", "items": [{"nodeId": "140126250174272"}, {"nodeId": "140126250174720"}]}, "140126250174272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119716768": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119716768", "variance": "INVARIANT"}, "140126250174720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250175168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": ".1.140126119716768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250175616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126250176064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250176512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250176960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": ".1.140126119716768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250177408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250177856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250178304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250178752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250179200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250179648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": ".1.140126119716768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250180096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250180544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250180992": {"type": "Function", "typeVars": [".-1.140126250180992"], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126250180992"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126094513360"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140126250180992": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250180992", "variance": "INVARIANT"}, "140126094513360": {"type": "Union", "items": [{"nodeId": ".1.140126119716768"}, {"nodeId": ".-1.140126250180992"}]}, "140126250181440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250181888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250182336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250182784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250183232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325571056": {"type": "Concrete", "module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090463040"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296108928"}, "name": "_hash"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296109376"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296109824"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296110272"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296110720"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296111168"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296111616"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296112064"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296112512"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296260672"}, "name": "isdisjoint"}], "typeVars": [{"nodeId": ".1.140126325571056"}], "bases": [{"nodeId": "140126325570048", "args": [{"nodeId": ".1.140126325571056"}]}], "isAbstract": true}, "140126090463040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126325571056": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325571056", "variance": "COVARIANT"}, "140126296108928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296109376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296109824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296110272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296110720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296111168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296111616": {"type": "Function", "typeVars": [".-1.140126296111616"], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126296111616"}]}], "returnType": {"nodeId": "140126325571056", "args": [{"nodeId": "140126106765904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296111616": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296111616", "variance": "INVARIANT"}, "140126106765904": {"type": "Union", "items": [{"nodeId": ".1.140126325571056"}, {"nodeId": ".-1.140126296111616"}]}, "140126296112064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296112512": {"type": "Function", "typeVars": [".-1.140126296112512"], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126296112512"}]}], "returnType": {"nodeId": "140126325571056", "args": [{"nodeId": "140126106766128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296112512": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296112512", "variance": "INVARIANT"}, "140126106766128": {"type": "Union", "items": [{"nodeId": ".1.140126325571056"}, {"nodeId": ".-1.140126296112512"}]}, "140126296260672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126325571056"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126325570048": {"type": "Protocol", "module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090358656"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325570048"}], "bases": [{"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325570048"}]}, {"nodeId": "140126325569712", "args": [{"nodeId": ".1.140126325570048"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}, "140126090358656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570048", "args": [{"nodeId": ".1.140126325570048"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126325570048": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325570048", "variance": "COVARIANT"}, "140126325569712": {"type": "Protocol", "module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090355968"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325569712"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__contains__"]}, "140126090355968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569712", "args": [{"nodeId": ".1.140126325569712"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126325569712": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325569712", "variance": "COVARIANT"}, "140126250183680": {"type": "Function", "typeVars": [".-1.140126250183680"], "argTypes": [{"nodeId": ".-1.140126250183680"}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": ".-1.140126250183680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250183680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250183680", "variance": "INVARIANT"}, "140126250184128": {"type": "Function", "typeVars": [".-1.140126250184128"], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126250184128"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126094513472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250184128": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250184128", "variance": "INVARIANT"}, "140126094513472": {"type": "Union", "items": [{"nodeId": ".1.140126119716768"}, {"nodeId": ".-1.140126250184128"}]}, "140126250184576": {"type": "Function", "typeVars": [".-1.140126250184576"], "argTypes": [{"nodeId": ".-1.140126250184576"}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": ".-1.140126250184576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250184576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250184576", "variance": "INVARIANT"}, "140126250185024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126094513584"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094513584": {"type": "Union", "items": [{"nodeId": ".1.140126119716768"}, {"nodeId": "N"}]}, "140126250185472": {"type": "Function", "typeVars": [".-1.140126250185472"], "argTypes": [{"nodeId": ".-1.140126250185472"}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": ".-1.140126250185472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250185472": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250185472", "variance": "INVARIANT"}, "140126250185920": {"type": "Function", "typeVars": [".-1.140126250185920"], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126250185920"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126094513696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250185920": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250185920", "variance": "INVARIANT"}, "140126094513696": {"type": "Union", "items": [{"nodeId": ".1.140126119716768"}, {"nodeId": ".-1.140126250185920"}]}, "140126250186368": {"type": "Function", "typeVars": [".-1.140126250186368"], "argTypes": [{"nodeId": ".-1.140126250186368"}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119716768"}]}], "returnType": {"nodeId": ".-1.140126250186368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250186368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250186368", "variance": "INVARIANT"}, "140126250186816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250187264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250187712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250188160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119716768"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250303552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126119313472": {"type": "Concrete", "module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090464608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090472224"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296262016"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296262464"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296262912"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296263360"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296263808"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296264256"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296264704"}, "name": "__isub__"}], "typeVars": [{"nodeId": ".1.140126119313472"}], "bases": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119313472"}]}], "isAbstract": true}, "140126090464608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119313472"}]}, {"nodeId": ".1.140126119313472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, ".1.140126119313472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119313472", "variance": "INVARIANT"}, "140126090472224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119313472"}]}, {"nodeId": ".1.140126119313472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140126296262016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119313472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296262464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119313472"}]}], "returnType": {"nodeId": ".1.140126119313472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296262912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313472", "args": [{"nodeId": ".1.140126119313472"}]}, {"nodeId": ".1.140126119313472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140126296263360": {"type": "Function", "typeVars": [".-1.140126296263360"], "argTypes": [{"nodeId": ".-1.140126296263360"}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119313472"}]}], "returnType": {"nodeId": ".-1.140126296263360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296263360": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296263360", "variance": "INVARIANT"}, "140126296263808": {"type": "Function", "typeVars": [".-1.140126296263808"], "argTypes": [{"nodeId": ".-1.140126296263808"}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140126296263808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296263808": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296263808", "variance": "INVARIANT"}, "140126296264256": {"type": "Function", "typeVars": [".-1.140126296264256"], "argTypes": [{"nodeId": ".-1.140126296264256"}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119313472"}]}], "returnType": {"nodeId": ".-1.140126296264256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296264256": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296264256", "variance": "INVARIANT"}, "140126296264704": {"type": "Function", "typeVars": [".-1.140126296264704"], "argTypes": [{"nodeId": ".-1.140126296264704"}, {"nodeId": "140126325571056", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140126296264704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296264704": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296264704", "variance": "INVARIANT"}, "140126106767024": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296266944": {"type": "Function", "typeVars": [".-1.140126296266944"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296266944"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".-1.140126296266944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296266944": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296266944", "variance": "INVARIANT"}, "140126296267392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296267840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126106767248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126106767248": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296268288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126106767472"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126106767472": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296268736": {"type": "Function", "typeVars": [".-1.140126296268736"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296268736"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106767808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296268736": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296268736", "variance": "INVARIANT"}, "140126106767808": {"type": "Union", "items": [{"nodeId": "140126106767696"}, {"nodeId": ".-1.140126296268736"}]}, "140126106767696": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296269184": {"type": "Function", "typeVars": [".-1.140126296269184"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296269184"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106768144"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296269184": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296269184", "variance": "INVARIANT"}, "140126106768144": {"type": "Union", "items": [{"nodeId": "140126106768032"}, {"nodeId": ".-1.140126296269184"}]}, "140126106768032": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296269632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106768480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126106768480": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296270080": {"type": "Function", "typeVars": [".-1.140126296270080"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296270080"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".-1.140126296270080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296270080": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296270080", "variance": "INVARIANT"}, "140126296270528": {"type": "Function", "typeVars": [".-1.140126296270528"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296270528"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106768816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296270528": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296270528", "variance": "INVARIANT"}, "140126106768816": {"type": "Union", "items": [{"nodeId": "140126106768704"}, {"nodeId": ".-1.140126296270528"}]}, "140126106768704": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296270976": {"type": "Function", "typeVars": [".-1.140126296270976"], "argTypes": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296270976"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106769152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296270976": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296270976", "variance": "INVARIANT"}, "140126106769152": {"type": "Union", "items": [{"nodeId": "140126106769040"}, {"nodeId": ".-1.140126296270976"}]}, "140126106769040": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126119711728": {"type": "Concrete", "module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296265152"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296265600"}, "name": "__len__"}], "typeVars": [], "bases": [{"nodeId": "140126119710720"}], "isAbstract": false}, "140126296265152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119711728"}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140126296265600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119711728"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126119710720": {"type": "Protocol", "module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090233216"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__len__"]}, "140126090233216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119710720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126119811712": {"type": "Tuple", "items": [{"nodeId": ".1.140126119712064"}, {"nodeId": ".2.140126119712064"}]}, "140126296395328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}], "returnType": {"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119313808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296395776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}], "returnType": {"nodeId": "140126119712736", "args": [{"nodeId": ".2.140126119313808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119712736": {"type": "Concrete", "module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296391744"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296392192"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296392640"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296393088"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126119712736"}], "bases": [{"nodeId": "140126119711728"}, {"nodeId": "140126325570048", "args": [{"nodeId": ".1.140126119712736"}]}], "isAbstract": false}, "140126296391744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712736", "args": [{"nodeId": ".1.140126119712736"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": ".1.140126119712736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, ".1.140126119712736": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119712736", "variance": "COVARIANT"}, "140126296392192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712736", "args": [{"nodeId": ".1.140126119712736"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296392640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712736", "args": [{"nodeId": ".1.140126119712736"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119712736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126296393088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712736", "args": [{"nodeId": ".1.140126119712736"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119712736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126296396224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119313808"}, {"nodeId": ".2.140126119313808"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296271872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119712400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296272320": {"type": "Function", "typeVars": [".-1.140126296272320"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296272320"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".-1.140126296272320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296272320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296272320", "variance": "INVARIANT"}, "140126296272768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296273216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119712400"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126296273664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119712400"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126296274112": {"type": "Function", "typeVars": [".-1.140126296274112"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296274112"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106769488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296274112": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296274112", "variance": "INVARIANT"}, "140126106769488": {"type": "Union", "items": [{"nodeId": ".1.140126119712400"}, {"nodeId": ".-1.140126296274112"}]}, "140126296274560": {"type": "Function", "typeVars": [".-1.140126296274560"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296274560"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106769600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296274560": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296274560", "variance": "INVARIANT"}, "140126106769600": {"type": "Union", "items": [{"nodeId": ".1.140126119712400"}, {"nodeId": ".-1.140126296274560"}]}, "140126296275008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".1.140126119712400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296275456": {"type": "Function", "typeVars": [".-1.140126296275456"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296275456"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": ".-1.140126296275456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296275456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296275456", "variance": "INVARIANT"}, "140126296275904": {"type": "Function", "typeVars": [".-1.140126296275904"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296275904"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106769824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296275904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296275904", "variance": "INVARIANT"}, "140126106769824": {"type": "Union", "items": [{"nodeId": ".1.140126119712400"}, {"nodeId": ".-1.140126296275904"}]}, "140126296276352": {"type": "Function", "typeVars": [".-1.140126296276352"], "argTypes": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119712400"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126296276352"}]}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126106769936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296276352": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296276352", "variance": "INVARIANT"}, "140126106769936": {"type": "Union", "items": [{"nodeId": ".1.140126119712400"}, {"nodeId": ".-1.140126296276352"}]}, "140126257825152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126119712736", "args": [{"nodeId": ".2.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257825600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257826048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126257826496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126120020672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126257826944": {"type": "Function", "typeVars": [".-1.140126257826944", ".-2.140126257826944"], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126257826944"}, {"nodeId": ".-2.140126257826944"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126106778112"}, {"nodeId": "140126106778224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126257826944": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126257826944", "variance": "INVARIANT"}, ".-2.140126257826944": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126257826944", "variance": "INVARIANT"}, "140126106778112": {"type": "Union", "items": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".-1.140126257826944"}]}, "140126106778224": {"type": "Union", "items": [{"nodeId": ".2.140126120020672"}, {"nodeId": ".-2.140126257826944"}]}, "140126257827392": {"type": "Function", "typeVars": [".-1.140126257827392", ".-2.140126257827392"], "argTypes": [{"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".2.140126120020672"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126257827392"}, {"nodeId": ".-2.140126257827392"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126106778336"}, {"nodeId": "140126106778448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126257827392": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126257827392", "variance": "INVARIANT"}, ".-2.140126257827392": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126257827392", "variance": "INVARIANT"}, "140126106778336": {"type": "Union", "items": [{"nodeId": ".1.140126120020672"}, {"nodeId": ".-1.140126257827392"}]}, "140126106778448": {"type": "Union", "items": [{"nodeId": ".2.140126120020672"}, {"nodeId": ".-2.140126257827392"}]}, "140126053007872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053007648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053007424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126052679264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126052679040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126099127680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099127680": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126052678816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098815712": {"type": "Overloaded", "items": [{"nodeId": "140126291781312"}, {"nodeId": "140126291781760"}]}, "140126291781312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126291781760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"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"]}, "140126099125440": {"type": "Overloaded", "items": [{"nodeId": "140126291782208"}, {"nodeId": "140126098307360"}]}, "140126291782208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126098307360": {"type": "Function", "typeVars": [".-1.140126098307360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126098307360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}, ".-1.140126098307360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098307360", "variance": "INVARIANT"}, "140126291783104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140126098306688": {"type": "Function", "typeVars": [".-1.140126098306688"], "argTypes": [{"nodeId": ".-1.140126098306688"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140126098306688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126098306688": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098306688", "variance": "INVARIANT"}, "140126291784000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119315488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126291784448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126291784896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126052678592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}, "140126291785792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120027392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126120027392": {"type": "Concrete", "module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086307328"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258530560"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258531008"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086307328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120027392"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258530560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120027392"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120027392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258531008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120027392"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120027392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291786240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315488"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120027392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126086304640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086304864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258396096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}, {"nodeId": "140126119315488"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}, "140126258396544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258529216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026720"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325570384": {"type": "Concrete", "module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106763664"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296099968"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296100416"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296100864"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296101312"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296101760"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126325570384"}], "bases": [{"nodeId": "140126325570048", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126325570384"}]}], "isAbstract": true}, "140126106763664": {"type": "Overloaded", "items": [{"nodeId": "140126296099072"}, {"nodeId": "140126296099520"}]}, "140126296099072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126325570384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126325570384": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325570384", "variance": "COVARIANT"}, "140126296099520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296099968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "A"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}, "140126296100416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140126296100864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296101312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325570384"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126296101760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570384"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325570384"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126325567360": {"type": "Protocol", "module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090240384"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325567360"}], "bases": [{"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325567360"}]}], "protocolMembers": ["__iter__", "__reversed__"]}, "140126090240384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126325567360"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325567360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126325567360": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325567360", "variance": "COVARIANT"}, "140126099337648": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099337872": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099337984": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254445760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140126254446656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099338208"}, {"nodeId": "140126099338320"}, {"nodeId": "140126099338432"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099338208": {"type": "Union", "items": [{"nodeId": "140126099338096"}, {"nodeId": "140126120017984"}]}, "140126099338096": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099338320": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099338432": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254447104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099338544"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140126099338544": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}]}, "140126254448000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099338768"}, {"nodeId": "140126099338880"}, {"nodeId": "140126099338992"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099338768": {"type": "Union", "items": [{"nodeId": "140126099338656"}, {"nodeId": "140126120017984"}]}, "140126099338656": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099338880": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099338992": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249320512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249320960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249321408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249321856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249322304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249322752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249323200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249323648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249324096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126099339104"}]}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099339104": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249324544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}, {"nodeId": "140126099339216"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126099339216": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126119716432": {"type": "Concrete", "module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099336752"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249442816"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249443264"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249443712"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249444160"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249444608"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249445056"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249445504"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249445952"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249446848"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249447296"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249447744"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249448640"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249449088"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249449536"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249449984"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249450432"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249450880"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249533504"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249533952"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249534400"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249534848"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249535296"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249535744"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249536192"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249536640"}, "name": "lstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249537088"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249537536"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249537984"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249538432"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249538880"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249539328"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249539776"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249540224"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249540672"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249541120"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249541568"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249542016"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249542464"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249542912"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249543360"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249543808"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249544256"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249544704"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249545152"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249545600"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249546048"}, "name": "zfill"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126048057632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126048241696"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249547392"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249547840"}, "name": "__iter__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094313840"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094314624"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249681408"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249681856"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126099320480"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249682752"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249683200"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249683648"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249684096"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249684544"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249684992"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249685440"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249685888"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249686336"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249686784"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249687232"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249687680"}, "name": "__alloc__"}], "typeVars": [], "bases": [{"nodeId": "140126325570720", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119714080"}], "isAbstract": false}, "140126099336752": {"type": "Overloaded", "items": [{"nodeId": "140126249441472"}, {"nodeId": "140126249441920"}, {"nodeId": "140126249442368"}]}, "140126249441472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249441920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094314848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094314848": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126120017984"}]}, {"nodeId": "140126120017984"}, {"nodeId": "140126094314736"}]}, "140126094314736": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249442368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}, "140126249442816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249443264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249443712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126249444160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094315072"}, {"nodeId": "140126094315184"}, {"nodeId": "140126094315296"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094315072": {"type": "Union", "items": [{"nodeId": "140126094314960"}, {"nodeId": "140126120017984"}]}, "140126094314960": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094315184": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094315296": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249444608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249445056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140126249445504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094315632"}, {"nodeId": "140126094315744"}, {"nodeId": "140126094315856"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094315632": {"type": "Union", "items": [{"nodeId": "140126094315408"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126094315520"}]}]}, "140126094315408": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094315520": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094315744": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094315856": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249445952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140126249446848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126120017984"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249447296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094316080"}, {"nodeId": "140126094316192"}, {"nodeId": "140126094316304"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094316080": {"type": "Union", "items": [{"nodeId": "140126094315968"}, {"nodeId": "140126120017984"}]}, "140126094315968": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094316192": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094316304": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249447744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094316416"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140126094316416": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}]}, "140126249448640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094316640"}, {"nodeId": "140126094316752"}, {"nodeId": "140126094316864"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094316640": {"type": "Union", "items": [{"nodeId": "140126094316528"}, {"nodeId": "140126120017984"}]}, "140126094316528": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094316752": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094316864": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249449088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126249449536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249449984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249450432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249450880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249533504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249533952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249534400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249534848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249535296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126094316976"}]}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094316976": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249535744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}, {"nodeId": "140126094317088"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126094317088": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126249536192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249536640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094317312"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126094317312": {"type": "Union", "items": [{"nodeId": "140126094317200"}, {"nodeId": "N"}]}, "140126094317200": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249537088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094317424"}], "returnType": {"nodeId": "140126094317648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094317424": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094317648": {"type": "Tuple", "items": [{"nodeId": "140126119716432"}, {"nodeId": "140126119716432"}, {"nodeId": "140126119716432"}]}, "140126249537536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126249537984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249538432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094317760"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094317760": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249538880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094317872"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094317872": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249539328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094317984"}, {"nodeId": "140126094318096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094317984": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094318096": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249539776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094318320"}, {"nodeId": "140126094318432"}, {"nodeId": "140126094318544"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094318320": {"type": "Union", "items": [{"nodeId": "140126094318208"}, {"nodeId": "140126120017984"}]}, "140126094318208": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094318432": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094318544": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249540224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094318768"}, {"nodeId": "140126094318880"}, {"nodeId": "140126094318992"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094318768": {"type": "Union", "items": [{"nodeId": "140126094318656"}, {"nodeId": "140126120017984"}]}, "140126094318656": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094318880": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094318992": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249540672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}, {"nodeId": "140126094319104"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126094319104": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126249541120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094319216"}], "returnType": {"nodeId": "140126094319440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094319216": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094319440": {"type": "Tuple", "items": [{"nodeId": "140126119716432"}, {"nodeId": "140126119716432"}, {"nodeId": "140126119716432"}]}, "140126249541568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094319664"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716432"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126094319664": {"type": "Union", "items": [{"nodeId": "140126094319552"}, {"nodeId": "N"}]}, "140126094319552": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249542016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094319888"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126094319888": {"type": "Union", "items": [{"nodeId": "140126094319776"}, {"nodeId": "N"}]}, "140126094319776": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249542464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094320112"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716432"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126094320112": {"type": "Union", "items": [{"nodeId": "140126094320000"}, {"nodeId": "N"}]}, "140126094320000": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249542912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716432"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140126249543360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094320448"}, {"nodeId": "140126094320560"}, {"nodeId": "140126094320672"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094320448": {"type": "Union", "items": [{"nodeId": "140126094320224"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126094320336"}]}]}, "140126094320224": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094320336": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094320560": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094320672": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249543808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094320896"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126094320896": {"type": "Union", "items": [{"nodeId": "140126094320784"}, {"nodeId": "N"}]}, "140126094320784": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249544256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249544704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249545152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094321120"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140126094321120": {"type": "Union", "items": [{"nodeId": "140126094321008"}, {"nodeId": "N"}]}, "140126094321008": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249545600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249546048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126048057632": {"type": "Function", "typeVars": [".-1.140126048057632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126048057632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126048057632": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126048057632", "variance": "INVARIANT"}, "140126048241696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126094321232"}, {"nodeId": "140126094321344"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094321232": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094321344": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249547392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249547840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094313840": {"type": "Overloaded", "items": [{"nodeId": "140126249548288"}, {"nodeId": "140126249548736"}]}, "140126249548288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249548736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094314624": {"type": "Overloaded", "items": [{"nodeId": "140126249549184"}, {"nodeId": "140126249680960"}]}, "140126249549184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126249680960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126119318512"}, {"nodeId": "140126094321680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126094321680": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126120017984"}]}, {"nodeId": "140126119716096"}]}, "140126249681408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094321792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094321792": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126249681856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094321904"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094321904": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099320480": {"type": "Function", "typeVars": [".-1.140126099320480"], "argTypes": [{"nodeId": ".-1.140126099320480"}, {"nodeId": "140126094322016"}], "returnType": {"nodeId": ".-1.140126099320480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126099320480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126099320480", "variance": "INVARIANT"}, "140126094322016": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249682752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249683200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249683648": {"type": "Function", "typeVars": [".-1.140126249683648"], "argTypes": [{"nodeId": ".-1.140126249683648"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".-1.140126249683648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126249683648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249683648", "variance": "INVARIANT"}, "140126249684096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249684544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094322352"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094322352": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126094322240"}]}, "140126094322240": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249684992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249685440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249685888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094322464"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094322464": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249686336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094322576"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094322576": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249686784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094322688"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094322688": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249687232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}, {"nodeId": "140126094322800"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094322800": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249687680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716432"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325570720": {"type": "Concrete", "module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090362464"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106764112"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106764672"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106765008"}, "items": [{"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296105344"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296105792"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296106240"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296106688"}, "name": "reverse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296107136"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296107584"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296108032"}, "name": "__iadd__"}], "typeVars": [{"nodeId": ".1.140126325570720"}], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": ".1.140126325570720"}]}], "isAbstract": true}, "140126090362464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119316160"}, {"nodeId": ".1.140126325570720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}, ".1.140126325570720": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325570720", "variance": "INVARIANT"}, "140126106764112": {"type": "Overloaded", "items": [{"nodeId": "140126296102656"}, {"nodeId": "140126296103104"}]}, "140126296102656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126325570720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296103104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126106764672": {"type": "Overloaded", "items": [{"nodeId": "140126296103552"}, {"nodeId": "140126296104000"}]}, "140126296103552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119316160"}, {"nodeId": ".1.140126325570720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126296104000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119318512"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325570720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126106765008": {"type": "Overloaded", "items": [{"nodeId": "140126296104448"}, {"nodeId": "140126296104896"}]}, "140126296104448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296104896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296105344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": ".1.140126325570720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140126296105792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296106240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325570720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}, "140126296106688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126296107136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126325570720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}, "140126296107584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126325570720"}]}, {"nodeId": ".1.140126325570720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140126296108032": {"type": "Function", "typeVars": [".-1.140126296108032"], "argTypes": [{"nodeId": ".-1.140126296108032"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126325570720"}]}], "returnType": {"nodeId": ".-1.140126296108032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126296108032": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296108032", "variance": "INVARIANT"}, "140126119714080": {"type": "Concrete", "module": "typing", "simpleName": "ByteString", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": true}, "140126249324992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249325440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099339440"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126099339440": {"type": "Union", "items": [{"nodeId": "140126099339328"}, {"nodeId": "N"}]}, "140126099339328": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249325888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099339552"}], "returnType": {"nodeId": "140126099339776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099339552": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099339776": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}]}, "140126249326336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099339888"}, {"nodeId": "140126099340000"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099339888": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099340000": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249326784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099340112"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099340112": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249327232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099340224"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099340224": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249327680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099340448"}, {"nodeId": "140126099340560"}, {"nodeId": "140126099340672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099340448": {"type": "Union", "items": [{"nodeId": "140126099340336"}, {"nodeId": "140126120017984"}]}, "140126099340336": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099340560": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099340672": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249328128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126099340896"}, {"nodeId": "140126099341008"}, {"nodeId": "140126099341120"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099340896": {"type": "Union", "items": [{"nodeId": "140126099340784"}, {"nodeId": "140126120017984"}]}, "140126099340784": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099341008": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099341120": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249328576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}, {"nodeId": "140126094311488"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126094311488": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126249329024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094311600"}], "returnType": {"nodeId": "140126094311824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094311600": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094311824": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}]}, "140126249329472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094312048"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126094312048": {"type": "Union", "items": [{"nodeId": "140126094311936"}, {"nodeId": "N"}]}, "140126094311936": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249329920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094312272"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126094312272": {"type": "Union", "items": [{"nodeId": "140126094312160"}, {"nodeId": "N"}]}, "140126094312160": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249330368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094312496"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126094312496": {"type": "Union", "items": [{"nodeId": "140126094312384"}, {"nodeId": "N"}]}, "140126094312384": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249330816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140126249331264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094312832"}, {"nodeId": "140126094312944"}, {"nodeId": "140126094313056"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126094312832": {"type": "Union", "items": [{"nodeId": "140126094312608"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126094312720"}]}]}, "140126094312608": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094312720": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094312944": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126094313056": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126249331712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094313280"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126094313280": {"type": "Union", "items": [{"nodeId": "140126094313168"}, {"nodeId": "N"}]}, "140126094313168": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249332160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249332608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249333056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094313504"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}, "140126094313504": {"type": "Union", "items": [{"nodeId": "140126094313392"}, {"nodeId": "N"}]}, "140126094313392": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249333504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249333952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126048053152": {"type": "Function", "typeVars": [".-1.140126048053152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126048053152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126048053152": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126048053152", "variance": "INVARIANT"}, "140126048052704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126094313616"}, {"nodeId": "140126094313728"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094313616": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126094313728": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249335296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249335744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126099335744": {"type": "Overloaded", "items": [{"nodeId": "140126249336192"}, {"nodeId": "140126249435200"}]}, "140126249336192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249435200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249435648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094313952"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094313952": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249436096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249436544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249436992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249437440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126094314288"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094314288": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126094314176"}]}, "140126094314176": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249437888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249438336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249438784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249439232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249439680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249440128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249440576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126094314512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094314512": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}]}, "140126110977488": {"type": "TypeAlias", "target": {"nodeId": "140126110977376"}}, "140126110977376": {"type": "Union", "items": [{"nodeId": "140126119716432"}, {"nodeId": "140126119318176"}, {"nodeId": "140126116043728", "args": [{"nodeId": "A"}]}, {"nodeId": "140126115186720"}, {"nodeId": "140126115706048"}, {"nodeId": "140126120033440"}]}, "140126119318176": {"type": "Concrete", "module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048249984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048250432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048250656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048250880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048251104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048251328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048251552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048251776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048252000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048252224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048252448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048252672"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249693504"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249693952"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249694400"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249694848"}, "name": "cast"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094321456"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249696192"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249696640"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249795648"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094321568"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249796992"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249797888"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249798336"}, "name": "toreadonly"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249798784"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249799232"}, "name": "hex"}], "typeVars": [], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126048249984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048250432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048250656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126094322912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094322912": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "N"}]}, "140126048250880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126094323024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094323024": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "N"}]}, "140126048251104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126094323136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094323136": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "N"}]}, "140126048251328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048251552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048251776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126094323248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094323248": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126048252000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048252224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048252448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048252672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249693504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126094323360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126094323360": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249693952": {"type": "Function", "typeVars": [".-1.140126249693952"], "argTypes": [{"nodeId": ".-1.140126249693952"}], "returnType": {"nodeId": ".-1.140126249693952"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126249693952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249693952", "variance": "INVARIANT"}, "140126249694400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126094323472"}, {"nodeId": "140126094323584"}, {"nodeId": "140126094323696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126094323472": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126094323584": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126119323552": {"type": "Concrete", "module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128529904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119810480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128524976"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245809152"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245809600"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245810048"}, "name": "with_traceback"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128529904": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126119810480": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126128524976": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126120025376": {"type": "Concrete", "module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258381760"}, "name": "__init__"}, {"kind": "Variable", "name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119816416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086196672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086197120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086197344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126258381760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025376"}, {"nodeId": "140126107081120"}, {"nodeId": "140126120025712"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}, "140126107081120": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126120025712": {"type": "Concrete", "module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086198464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086199136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086199360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086199584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086199808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086200032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086200256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119816864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258386688"}, "name": "clear"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086198464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126107081232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107081232": {"type": "Union", "items": [{"nodeId": "140126120025712"}, {"nodeId": "N"}]}, "140126086199136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086199360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126120020336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126120020336": {"type": "Concrete", "module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085895936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085897280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085896832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085897504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085897728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085897952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085898176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085898400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085898624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085898848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085899072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085899296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085899520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085899744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085899968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085900192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126085900864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258013440"}, "name": "co_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258015680"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258017472"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126085895936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085897280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085896832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085897504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085897728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085897952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085898176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085898400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085898624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085898848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085899072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085899296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085899520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085899744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085899968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085900192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126085900864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258013440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126106777888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126106777888": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126106777664"}]}, "140126106777664": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126258015680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}], "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]}, "140126258017472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020336"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126120020336"}, "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"]}, "140126086199584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086199808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086200032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126107081680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107081680": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "A"}]}, "140126086200256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119816864": {"type": "Union", "items": [{"nodeId": "140126128555392"}, {"nodeId": "N"}]}, "140126128555392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126258386688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119816416": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126086196672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025376"}], "returnType": {"nodeId": "140126120025712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086197120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025376"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086197344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025376"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126245809152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140126245809600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119323552"}, {"nodeId": "140126094850784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094850784": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126245810048": {"type": "Function", "typeVars": [".-1.140126245810048"], "argTypes": [{"nodeId": ".-1.140126245810048"}, {"nodeId": "140126094850896"}], "returnType": {"nodeId": ".-1.140126245810048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126245810048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245810048", "variance": "INVARIANT"}, "140126094850896": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126094323696": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126249694848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126119317840"}, {"nodeId": "140126094323808"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}, "140126094323808": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}]}, "140126094321456": {"type": "Overloaded", "items": [{"nodeId": "140126249695296"}, {"nodeId": "140126249695744"}]}, "140126249695296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249695744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249696192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249696640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249795648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094321568": {"type": "Overloaded", "items": [{"nodeId": "140126249796096"}, {"nodeId": "140126249796544"}]}, "140126249796096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126119318512"}, {"nodeId": "140126094324144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126094324144": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126249796544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126249796992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126094324704"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140126094324704": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140126249797888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249798336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249798784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249799232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119318176"}, {"nodeId": "140126094324592"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}, "140126094324592": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}]}, "140126116043728": {"type": "Concrete", "module": "array", "simpleName": "array", "members": [{"kind": "Variable", "name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126061180544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126061179648"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098802608"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199441312"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199441760"}, "name": "buffer_info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199442208"}, "name": "byteswap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199442656"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199443104"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199443552"}, "name": "frombytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199444000"}, "name": "fromfile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199444448"}, "name": "fromlist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199444896"}, "name": "fromunicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199445344"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199446240"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199446688"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199447136"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203740448"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203740896"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203741344"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203741792"}, "name": "tounicode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203743136"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098811568"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098813024"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203745376"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203745824"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203746272"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203746720"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203747168"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203747616"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203748064"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203748512"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203748960"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203749408"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203749856"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203750304"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.140126116043728"}], "bases": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126116043728"}]}], "isAbstract": false}, "140126061180544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126098811456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116043728": {"type": "TypeVar", "varName": "_T", "values": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119317840"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116043728", "variance": "INVARIANT"}, "140126119316496": {"type": "Concrete", "module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126099309728"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253970624"}, "name": "as_integer_ratio"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253971072"}, "name": "hex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253971520"}, "name": "is_integer"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126053161600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053161824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053162048"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254071872"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254072320"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254072768"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254073216"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254073664"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254074112"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254074560"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254075008"}, "name": "__divmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099326448"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254076352"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254076800"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254077248"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254077696"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254078144"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254078592"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254079040"}, "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099331376"}, "items": [{"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254080832"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254081280"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254081728"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254082176"}, "name": "__floor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099330368"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254083520"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254083968"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254084416"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254084864"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254085312"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254085760"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254086208"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254086656"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254087104"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254087552"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254186560"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254187008"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126099309728": {"type": "Function", "typeVars": [".-1.140126099309728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099329808"}], "returnType": {"nodeId": ".-1.140126099309728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}, "140126099329808": {"type": "Union", "items": [{"nodeId": "140126119709376"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099329696"}]}, "140126119709376": {"type": "Protocol", "module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090156672"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__float__"]}, "140126090156672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119709376"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126099329696": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, ".-1.140126099309728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126099309728", "variance": "INVARIANT"}, "140126253970624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126099330032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099330032": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126253971072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253971520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053161600": {"type": "Function", "typeVars": [".-1.140126053161600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126053161600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126053161600": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126053161600", "variance": "INVARIANT"}, "140126053161824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053162048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254071872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254072320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254072768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254073216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254073664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254074112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254074560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254075008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126099330256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126099330256": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126099326448": {"type": "Overloaded", "items": [{"nodeId": "140126254075456"}, {"nodeId": "140126254075904"}]}, "140126254075456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126254075904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126254076352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254076800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254077248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254077696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254078144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254078592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254079040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126099330704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099330704": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126099331376": {"type": "Overloaded", "items": [{"nodeId": "140126254079488"}, {"nodeId": "140126254079936"}, {"nodeId": "140126254080384"}]}, "140126254079488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126099330928"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099330928": {"type": "TypeAlias", "target": {"nodeId": "140126110987232"}}, "140126110987232": {"type": "Union", "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"}]}, "140126254079936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126099334176"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099334176": {"type": "TypeAlias", "target": {"nodeId": "140126110989584"}}, "140126110989584": {"type": "Union", "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"}]}, "140126119316832": {"type": "Concrete", "module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099333392"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053167424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053168320"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254190144"}, "name": "conjugate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254190592"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254191040"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254191488"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254191936"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254192384"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254192832"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254193280"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254193728"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254194176"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254194624"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254195072"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254195520"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254195968"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254196416"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254196864"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254197312"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126099333392": {"type": "Overloaded", "items": [{"nodeId": "140126254187456"}, {"nodeId": "140126254187904"}]}, "140126254187456": {"type": "Function", "typeVars": [".-1.140126254187456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099331264"}, {"nodeId": "140126099331600"}], "returnType": {"nodeId": ".-1.140126254187456"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}, "140126099331264": {"type": "Union", "items": [{"nodeId": "140126119316832"}, {"nodeId": "140126119709712"}, {"nodeId": "140126119709376"}, {"nodeId": "140126120017984"}]}, "140126119709712": {"type": "Protocol", "module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090158016"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__complex__"]}, "140126090158016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119709712"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126099331600": {"type": "Union", "items": [{"nodeId": "140126119316832"}, {"nodeId": "140126119709376"}, {"nodeId": "140126120017984"}]}, ".-1.140126254187456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254187456", "variance": "INVARIANT"}, "140126254187904": {"type": "Function", "typeVars": [".-1.140126254187904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099331712"}], "returnType": {"nodeId": ".-1.140126254187904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}, "140126099331712": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119709712"}, {"nodeId": "140126119709376"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119316832"}]}, ".-1.140126254187904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254187904", "variance": "INVARIANT"}, "140126053167424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053168320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254190144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254190592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254191040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254191488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254191936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126254192384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254192832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254193280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254193728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254194176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126254194624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254195072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254195520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254195968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254196416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254196864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254197312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254080384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126254080832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126099330816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099330816": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}]}, "140126254081280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254081728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254082176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099330368": {"type": "Overloaded", "items": [{"nodeId": "140126254082624"}, {"nodeId": "140126254083072"}]}, "140126254082624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126254083072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126254083520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254083968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254084416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254084864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254085312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254085760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254086208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254086656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254087104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254087552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254186560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254187008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098811456": {"type": "TypeAlias", "target": {"nodeId": "140126116102880"}}, "140126116102880": {"type": "Union", "items": [{"nodeId": "140126128534944"}, {"nodeId": "140126115822864"}, {"nodeId": "140126115822752"}]}, "140126128534944": {"type": "TypeAlias", "target": {"nodeId": "140126116102768"}}, "140126116102768": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126115822864": {"type": "TypeAlias", "target": {"nodeId": "140126115822304"}}, "140126115822304": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126115822752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126061179648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098802608": {"type": "Overloaded", "items": [{"nodeId": "140126098300192"}, {"nodeId": "140126199439520"}, {"nodeId": "140126199439968"}, {"nodeId": "140126199440416"}, {"nodeId": "140126199440864"}]}, "140126098300192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126098802720"}, {"nodeId": "140126098811792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126098802720": {"type": "TypeAlias", "target": {"nodeId": "140126116102768"}}, "140126098811792": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119316160"}]}]}, "140126199439520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": "140126119316496"}]}, {"nodeId": "140126098812688"}, {"nodeId": "140126098811680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126098812688": {"type": "TypeAlias", "target": {"nodeId": "140126115822304"}}, "140126098811680": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119316496"}]}]}, "140126199439968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126098812912"}, {"nodeId": "140126098812576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126098812912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126098812576": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}]}, "140126199440416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126199440864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126098812016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126098812016": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126199441312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": ".1.140126116043728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126199441760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126098812128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098812128": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126199442208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199442656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": ".1.140126116043728"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126199443104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126199443552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126098812240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098812240": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126199444000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116051792", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126116051792": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253717696"}, "name": "read"}], "typeVars": [{"nodeId": ".1.140126116051792"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read"]}, "140126253717696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116051792", "args": [{"nodeId": ".1.140126116051792"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126116051792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140126116051792": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116051792", "variance": "COVARIANT"}, "140126199444448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126199444896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126199445344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": ".1.140126116043728"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126199446240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119316160"}, {"nodeId": ".1.140126116043728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126199446688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126116043728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126199447136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": ".1.140126116043728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126203740448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126203740896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126110990400", "args": [{"nodeId": "140126119716096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126110990400": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253719040"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140126110990400"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["write"]}, "140126253719040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126110990400", "args": [{"nodeId": ".1.140126110990400"}]}, {"nodeId": ".1.140126110990400"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140126110990400": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126110990400", "variance": "CONTRAVARIANT"}, "140126203741344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126203741792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126203743136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126098811568": {"type": "Overloaded", "items": [{"nodeId": "140126203743584"}, {"nodeId": "140126203744032"}]}, "140126203743584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126116043728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203744032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098813024": {"type": "Overloaded", "items": [{"nodeId": "140126203744480"}, {"nodeId": "140126203744928"}]}, "140126203744480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126120017984"}, {"nodeId": ".1.140126116043728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126203744928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119318512"}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126203745376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126098812800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098812800": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126203745824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203746272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203746720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203747168": {"type": "Function", "typeVars": [".-1.140126203747168"], "argTypes": [{"nodeId": ".-1.140126203747168"}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": ".-1.140126203747168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126203747168": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126203747168", "variance": "INVARIANT"}, "140126203747616": {"type": "Function", "typeVars": [".-1.140126203747616"], "argTypes": [{"nodeId": ".-1.140126203747616"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126203747616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126203747616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126203747616", "variance": "INVARIANT"}, "140126203748064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203748512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203748960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203749408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203749856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126203750304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126116043728", "args": [{"nodeId": ".1.140126116043728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126115186720": {"type": "Concrete", "module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195721472"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195721920"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195722368"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195723264"}, "name": "move"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195723712"}, "name": "read_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195724160"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195724608"}, "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195725056"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195725504"}, "name": "size"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195725952"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195726400"}, "name": "write_byte"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195726848"}, "name": "__len__"}, {"kind": "Variable", "name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195727296"}, "name": "madvise"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195727744"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203985984"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203986432"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203986880"}, "name": "write"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126102698720"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203988224"}, "name": "__delitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126102862560"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203989568"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203990016"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203990464"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203990912"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119710720"}], "isAbstract": false}, "140126195721472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126195721920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126195722368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}, "140126195723264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}, "140126195723712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126195724160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126195724608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}, "140126195725056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}, "140126195725504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126195725952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126195726400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}, "140126195726848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126195727296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}, "140126195727744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126102962912"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140126102962912": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126203985984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126102963024"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}, "140126102963024": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126203986432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126102963136"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126102963136": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126203986880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126102963248"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}, "140126102963248": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126102698720": {"type": "Overloaded", "items": [{"nodeId": "140126203987328"}, {"nodeId": "140126203987776"}]}, "140126203987328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203987776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203988224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126102963472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126102963472": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}]}, "140126102862560": {"type": "Overloaded", "items": [{"nodeId": "140126203988672"}, {"nodeId": "140126203989120"}]}, "140126203988672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126203989120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126119318512"}, {"nodeId": "140126102963696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126102963696": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126203989568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203990016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126203990464": {"type": "Function", "typeVars": [".-1.140126203990464"], "argTypes": [{"nodeId": ".-1.140126203990464"}], "returnType": {"nodeId": ".-1.140126203990464"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126203990464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126203990464", "variance": "INVARIANT"}, "140126203990912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186720"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140126115706048": {"type": "Concrete", "module": "ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "name": "_b_base", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120219520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126140540160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126140539488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126140541056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126140542176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126140542624"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126120219520": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "140126119316160"}]}, {"nodeId": "N"}]}, "140126140540160": {"type": "Function", "typeVars": [".-1.140126140540160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126103461152"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126140540160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140126103461152": {"type": "TypeAlias", "target": {"nodeId": "140126110977376"}}, ".-1.140126140540160": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126140540160", "variance": "INVARIANT"}, "140126140539488": {"type": "Function", "typeVars": [".-1.140126140539488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126103461264"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126140539488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}, "140126103461264": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, ".-1.140126140539488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126140539488", "variance": "INVARIANT"}, "140126140541056": {"type": "Function", "typeVars": [".-1.140126140541056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126140541056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}, ".-1.140126140541056": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126140541056", "variance": "INVARIANT"}, "140126140542176": {"type": "Function", "typeVars": [".-1.140126140542176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126103461488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, "140126103461488": {"type": "Union", "items": [{"nodeId": ".-1.140126140542176"}, {"nodeId": "140126115708064"}]}, ".-1.140126140542176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126140542176", "variance": "INVARIANT"}, "140126115708064": {"type": "Concrete", "module": "ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126140542624": {"type": "Function", "typeVars": [".-1.140126140542624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126115705040"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126140542624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}, "140126115705040": {"type": "Concrete", "module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115706048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203991808"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203992704"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203993152"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126203991808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115705040"}, {"nodeId": "140126103460704"}, {"nodeId": "140126119316160"}, {"nodeId": "140126103460816"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103460928"}], "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"]}, "140126103460704": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103460816": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126103460928": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126203992704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115705040"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115707392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126115707392": {"type": "Concrete", "module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115707056"}], "isAbstract": false}, "140126115707056": {"type": "Concrete", "module": "ctypes", "simpleName": "_FuncPointer", "members": [{"kind": "Variable", "name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115232032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325570384", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115809984"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103458688"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126204000768"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126115706720"}, {"nodeId": "140126115706048"}], "isAbstract": false}, "140126115232032": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126128627648"}, {"nodeId": "N"}]}, "140126128627648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126115809984": {"type": "TypeAlias", "target": {"nodeId": "140126128563904"}}, "140126128563904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115232368"}, {"nodeId": "140126115707056"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126115706048"}]}], "returnType": {"nodeId": "140126115706048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126115232368": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126103458688": {"type": "Overloaded", "items": [{"nodeId": "140126203998976"}, {"nodeId": "140126203999424"}, {"nodeId": "140126203999872"}, {"nodeId": "140126204000320"}]}, "140126203998976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115707056"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "address"]}, "140126203999424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115707056"}, {"nodeId": "140126098292800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, "140126098292800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126203999872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115707056"}, {"nodeId": "140126103462160"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126103462272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "func_spec", "paramflags"]}, "140126103462160": {"type": "Tuple", "items": [{"nodeId": "140126103461824"}, {"nodeId": "140126115705040"}]}, "140126103461824": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126103462272": {"type": "TypeAlias", "target": {"nodeId": "140126115811104"}}, "140126115811104": {"type": "Union", "items": [{"nodeId": "140126115808976"}, {"nodeId": "140126115810768"}, {"nodeId": "140126115810992"}]}, "140126115808976": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}]}, "140126115810768": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126115810992": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126204000320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115707056"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126103462608"}]}, {"nodeId": "140126111599632", "args": [{"nodeId": "140126115874848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "vtlb_index", "name", "paramflags", "iid"]}, "140126103462608": {"type": "TypeAlias", "target": {"nodeId": "140126115811104"}}, "140126111599632": {"type": "Concrete", "module": "ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126111599632"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103458800"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103462384"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199210816"}, "name": "__setitem__"}], "typeVars": [{"nodeId": ".1.140126111599632"}], "bases": [{"nodeId": "140126115706720"}, {"nodeId": "140126115706048"}], "isAbstract": false}, ".1.140126111599632": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140126115706048"}, "def": "140126111599632", "variance": "INVARIANT"}, "140126103458800": {"type": "Overloaded", "items": [{"nodeId": "140126199209024"}, {"nodeId": "140126199209472"}]}, "140126199209024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599632", "args": [{"nodeId": ".1.140126111599632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199209472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599632", "args": [{"nodeId": ".1.140126111599632"}]}, {"nodeId": ".1.140126111599632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}, "140126103462384": {"type": "Overloaded", "items": [{"nodeId": "140126199209920"}, {"nodeId": "140126199210368"}]}, "140126199209920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599632", "args": [{"nodeId": ".1.140126111599632"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126199210368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599632", "args": [{"nodeId": ".1.140126111599632"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126199210816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599632", "args": [{"nodeId": ".1.140126111599632"}]}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126115706720": {"type": "Concrete", "module": "ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115706384"}], "isAbstract": false}, "140126115706384": {"type": "Concrete", "module": "ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115706048"}], "isAbstract": false}, "140126115874848": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115708400": {"type": "Concrete", "module": "ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126115708400"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199214848"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140126115708400"}], "bases": [{"nodeId": "140126115706048"}], "isAbstract": false}, ".1.140126115708400": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115708400", "variance": "INVARIANT"}, "140126199214848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115708400", "args": [{"nodeId": ".1.140126115708400"}]}, {"nodeId": ".1.140126115708400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126204000768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115707056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126203993152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115705040"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115707392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126140542624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126140542624", "variance": "INVARIANT"}, "140126120033440": {"type": "Concrete", "module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182602592"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182603040"}, "name": "raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182603488"}, "name": "release"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126182602592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033440"}, {"nodeId": "140126107700016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}, "140126107700016": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126182603040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033440"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182603488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119709040": {"type": "Protocol", "module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090155328"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__int__"]}, "140126090155328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119709040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126116049776": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253713664"}, "name": "__trunc__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__trunc__"]}, "140126253713664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116049776"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126098306464": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098306464", "variance": "INVARIANT"}, "140126098308704": {"type": "Function", "typeVars": [".-1.140126098308704"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099326784"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".-1.140126098308704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}, "140126099326784": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, ".-1.140126098308704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098308704", "variance": "INVARIANT"}, "140126262248832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126099327120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099327120": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "0"}]}, "140126052675680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126052676576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126052675456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126052674784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126262251072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126262251520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126262251968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126262253312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126120017984"}, {"nodeId": "140126099327680"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}, "140126099327680": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126052674336": {"type": "Function", "typeVars": [".-1.140126052674336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099327904"}, {"nodeId": "140126099328240"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126052674336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}, "140126099327904": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126120017984"}]}, {"nodeId": "140126119710048"}, {"nodeId": "140126099327792"}]}, "140126099327792": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126099328240": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, ".-1.140126052674336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126052674336", "variance": "INVARIANT"}, "140126262254208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262254656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262255104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262255552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262256000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262256448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262256896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126099328464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126099328464": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126262257344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262257792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262258240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262258688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262259136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262259584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262260032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126099328688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099328688": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126099326000": {"type": "Overloaded", "items": [{"nodeId": "140126262260480"}, {"nodeId": "140126262260928"}, {"nodeId": "140126262261376"}, {"nodeId": "140126262261824"}, {"nodeId": "140126262262272"}, {"nodeId": "140126262262720"}]}, "140126262260480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262260928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126262261376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126099329360"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099329360": {"type": "TypeAlias", "target": {"nodeId": "140126110987232"}}, "140126262261824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126099332160"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099332160": {"type": "TypeAlias", "target": {"nodeId": "140126110989584"}}, "140126262262272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126262262720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126262263168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126099332048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099332048": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126253957184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253957632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253958080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253958528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253958976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253959424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253959872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253960320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253960768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253961216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253961664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253962112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253962560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253963008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253963456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253963904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253964352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126253964800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126099329584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099329584": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}]}, "140126253965248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253965696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253966144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253966592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253967040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253967488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253967936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253968384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253968832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126253969280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253969728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249936128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": ".1.140126119319184"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126249936576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126249937024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}, {"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126249937472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094326944": {"type": "Overloaded", "items": [{"nodeId": "140126249937920"}, {"nodeId": "140126249938368"}]}, "140126249937920": {"type": "Function", "typeVars": [".-1.140126249937920"], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140126249937920"}]}, {"nodeId": "N"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140126249937920": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140126111497264"}, "def": "140126249937920", "variance": "INVARIANT"}, "140126111497264": {"type": "Union", "items": [{"nodeId": "140126116045072", "args": [{"nodeId": "A"}]}, {"nodeId": "140126116045408", "args": [{"nodeId": "A"}]}]}, "140126116045072": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253625216"}, "name": "__lt__"}], "typeVars": [{"nodeId": ".1.140126116045072"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__lt__"]}, "140126253625216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116045072", "args": [{"nodeId": ".1.140126116045072"}]}, {"nodeId": ".1.140126116045072"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116045072": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116045072", "variance": "CONTRAVARIANT"}, "140126116045408": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253625664"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140126116045408"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__gt__"]}, "140126253625664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116045408", "args": [{"nodeId": ".1.140126116045408"}]}, {"nodeId": ".1.140126116045408"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116045408": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116045408", "variance": "CONTRAVARIANT"}, "140126249938368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126099322272"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140126099322272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "140126094508992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094508992": {"type": "TypeAlias", "target": {"nodeId": "140126116105680"}}, "140126116105680": {"type": "Union", "items": [{"nodeId": "140126116045072", "args": [{"nodeId": "A"}]}, {"nodeId": "140126116045408", "args": [{"nodeId": "A"}]}]}, "140126249938816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126249939264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094508544": {"type": "Overloaded", "items": [{"nodeId": "140126249939712"}, {"nodeId": "140126249940160"}]}, "140126249939712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126119319184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249940160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094508656": {"type": "Overloaded", "items": [{"nodeId": "140126249940608"}, {"nodeId": "140126249941056"}]}, "140126249940608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}, {"nodeId": ".1.140126119319184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126249941056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119318512"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126249941504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126094509216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094509216": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126094508880": {"type": "Overloaded", "items": [{"nodeId": "140126249941952"}, {"nodeId": "140126249942400"}]}, "140126249941952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126249942400": {"type": "Function", "typeVars": [".-1.140126249942400"], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140126249942400"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126094509440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126249942400": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126249942400", "variance": "INVARIANT"}, "140126094509440": {"type": "Union", "items": [{"nodeId": ".-1.140126249942400"}, {"nodeId": ".1.140126119319184"}]}, "140126250041408": {"type": "Function", "typeVars": [".-1.140126250041408"], "argTypes": [{"nodeId": ".-1.140126250041408"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": ".-1.140126250041408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250041408": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250041408", "variance": "INVARIANT"}, "140126250041856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250042304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250042752": {"type": "Function", "typeVars": [".-1.140126250042752"], "argTypes": [{"nodeId": ".-1.140126250042752"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".-1.140126250042752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250042752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250042752", "variance": "INVARIANT"}, "140126250043200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250043648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119319184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250044096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250044544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250044992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250045440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119319184"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250045888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126250049472": {"type": "Function", "typeVars": [".-1.140126250049472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126250049472"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, ".-1.140126250049472": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250049472", "variance": "INVARIANT"}, "140126250049920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126250050368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126119715088", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119715088": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126056608960"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126119715088"}, {"nodeId": ".2.140126119715088"}], "bases": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126119715088"}]}], "isAbstract": false}, "140126056608960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119715088", "args": [{"nodeId": ".1.140126119715088"}, {"nodeId": ".2.140126119715088"}]}], "returnType": {"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126119715088"}, {"nodeId": ".2.140126119715088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119715088": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715088", "variance": "COVARIANT"}, ".2.140126119715088": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715088", "variance": "COVARIANT"}, "140126250050816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126119715424", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119715424": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126056527040"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126119715424"}, {"nodeId": ".2.140126119715424"}], "bases": [{"nodeId": "140126119712736", "args": [{"nodeId": ".2.140126119715424"}]}], "isAbstract": false}, "140126056527040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119715424", "args": [{"nodeId": ".1.140126119715424"}, {"nodeId": ".2.140126119715424"}]}], "returnType": {"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126119715424"}, {"nodeId": ".2.140126119715424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119715424": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715424", "variance": "COVARIANT"}, ".2.140126119715424": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715424", "variance": "COVARIANT"}, "140126250051264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126119715760", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119715760": {"type": "Concrete", "module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126056517632"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126119715760"}, {"nodeId": ".2.140126119715760"}], "bases": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126119715760"}, {"nodeId": ".2.140126119715760"}]}], "isAbstract": false}, "140126056517632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119715760", "args": [{"nodeId": ".1.140126119715760"}, {"nodeId": ".2.140126119715760"}]}], "returnType": {"nodeId": "140126120020672", "args": [{"nodeId": ".1.140126119715760"}, {"nodeId": ".2.140126119715760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119715760": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715760", "variance": "COVARIANT"}, ".2.140126119715760": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119715760", "variance": "COVARIANT"}, "140126094509328": {"type": "Overloaded", "items": [{"nodeId": "140126250051712"}, {"nodeId": "140126250052160"}]}, "140126250051712": {"type": "Function", "typeVars": [".-1.140126250051712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126250051712"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": ".-1.140126250051712"}, {"nodeId": "140126094510672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}, ".-1.140126250051712": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250051712", "variance": "INVARIANT"}, "140126094510672": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126250052160": {"type": "Function", "typeVars": [".-1.140126250052160", ".-2.140126250052160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126250052160"}]}, {"nodeId": ".-2.140126250052160"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": ".-1.140126250052160"}, {"nodeId": ".-2.140126250052160"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140126250052160": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250052160", "variance": "INVARIANT"}, ".-2.140126250052160": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250052160", "variance": "INVARIANT"}, "140126094509664": {"type": "Overloaded", "items": [{"nodeId": "140126250052608"}, {"nodeId": "140126250053056"}]}, "140126250052608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}], "returnType": {"nodeId": "140126094510896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126094510896": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": "N"}]}, "140126250053056": {"type": "Function", "typeVars": [".-1.140126250053056"], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}, {"nodeId": "140126094511008"}], "returnType": {"nodeId": "140126094511120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126094511008": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-1.140126250053056"}]}, ".-1.140126250053056": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250053056", "variance": "INVARIANT"}, "140126094511120": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-1.140126250053056"}]}, "140126094510448": {"type": "Overloaded", "items": [{"nodeId": "140126250053504"}, {"nodeId": "140126250053952"}]}, "140126250053504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}], "returnType": {"nodeId": ".2.140126119319520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250053952": {"type": "Function", "typeVars": [".-1.140126250053952"], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}, {"nodeId": "140126094511344"}], "returnType": {"nodeId": "140126094511456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126094511344": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-1.140126250053952"}]}, ".-1.140126250053952": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250053952", "variance": "INVARIANT"}, "140126094511456": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-1.140126250053952"}]}, "140126250054400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250054848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}], "returnType": {"nodeId": ".2.140126119319520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250055296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126250055744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": ".1.140126119319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250056192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250056640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119319520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250057088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126250172480": {"type": "Function", "typeVars": [".-1.140126250172480", ".-2.140126250172480"], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126250172480"}, {"nodeId": ".-2.140126250172480"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126094511680"}, {"nodeId": "140126094511792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250172480": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250172480", "variance": "INVARIANT"}, ".-2.140126250172480": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250172480", "variance": "INVARIANT"}, "140126094511680": {"type": "Union", "items": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".-1.140126250172480"}]}, "140126094511792": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-2.140126250172480"}]}, "140126250172928": {"type": "Function", "typeVars": [".-1.140126250172928", ".-2.140126250172928"], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126250172928"}, {"nodeId": ".-2.140126250172928"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126094511904"}, {"nodeId": "140126094512016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250172928": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250172928", "variance": "INVARIANT"}, ".-2.140126250172928": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250172928", "variance": "INVARIANT"}, "140126094511904": {"type": "Union", "items": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".-1.140126250172928"}]}, "140126094512016": {"type": "Union", "items": [{"nodeId": ".2.140126119319520"}, {"nodeId": ".-2.140126250172928"}]}, "140126094510784": {"type": "Overloaded", "items": [{"nodeId": "140126250173376"}, {"nodeId": "140126250173824"}]}, "140126250173376": {"type": "Function", "typeVars": [".-1.140126250173376"], "argTypes": [{"nodeId": ".-1.140126250173376"}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}], "returnType": {"nodeId": ".-1.140126250173376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250173376": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250173376", "variance": "INVARIANT"}, "140126250173824": {"type": "Function", "typeVars": [".-1.140126250173824"], "argTypes": [{"nodeId": ".-1.140126250173824"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126094512352"}]}], "returnType": {"nodeId": ".-1.140126250173824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250173824": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250173824", "variance": "INVARIANT"}, "140126094512352": {"type": "Tuple", "items": [{"nodeId": ".1.140126119319520"}, {"nodeId": ".2.140126119319520"}]}, "140126119314144": {"type": "Concrete", "module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090538656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090539104"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296397568"}, "name": "clear"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106765232"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126296398912"}, "name": "popitem"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106770160"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106770608"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}], "typeVars": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}], "bases": [{"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}], "isAbstract": true}, "140126090538656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140126119314144": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119314144", "variance": "INVARIANT"}, ".2.140126119314144": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119314144", "variance": "INVARIANT"}, "140126090539104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".1.140126119314144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126296397568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126106765232": {"type": "Overloaded", "items": [{"nodeId": "140126296398016"}, {"nodeId": "140126296398464"}]}, "140126296398016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".1.140126119314144"}], "returnType": {"nodeId": ".2.140126119314144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126296398464": {"type": "Function", "typeVars": [".-1.140126296398464"], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".1.140126119314144"}, {"nodeId": "140126106770720"}], "returnType": {"nodeId": "140126106770832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}, "140126106770720": {"type": "Union", "items": [{"nodeId": ".2.140126119314144"}, {"nodeId": ".-1.140126296398464"}]}, ".-1.140126296398464": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296398464", "variance": "INVARIANT"}, "140126106770832": {"type": "Union", "items": [{"nodeId": ".2.140126119314144"}, {"nodeId": ".-1.140126296398464"}]}, "140126296398912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}], "returnType": {"nodeId": "140126106771056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126106771056": {"type": "Tuple", "items": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, "140126106770160": {"type": "Overloaded", "items": [{"nodeId": "140126296399360"}, {"nodeId": "140126296399808"}]}, "140126296399360": {"type": "Function", "typeVars": [".-1.140126296399360"], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": "140126106771280"}]}, {"nodeId": ".1.140126119314144"}], "returnType": {"nodeId": "140126106771392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126106771280": {"type": "Union", "items": [{"nodeId": ".-1.140126296399360"}, {"nodeId": "N"}]}, ".-1.140126296399360": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126296399360", "variance": "INVARIANT"}, "140126106771392": {"type": "Union", "items": [{"nodeId": ".-1.140126296399360"}, {"nodeId": "N"}]}, "140126296399808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}], "returnType": {"nodeId": ".2.140126119314144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126106770608": {"type": "Overloaded", "items": [{"nodeId": "140126296400256"}, {"nodeId": "140126296400704"}, {"nodeId": "140126296401152"}]}, "140126296400256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".2.140126119314144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126296400704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126106771728"}]}, {"nodeId": ".2.140126119314144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126106771728": {"type": "Tuple", "items": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, "140126296401152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119314144"}, {"nodeId": ".2.140126119314144"}]}, {"nodeId": ".2.140126119314144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140126098815264": {"type": "Overloaded", "items": [{"nodeId": "140126261944704"}]}, "140126261944704": {"type": "Function", "typeVars": [".-1.140126261944704"], "argTypes": [{"nodeId": ".-1.140126261944704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126261944704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261944704", "variance": "INVARIANT"}, "140126053013920": {"type": "Function", "typeVars": [".-1.140126053013920"], "argTypes": [{"nodeId": ".-1.140126053013920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126053013920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126053013920", "variance": "INVARIANT"}, "140126261945600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261946048": {"type": "Function", "typeVars": [".-1.140126261946048"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126261946048"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126261946048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261946048", "variance": "INVARIANT"}, "140126261946496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126261946944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126261947392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126261947840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126261948288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126261948736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126261949184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261949632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126261950080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126261950528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261950976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126099125888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099125888": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}]}, "140126261951424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126099126112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099126112": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}]}, "140126291771456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126291771904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126254199104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254199104", "variance": "INVARIANT"}, "140126099309952": {"type": "Function", "typeVars": [".-1.140126099309952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126099332384"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126099309952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}, "140126099332384": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, ".-1.140126099309952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126099309952", "variance": "INVARIANT"}, "140126254200000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254200448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254200896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126254201344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099332496"}, {"nodeId": "140126099332608"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}, "140126099332496": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099332608": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254201792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140126254202240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099332720"}, {"nodeId": "140126099332832"}, {"nodeId": "140126099332944"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099332720": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}]}, "140126099332832": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099332944": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254301248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140126254302144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099333056"}, {"nodeId": "140126099333168"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099333056": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099333168": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254302592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126254303040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317168"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}, "140126119317168": {"type": "Protocol", "module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254198208"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__"]}, "140126254198208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317168"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254303488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099333280"}, {"nodeId": "140126099333616"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099333280": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099333616": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254303936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254304384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254304832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254305280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254305728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254306176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254306624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254307072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254307520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254307968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254308416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254308864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254309312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126254309760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126254310208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254310656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099333728"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126099333728": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126254311104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126099333952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099333952": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126254311552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126254312000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126254312448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126254312896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099334288"}, {"nodeId": "140126099334400"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099334288": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099334400": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254313344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099334512"}, {"nodeId": "140126099334624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099334512": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099334624": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254313792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126254314240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126099334848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099334848": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126254314688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099334960"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126099334960": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126254315136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099335072"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126099335072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126254315584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099335184"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126099335184": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126254316032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140126254316480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099335296"}, {"nodeId": "140126099335408"}, {"nodeId": "140126099335520"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126099335296": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}]}, "140126099335408": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126099335520": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "N"}]}, "140126254316928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099335632"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126099335632": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126254432320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254432768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254433216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317504"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126119317504": {"type": "Protocol", "module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126254198656"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__"]}, "140126254198656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317504"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126099331936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126099331936": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126254433664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126254434112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099331152": {"type": "Overloaded", "items": [{"nodeId": "140126254434560"}, {"nodeId": "140126254435008"}]}, "140126254434560": {"type": "Function", "typeVars": [".-1.140126254434560"], "argTypes": [{"nodeId": "140126099335968"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": ".-1.140126254434560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126099335968": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": ".-1.140126254434560"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".-1.140126254434560"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126099335856"}, {"nodeId": ".-1.140126254434560"}]}]}, ".-1.140126254434560": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126254434560", "variance": "INVARIANT"}, "140126099335856": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126254435008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126099336080"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": "140126099336192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126099336080": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126099336192": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126254435456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254435904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254436352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254436800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254437248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126099336304"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126099336304": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126254437696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254438144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254438592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254439040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126254439488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254439936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254440384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254440832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254441280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126254441728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126099336640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099336640": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126006461824": {"type": "Protocol", "module": "subtypes", "simpleName": "P", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126316699360"}, "name": "f"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["f"]}, "140126316699360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006461824"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140126006462160": {"type": "Concrete", "module": "subtypes", "simpleName": "S", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126316703168"}, "name": "f"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126316703168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006462160"}, {"nodeId": "140125941350096"}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140125941350096": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126119708032": {"type": "Concrete", "module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098416336"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308620480"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308620928"}, "name": "elements"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308621376"}, "name": "most_common"}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060551680"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098419024"}, "items": [{"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subtract"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098419920"}, "items": [{"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308624960"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308625408"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308625856"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308626304"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308626752"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308627200"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308627648"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308628096"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308628544"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308628992"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308629440"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308629888"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308778048"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308778496"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308778944"}, "name": "total"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308779392"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308779840"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308780288"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308780736"}, "name": "__gt__"}], "typeVars": [{"nodeId": ".1.140126119708032"}], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119708032"}, {"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126098416336": {"type": "Overloaded", "items": [{"nodeId": "140126308618688"}, {"nodeId": "140126308619136"}, {"nodeId": "140126308619584"}, {"nodeId": "140126308620032"}]}, "140126308618688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140126119708032": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119708032", "variance": "INVARIANT"}, "140126308619136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308619584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119708032"}, {"nodeId": "140126119316160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308620032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308620480": {"type": "Function", "typeVars": [".-1.140126308620480"], "argTypes": [{"nodeId": ".-1.140126308620480"}], "returnType": {"nodeId": ".-1.140126308620480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308620480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308620480", "variance": "INVARIANT"}, "140126308620928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119708032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308621376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126098420032"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126098420256"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126098420032": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126098420256": {"type": "Tuple", "items": [{"nodeId": ".1.140126119708032"}, {"nodeId": "140126119316160"}]}, "140126060551680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140126098420480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}, "140126098420480": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126098419024": {"type": "Overloaded", "items": [{"nodeId": "140126308622272"}, {"nodeId": "140126308622720"}, {"nodeId": "140126308623168"}]}, "140126308622272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126308622720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119708032"}, {"nodeId": "140126119316160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308623168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098419920": {"type": "Overloaded", "items": [{"nodeId": "140126308623616"}, {"nodeId": "140126308624064"}, {"nodeId": "140126308624512"}]}, "140126308623616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126119708032"}, {"nodeId": "140126119316160"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308624064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308624512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "N"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308624960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": ".1.140126119708032"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140126308625408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308625856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308626304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308626752": {"type": "Function", "typeVars": [".-1.140126308626752"], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": ".-1.140126308626752"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "140126098420816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308626752": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308626752", "variance": "INVARIANT"}, "140126098420816": {"type": "Union", "items": [{"nodeId": ".1.140126119708032"}, {"nodeId": ".-1.140126308626752"}]}, "140126308627200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308627648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308628096": {"type": "Function", "typeVars": [".-1.140126308628096"], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": ".-1.140126308628096"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "140126098420928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308628096": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308628096", "variance": "INVARIANT"}, "140126098420928": {"type": "Union", "items": [{"nodeId": ".1.140126119708032"}, {"nodeId": ".-1.140126308628096"}]}, "140126308628544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308628992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308629440": {"type": "Function", "typeVars": [".-1.140126308629440"], "argTypes": [{"nodeId": ".-1.140126308629440"}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": ".-1.140126308629440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308629440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308629440", "variance": "INVARIANT"}, "140126308629888": {"type": "Function", "typeVars": [".-1.140126308629888"], "argTypes": [{"nodeId": ".-1.140126308629888"}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": ".-1.140126308629888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308629888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308629888", "variance": "INVARIANT"}, "140126308778048": {"type": "Function", "typeVars": [".-1.140126308778048"], "argTypes": [{"nodeId": ".-1.140126308778048"}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": ".-1.140126308778048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308778048": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308778048", "variance": "INVARIANT"}, "140126308778496": {"type": "Function", "typeVars": [".-1.140126308778496"], "argTypes": [{"nodeId": ".-1.140126308778496"}, {"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": ".-1.140126308778496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308778496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308778496", "variance": "INVARIANT"}, "140126308778944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308779392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308779840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308780288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308780736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708032", "args": [{"nodeId": ".1.140126119708032"}]}, {"nodeId": "140126119708032", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126006462496": {"type": "Concrete", "module": "subtypes", "simpleName": "S1", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126316703616"}, "name": "f"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126316703616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006462496"}, {"nodeId": "140125941350208"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140125941350208": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140125941635040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006461824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140126006462832": {"type": "Protocol", "module": "subtypes", "simpleName": "R", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126316704512"}, "name": "f"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["f"]}, "140126316704512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006462832"}], "returnType": {"nodeId": "140126006462832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006463168": {"type": "Concrete", "module": "subtypes", "simpleName": "RImpl", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126316704960"}, "name": "f"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126316704960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006463168"}], "returnType": {"nodeId": "140126006463168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086304416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006462832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140125941609440": {"type": "Function", "typeVars": [".-1.140125941609440"], "argTypes": [{"nodeId": "140126325566016", "args": [{"nodeId": ".-1.140125941609440"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140126325566016": {"type": "Protocol", "module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090162272"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325566016"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__abs__"]}, "140126090162272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566016", "args": [{"nodeId": ".1.140126325566016"}]}], "returnType": {"nodeId": ".1.140126325566016"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126325566016": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325566016", "variance": "COVARIANT"}, ".-1.140125941609440": {"type": "TypeVar", "varName": "T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140125941609440", "variance": "INVARIANT"}, "140126119719120": {"type": "Concrete", "module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098410064"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308109440"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308109888"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308110336"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308110784"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308111232"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308111680"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308108992"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308112128"}, "name": "__copy__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098410176"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308113920"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308114368"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098410848"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}], "bases": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}], "isAbstract": false}, ".1.140126119719120": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119719120", "variance": "INVARIANT"}, ".2.140126119719120": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119719120", "variance": "INVARIANT"}, "140126098410064": {"type": "Overloaded", "items": [{"nodeId": "140126308106304"}, {"nodeId": "140126191527840"}, {"nodeId": "140126308107200"}, {"nodeId": "140126308106752"}, {"nodeId": "140126308108096"}, {"nodeId": "140126308107648"}, {"nodeId": "140126308108544"}]}, "140126308106304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126191527840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "N"}, {"nodeId": ".2.140126119719120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308107200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308106752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126116050448", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": ".2.140126119719120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126308108096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098411072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098411072": {"type": "Tuple", "items": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, "140126308107648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098411296"}]}, {"nodeId": ".2.140126119719120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126098411296": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119719120"}]}, "140126308108544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308109440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308109888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": ".1.140126119719120"}], "returnType": {"nodeId": ".2.140126119719120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308110336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308110784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": ".1.140126119719120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308111232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119719120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308111680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308108992": {"type": "Function", "typeVars": [".-1.140126308108992"], "argTypes": [{"nodeId": ".-1.140126308108992"}], "returnType": {"nodeId": ".-1.140126308108992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308108992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308108992", "variance": "INVARIANT"}, "140126308112128": {"type": "Function", "typeVars": [".-1.140126308112128"], "argTypes": [{"nodeId": ".-1.140126308112128"}], "returnType": {"nodeId": ".-1.140126308112128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308112128": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308112128", "variance": "INVARIANT"}, "140126098410176": {"type": "Overloaded", "items": [{"nodeId": "140126308113024"}, {"nodeId": "140126308113472"}]}, "140126308113024": {"type": "Function", "typeVars": [".-1.140126308113024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308113024"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119719120", "args": [{"nodeId": ".-1.140126308113024"}, {"nodeId": "140126098411632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140126308113024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308113024", "variance": "INVARIANT"}, "140126098411632": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126308113472": {"type": "Function", "typeVars": [".-1.140126308113472", ".-2.140126308113472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308113472"}]}, {"nodeId": ".-2.140126308113472"}], "returnType": {"nodeId": "140126119719120", "args": [{"nodeId": ".-1.140126308113472"}, {"nodeId": ".-2.140126308113472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140126308113472": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308113472", "variance": "INVARIANT"}, ".-2.140126308113472": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308113472", "variance": "INVARIANT"}, "140126308113920": {"type": "Function", "typeVars": [".-1.140126308113920", ".-2.140126308113920"], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126098411744"}], "returnType": {"nodeId": "140126119719120", "args": [{"nodeId": "140126098411856"}, {"nodeId": "140126098411968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098411744": {"type": "Union", "items": [{"nodeId": "140126119719120", "args": [{"nodeId": ".-1.140126308113920"}, {"nodeId": ".-2.140126308113920"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": ".-1.140126308113920"}, {"nodeId": ".-2.140126308113920"}]}]}, ".-1.140126308113920": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308113920", "variance": "INVARIANT"}, ".-2.140126308113920": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308113920", "variance": "INVARIANT"}, "140126098411856": {"type": "Union", "items": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".-1.140126308113920"}]}, "140126098411968": {"type": "Union", "items": [{"nodeId": ".2.140126119719120"}, {"nodeId": ".-2.140126308113920"}]}, "140126308114368": {"type": "Function", "typeVars": [".-1.140126308114368", ".-2.140126308114368"], "argTypes": [{"nodeId": "140126119719120", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, {"nodeId": "140126098412080"}], "returnType": {"nodeId": "140126119719120", "args": [{"nodeId": "140126098412192"}, {"nodeId": "140126098412304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098412080": {"type": "Union", "items": [{"nodeId": "140126119719120", "args": [{"nodeId": ".-1.140126308114368"}, {"nodeId": ".-2.140126308114368"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": ".-1.140126308114368"}, {"nodeId": ".-2.140126308114368"}]}]}, ".-1.140126308114368": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308114368", "variance": "INVARIANT"}, ".-2.140126308114368": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308114368", "variance": "INVARIANT"}, "140126098412192": {"type": "Union", "items": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".-1.140126308114368"}]}, "140126098412304": {"type": "Union", "items": [{"nodeId": ".2.140126119719120"}, {"nodeId": ".-2.140126308114368"}]}, "140126098410848": {"type": "Overloaded", "items": [{"nodeId": "140126308112576"}, {"nodeId": "140126308114816"}]}, "140126308112576": {"type": "Function", "typeVars": [".-1.140126308112576"], "argTypes": [{"nodeId": ".-1.140126308112576"}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}], "returnType": {"nodeId": ".-1.140126308112576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308112576": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308112576", "variance": "INVARIANT"}, "140126308114816": {"type": "Function", "typeVars": [".-1.140126308114816"], "argTypes": [{"nodeId": ".-1.140126308114816"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098412640"}]}], "returnType": {"nodeId": ".-1.140126308114816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308114816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308114816", "variance": "INVARIANT"}, "140126098412640": {"type": "Tuple", "items": [{"nodeId": ".1.140126119719120"}, {"nodeId": ".2.140126119719120"}]}, "140126119719456": {"type": "Concrete", "module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119719456"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098411408"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308116608"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308117056"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308117504"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308117952"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308118400"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308118848"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308119296"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098412416"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098412752"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308121536"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308120192"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308121984"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308253760"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308254208"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308254656"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308255104"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308256000"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308256448"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308256896"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308257344"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308255552"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308257792"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308258688"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308259136"}, "name": "index"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098413312"}, "items": [{"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308260480"}, "name": "extend"}], "typeVars": [{"nodeId": ".1.140126119719456"}], "bases": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126119719456"}]}], "isAbstract": false}, ".1.140126119719456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119719456", "variance": "INVARIANT"}, "140126098411408": {"type": "Overloaded", "items": [{"nodeId": "140126308115712"}, {"nodeId": "140126308116160"}]}, "140126308115712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}, "140126308116160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}, "140126308116608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098412864"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098412864": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}]}, "140126308117056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098412976"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098412976": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}]}, "140126308117504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098413088"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098413088": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}]}, "140126308117952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098413200"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098413200": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}]}, "140126308118400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308118848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308119296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126098412416": {"type": "Overloaded", "items": [{"nodeId": "140126308119744"}, {"nodeId": "140126308115264"}]}, "140126308119744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126119719456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308115264": {"type": "Function", "typeVars": [".-1.140126308115264"], "argTypes": [{"nodeId": ".-1.140126308115264"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": ".-1.140126308115264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308115264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308115264", "variance": "INVARIANT"}, "140126098412752": {"type": "Overloaded", "items": [{"nodeId": "140126308120640"}, {"nodeId": "140126308121088"}]}, "140126308120640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126120017984"}, {"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308121088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119318512"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308121536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098413536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098413536": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126308120192": {"type": "Function", "typeVars": [".-1.140126308120192"], "argTypes": [{"nodeId": ".-1.140126308120192"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": ".-1.140126308120192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308120192": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308120192", "variance": "INVARIANT"}, "140126308121984": {"type": "Function", "typeVars": [".-1.140126308121984"], "argTypes": [{"nodeId": ".-1.140126308121984"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": ".-1.140126308121984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308121984": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308121984", "variance": "INVARIANT"}, "140126308253760": {"type": "Function", "typeVars": [".-1.140126308253760"], "argTypes": [{"nodeId": ".-1.140126308253760"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": ".-1.140126308253760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308253760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308253760", "variance": "INVARIANT"}, "140126308254208": {"type": "Function", "typeVars": [".-1.140126308254208"], "argTypes": [{"nodeId": ".-1.140126308254208"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308254208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308254208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308254208", "variance": "INVARIANT"}, "140126308254656": {"type": "Function", "typeVars": [".-1.140126308254656"], "argTypes": [{"nodeId": ".-1.140126308254656"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308254656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308254656", "variance": "INVARIANT"}, "140126308255104": {"type": "Function", "typeVars": [".-1.140126308255104"], "argTypes": [{"nodeId": ".-1.140126308255104"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308255104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308255104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308255104", "variance": "INVARIANT"}, "140126308256000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140126308256448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119316160"}, {"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}, "140126308256896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126119719456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}, "140126308257344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140126308255552": {"type": "Function", "typeVars": [".-1.140126308255552"], "argTypes": [{"nodeId": ".-1.140126308255552"}], "returnType": {"nodeId": ".-1.140126308255552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308255552": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308255552", "variance": "INVARIANT"}, "140126308257792": {"type": "Function", "typeVars": [".-1.140126308257792"], "argTypes": [{"nodeId": ".-1.140126308257792"}], "returnType": {"nodeId": ".-1.140126308257792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308257792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308257792", "variance": "INVARIANT"}, "140126308258688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140126308259136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": ".1.140126119719456"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}, "140126098413312": {"type": "Overloaded", "items": [{"nodeId": "140126308258240"}, {"nodeId": "140126308260032"}]}, "140126308258240": {"type": "Function", "typeVars": [".-1.140126308258240"], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".-1.140126308258240"}]}, {"nodeId": "N"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, ".-1.140126308258240": {"type": "TypeVar", "varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140126111497264"}, "def": "140126308258240", "variance": "INVARIANT"}, "140126308260032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126098297280"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}, "140126098297280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140126119719456"}], "returnType": {"nodeId": "140126098413984"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126098413984": {"type": "TypeAlias", "target": {"nodeId": "140126116105680"}}, "140126308260480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719456", "args": [{"nodeId": ".1.140126119719456"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119719456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126119719792": {"type": "Concrete", "module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308260928"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308261376"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308261824"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308262272"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308262720"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308263168"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308263616"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308264064"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308264512"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308264960"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308265408"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308265856"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308266304"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308266752"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308267200"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308267648"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308268096"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308268544"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308268992"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308269440"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308384832"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308385728"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308386176"}, "name": "casefold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308386624"}, "name": "center"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308387072"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308387520"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308388416"}, "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308388864"}, "name": "expandtabs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308389312"}, "name": "find"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308389760"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308390208"}, "name": "format_map"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308390656"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308391104"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308391552"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308392000"}, "name": "isdecimal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308392448"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308392896"}, "name": "isidentifier"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308393344"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308393792"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308394240"}, "name": "isprintable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308394688"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308395136"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308395584"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308396032"}, "name": "isascii"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308396480"}, "name": "join"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308396928"}, "name": "ljust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308397376"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308397824"}, "name": "lstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098413424"}, "items": [{"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "maketrans"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308399168"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308399616"}, "name": "removeprefix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308400064"}, "name": "removesuffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308400512"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308515904"}, "name": "rfind"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308516352"}, "name": "rindex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308516800"}, "name": "rjust"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308517248"}, "name": "rpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308517696"}, "name": "rstrip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308518144"}, "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308518592"}, "name": "rsplit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308519040"}, "name": "splitlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308519488"}, "name": "startswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308519936"}, "name": "strip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308520384"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308520832"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308521280"}, "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308521728"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308522176"}, "name": "zfill"}], "typeVars": [], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119719792"}]}], "isAbstract": false}, "140126308260928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140126308261376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308261824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308262272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308262720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126098414096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098414096": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126308263168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098414208"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098414208": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308263616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098414320"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098414320": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308264064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098414432"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098414432": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308264512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098414544"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126098414544": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308264960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308265408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308265856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308266304": {"type": "Function", "typeVars": [".-1.140126308266304"], "argTypes": [{"nodeId": ".-1.140126308266304"}, {"nodeId": "140126098414656"}], "returnType": {"nodeId": ".-1.140126308266304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308266304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308266304", "variance": "INVARIANT"}, "140126098414656": {"type": "Union", "items": [{"nodeId": "140126120017984"}, {"nodeId": "140126119318512"}]}, "140126308266752": {"type": "Function", "typeVars": [".-1.140126308266752"], "argTypes": [{"nodeId": ".-1.140126308266752"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".-1.140126308266752"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126308266752": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308266752", "variance": "INVARIANT"}, "140126308267200": {"type": "Function", "typeVars": [".-1.140126308267200"], "argTypes": [{"nodeId": ".-1.140126308267200"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".-1.140126308267200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126308267200": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308267200", "variance": "INVARIANT"}, "140126308267648": {"type": "Function", "typeVars": [".-1.140126308267648"], "argTypes": [{"nodeId": ".-1.140126308267648"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126308267648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308267648": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308267648", "variance": "INVARIANT"}, "140126308268096": {"type": "Function", "typeVars": [".-1.140126308268096"], "argTypes": [{"nodeId": ".-1.140126308268096"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126308268096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308268096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308268096", "variance": "INVARIANT"}, "140126308268544": {"type": "Function", "typeVars": [".-1.140126308268544"], "argTypes": [{"nodeId": ".-1.140126308268544"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308268544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308268544": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308268544", "variance": "INVARIANT"}, "140126308268992": {"type": "Function", "typeVars": [".-1.140126308268992"], "argTypes": [{"nodeId": ".-1.140126308268992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308268992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308268992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308268992", "variance": "INVARIANT"}, "140126308269440": {"type": "Function", "typeVars": [".-1.140126308269440"], "argTypes": [{"nodeId": ".-1.140126308269440"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126308269440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308269440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308269440", "variance": "INVARIANT"}, "140126308384832": {"type": "Function", "typeVars": [".-1.140126308384832"], "argTypes": [{"nodeId": ".-1.140126308384832"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126308384832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308384832": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308384832", "variance": "INVARIANT"}, "140126308385728": {"type": "Function", "typeVars": [".-1.140126308385728"], "argTypes": [{"nodeId": ".-1.140126308385728"}], "returnType": {"nodeId": ".-1.140126308385728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308385728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308385728", "variance": "INVARIANT"}, "140126308386176": {"type": "Function", "typeVars": [".-1.140126308386176"], "argTypes": [{"nodeId": ".-1.140126308386176"}], "returnType": {"nodeId": ".-1.140126308386176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308386176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308386176", "variance": "INVARIANT"}, "140126308386624": {"type": "Function", "typeVars": [".-1.140126308386624"], "argTypes": [{"nodeId": ".-1.140126308386624"}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126308386624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140126308386624": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308386624", "variance": "INVARIANT"}, "140126308387072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098414992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140126098414992": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308387520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098415104"}, {"nodeId": "140126098415216"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140126098415104": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126098415216": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126308388416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098415328"}, {"nodeId": "140126098415440"}, {"nodeId": "140126098415552"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "140126098415328": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}]}, "140126098415440": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126098415552": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126308388864": {"type": "Function", "typeVars": [".-1.140126308388864"], "argTypes": [{"nodeId": ".-1.140126308388864"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308388864"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, ".-1.140126308388864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308388864", "variance": "INVARIANT"}, "140126308389312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098415664"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140126098415664": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308389760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}, "140126308390208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}, "140126308390656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140126308391104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308391552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308392000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308392448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308392896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308393344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308393792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308394240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308394688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308395136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308395584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308396032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308396480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140126308396928": {"type": "Function", "typeVars": [".-1.140126308396928"], "argTypes": [{"nodeId": ".-1.140126308396928"}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126308396928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140126308396928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308396928", "variance": "INVARIANT"}, "140126308397376": {"type": "Function", "typeVars": [".-1.140126308397376"], "argTypes": [{"nodeId": ".-1.140126308397376"}], "returnType": {"nodeId": ".-1.140126308397376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308397376": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308397376", "variance": "INVARIANT"}, "140126308397824": {"type": "Function", "typeVars": [".-1.140126308397824"], "argTypes": [{"nodeId": ".-1.140126308397824"}, {"nodeId": "140126098416224"}], "returnType": {"nodeId": ".-1.140126308397824"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140126308397824": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308397824", "variance": "INVARIANT"}, "140126098416224": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126098413424": {"type": "Overloaded", "items": [{"nodeId": "140126308398272"}, {"nodeId": "140126308398720"}]}, "140126308398272": {"type": "Function", "typeVars": [".-1.140126308398272"], "argTypes": [{"nodeId": "140126098416560"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": ".-1.140126308398272"}]}, "argKinds": ["ARG_POS"], "argNames": ["x"]}, "140126098416560": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": ".-1.140126308398272"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".-1.140126308398272"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126098416448"}, {"nodeId": ".-1.140126308398272"}]}]}, ".-1.140126308398272": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308398272", "variance": "INVARIANT"}, "140126098416448": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126308398720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": "140126098416672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["x", "y", "z"]}, "140126098416672": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126308399168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098416896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140126098416896": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126308399616": {"type": "Function", "typeVars": [".-1.140126308399616"], "argTypes": [{"nodeId": ".-1.140126308399616"}, {"nodeId": "140126098417008"}], "returnType": {"nodeId": ".-1.140126308399616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126308399616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308399616", "variance": "INVARIANT"}, "140126098417008": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308400064": {"type": "Function", "typeVars": [".-1.140126308400064"], "argTypes": [{"nodeId": ".-1.140126308400064"}, {"nodeId": "140126098417120"}], "returnType": {"nodeId": ".-1.140126308400064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126308400064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308400064", "variance": "INVARIANT"}, "140126098417120": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308400512": {"type": "Function", "typeVars": [".-1.140126308400512"], "argTypes": [{"nodeId": ".-1.140126308400512"}, {"nodeId": "140126098417232"}, {"nodeId": "140126098417344"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308400512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}, ".-1.140126308400512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308400512", "variance": "INVARIANT"}, "140126098417232": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126098417344": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308515904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098417456"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140126098417456": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308516352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098417568"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140126098417568": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119719792"}]}, "140126308516800": {"type": "Function", "typeVars": [".-1.140126308516800"], "argTypes": [{"nodeId": ".-1.140126308516800"}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126308516800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}, ".-1.140126308516800": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308516800", "variance": "INVARIANT"}, "140126308517248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098417904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140126098417904": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126308517696": {"type": "Function", "typeVars": [".-1.140126308517696"], "argTypes": [{"nodeId": ".-1.140126308517696"}, {"nodeId": "140126098418016"}], "returnType": {"nodeId": ".-1.140126308517696"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140126308517696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308517696", "variance": "INVARIANT"}, "140126098418016": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126308518144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098418128"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126098418128": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126308518592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098418240"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140126098418240": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126308519040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140126308519488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119719792"}, {"nodeId": "140126098418352"}, {"nodeId": "140126098418464"}, {"nodeId": "140126098418576"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "140126098418352": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}]}, "140126098418464": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126098418576": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126308519936": {"type": "Function", "typeVars": [".-1.140126308519936"], "argTypes": [{"nodeId": ".-1.140126308519936"}, {"nodeId": "140126098418688"}], "returnType": {"nodeId": ".-1.140126308519936"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, ".-1.140126308519936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308519936", "variance": "INVARIANT"}, "140126098418688": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126308520384": {"type": "Function", "typeVars": [".-1.140126308520384"], "argTypes": [{"nodeId": ".-1.140126308520384"}], "returnType": {"nodeId": ".-1.140126308520384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308520384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308520384", "variance": "INVARIANT"}, "140126308520832": {"type": "Function", "typeVars": [".-1.140126308520832"], "argTypes": [{"nodeId": ".-1.140126308520832"}], "returnType": {"nodeId": ".-1.140126308520832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308520832": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308520832", "variance": "INVARIANT"}, "140126308521280": {"type": "Function", "typeVars": [".-1.140126308521280"], "argTypes": [{"nodeId": ".-1.140126308521280"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126308521280"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, ".-1.140126308521280": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308521280", "variance": "INVARIANT"}, "140126308521728": {"type": "Function", "typeVars": [".-1.140126308521728"], "argTypes": [{"nodeId": ".-1.140126308521728"}], "returnType": {"nodeId": ".-1.140126308521728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308521728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308521728", "variance": "INVARIANT"}, "140126308522176": {"type": "Function", "typeVars": [".-1.140126308522176"], "argTypes": [{"nodeId": ".-1.140126308522176"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308522176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}, ".-1.140126308522176": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308522176", "variance": "INVARIANT"}, "140126119720128": {"type": "Concrete", "module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126065712864"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098413648"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308523968"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308524416"}, "name": "appendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308524864"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308525312"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308525760"}, "name": "extend"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308526208"}, "name": "extendleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308526656"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308527104"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308527552"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308528000"}, "name": "popleft"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308528448"}, "name": "remove"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308528896"}, "name": "rotate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308529344"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308529792"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308530240"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308530688"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308531136"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308531584"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308614208"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308614656"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308615104"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308615552"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308616000"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308616448"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308616896"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308617344"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308617792"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308618240"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119720128"}], "bases": [{"nodeId": "140126325570720", "args": [{"nodeId": ".1.140126119720128"}]}], "isAbstract": false}, "140126065712864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126098418912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119720128": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119720128", "variance": "INVARIANT"}, "140126098418912": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126098413648": {"type": "Overloaded", "items": [{"nodeId": "140126308523072"}, {"nodeId": "140126308523520"}]}, "140126308523072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126098419136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}, "140126098419136": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126308523520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126098419248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}, "140126098419248": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126308523968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308524416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308524864": {"type": "Function", "typeVars": [".-1.140126308524864"], "argTypes": [{"nodeId": ".-1.140126308524864"}], "returnType": {"nodeId": ".-1.140126308524864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308524864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308524864", "variance": "INVARIANT"}, "140126308525312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308525760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308526208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308526656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119316160"}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126308527104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": ".1.140126119720128"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126308527552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": ".1.140126119720128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308528000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": ".1.140126119720128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308528448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308528896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126308529344": {"type": "Function", "typeVars": [".-1.140126308529344"], "argTypes": [{"nodeId": ".-1.140126308529344"}], "returnType": {"nodeId": ".-1.140126308529344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308529344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308529344", "variance": "INVARIANT"}, "140126308529792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308530240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": ".1.140126119720128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308530688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126120017984"}, {"nodeId": ".1.140126119720128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308531136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308531584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308614208": {"type": "Function", "typeVars": [".-1.140126308614208"], "argTypes": [{"nodeId": ".-1.140126308614208"}], "returnType": {"nodeId": "140126098419696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308614208": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308614208", "variance": "INVARIANT"}, "140126098419696": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126098419472"}, {"nodeId": "N"}, {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119720128"}]}]}, "140126098419472": {"type": "Tuple", "items": []}, "140126308614656": {"type": "Function", "typeVars": [".-1.140126308614656"], "argTypes": [{"nodeId": ".-1.140126308614656"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": ".-1.140126308614656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308614656": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308614656", "variance": "INVARIANT"}, "140126308615104": {"type": "Function", "typeVars": [".-1.140126308615104"], "argTypes": [{"nodeId": ".-1.140126308615104"}, {"nodeId": ".-1.140126308615104"}], "returnType": {"nodeId": ".-1.140126308615104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308615104": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308615104", "variance": "INVARIANT"}, "140126308615552": {"type": "Function", "typeVars": [".-1.140126308615552"], "argTypes": [{"nodeId": ".-1.140126308615552"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308615552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308615552": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308615552", "variance": "INVARIANT"}, "140126308616000": {"type": "Function", "typeVars": [".-1.140126308616000"], "argTypes": [{"nodeId": ".-1.140126308616000"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126308616000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308616000": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308616000", "variance": "INVARIANT"}, "140126308616448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308616896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308617344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308617792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}, {"nodeId": "140126119720128", "args": [{"nodeId": ".1.140126119720128"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308618240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126116038688": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308781184"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126116038688"}], "bases": [{"nodeId": "140126119712400", "args": [{"nodeId": ".1.140126116038688"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126116038688"}]}], "isAbstract": false}, "140126308781184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038688", "args": [{"nodeId": ".1.140126116038688"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126116038688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126116038688": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116038688", "variance": "COVARIANT"}, "140126116039024": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308781632"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126116039024"}, {"nodeId": ".2.140126116039024"}], "bases": [{"nodeId": "140126119712064", "args": [{"nodeId": ".1.140126116039024"}, {"nodeId": ".2.140126116039024"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": "140126115820736"}]}], "isAbstract": false}, "140126308781632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116039024", "args": [{"nodeId": ".1.140126116039024"}, {"nodeId": ".2.140126116039024"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126098421600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126116039024": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116039024", "variance": "COVARIANT"}, ".2.140126116039024": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116039024", "variance": "COVARIANT"}, "140126098421600": {"type": "Tuple", "items": [{"nodeId": ".1.140126116039024"}, {"nodeId": ".2.140126116039024"}]}, "140126115820736": {"type": "Tuple", "items": [{"nodeId": ".1.140126116039024"}, {"nodeId": ".2.140126116039024"}]}, "140126116039360": {"type": "Concrete", "module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308782080"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126116039360"}], "bases": [{"nodeId": "140126119712736", "args": [{"nodeId": ".1.140126116039360"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126116039360"}]}], "isAbstract": false}, "140126308782080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116039360", "args": [{"nodeId": ".1.140126116039360"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126116039360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126116039360": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116039360", "variance": "COVARIANT"}, "140126119720464": {"type": "Concrete", "module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308782528"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126119720464"}, {"nodeId": ".2.140126119720464"}], "bases": [{"nodeId": "140126119715088", "args": [{"nodeId": ".1.140126119720464"}, {"nodeId": ".2.140126119720464"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126119720464"}]}], "isAbstract": false}, "140126308782528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720464", "args": [{"nodeId": ".1.140126119720464"}, {"nodeId": ".2.140126119720464"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119720464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126119720464": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119720464", "variance": "COVARIANT"}, ".2.140126119720464": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119720464", "variance": "COVARIANT"}, "140126119720800": {"type": "Concrete", "module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308782976"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126119720800"}, {"nodeId": ".2.140126119720800"}], "bases": [{"nodeId": "140126119715760", "args": [{"nodeId": ".1.140126119720800"}, {"nodeId": ".2.140126119720800"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": "140126115820960"}]}], "isAbstract": false}, "140126308782976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119720800", "args": [{"nodeId": ".1.140126119720800"}, {"nodeId": ".2.140126119720800"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126098421824"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126119720800": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119720800", "variance": "COVARIANT"}, ".2.140126119720800": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119720800", "variance": "COVARIANT"}, "140126098421824": {"type": "Tuple", "items": [{"nodeId": ".1.140126119720800"}, {"nodeId": ".2.140126119720800"}]}, "140126115820960": {"type": "Tuple", "items": [{"nodeId": ".1.140126119720800"}, {"nodeId": ".2.140126119720800"}]}, "140126119721136": {"type": "Concrete", "module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308783424"}, "name": "__reversed__"}], "typeVars": [{"nodeId": ".1.140126119721136"}, {"nodeId": ".2.140126119721136"}], "bases": [{"nodeId": "140126119715424", "args": [{"nodeId": ".1.140126119721136"}, {"nodeId": ".2.140126119721136"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".2.140126119721136"}]}], "isAbstract": false}, "140126308783424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721136", "args": [{"nodeId": ".1.140126119721136"}, {"nodeId": ".2.140126119721136"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".2.140126119721136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126119721136": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721136", "variance": "COVARIANT"}, ".2.140126119721136": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721136", "variance": "COVARIANT"}, "140126119721472": {"type": "Concrete", "module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308783872"}, "name": "popitem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308784320"}, "name": "move_to_end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308784768"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308785216"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308785664"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308786112"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308786560"}, "name": "values"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098420592"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098420704"}, "items": [{"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "setdefault"}], "typeVars": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126119721472"}]}], "isAbstract": false}, "140126308783872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126098422048"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}, ".1.140126119721472": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721472", "variance": "INVARIANT"}, ".2.140126119721472": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721472", "variance": "INVARIANT"}, "140126098422048": {"type": "Tuple", "items": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, "140126308784320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, {"nodeId": ".1.140126119721472"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}, "140126308784768": {"type": "Function", "typeVars": [".-1.140126308784768"], "argTypes": [{"nodeId": ".-1.140126308784768"}], "returnType": {"nodeId": ".-1.140126308784768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308784768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308784768", "variance": "INVARIANT"}, "140126308785216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119721472"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308785664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}], "returnType": {"nodeId": "140126119720464", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308786112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}], "returnType": {"nodeId": "140126119720800", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308786560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}], "returnType": {"nodeId": "140126119721136", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098420592": {"type": "Overloaded", "items": [{"nodeId": "140126308787008"}, {"nodeId": "140126308787456"}]}, "140126308787008": {"type": "Function", "typeVars": [".-1.140126308787008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308787008"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119721472", "args": [{"nodeId": ".-1.140126308787008"}, {"nodeId": "140126098422384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}, ".-1.140126308787008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308787008", "variance": "INVARIANT"}, "140126098422384": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126308787456": {"type": "Function", "typeVars": [".-1.140126308787456", ".-2.140126308787456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308787456"}]}, {"nodeId": ".-2.140126308787456"}], "returnType": {"nodeId": "140126119721472", "args": [{"nodeId": ".-1.140126308787456"}, {"nodeId": ".-2.140126308787456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}, ".-1.140126308787456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308787456", "variance": "INVARIANT"}, ".-2.140126308787456": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308787456", "variance": "INVARIANT"}, "140126098420704": {"type": "Overloaded", "items": [{"nodeId": "140126308787904"}, {"nodeId": "140126308788352"}]}, "140126308787904": {"type": "Function", "typeVars": [".-1.140126308787904"], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": "140126098422608"}]}, {"nodeId": ".1.140126119721472"}], "returnType": {"nodeId": "140126098422720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140126098422608": {"type": "Union", "items": [{"nodeId": ".-1.140126308787904"}, {"nodeId": "N"}]}, ".-1.140126308787904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308787904", "variance": "INVARIANT"}, "140126098422720": {"type": "Union", "items": [{"nodeId": ".-1.140126308787904"}, {"nodeId": "N"}]}, "140126308788352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721472", "args": [{"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}]}, {"nodeId": ".1.140126119721472"}, {"nodeId": ".2.140126119721472"}], "returnType": {"nodeId": ".2.140126119721472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}, "140126119708368": {"type": "Concrete", "module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128530464"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098422160"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308792384"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308792832"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308793280"}, "name": "copy"}], "typeVars": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}], "isAbstract": false}, "140126128530464": {"type": "Union", "items": [{"nodeId": "140126128630784"}, {"nodeId": "N"}]}, "140126128630784": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, ".2.140126119708368": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119708368", "variance": "INVARIANT"}, "140126098422160": {"type": "Overloaded", "items": [{"nodeId": "140126308788800"}, {"nodeId": "140126308789248"}, {"nodeId": "140126308789696"}, {"nodeId": "140126308790144"}, {"nodeId": "140126308790592"}, {"nodeId": "140126308791040"}, {"nodeId": "140126308791488"}, {"nodeId": "140126308791936"}]}, "140126308788800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119708368": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119708368", "variance": "INVARIANT"}, "140126308789248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": ".2.140126119708368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140126308789696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098422944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098422944": {"type": "Union", "items": [{"nodeId": "140126098297728"}, {"nodeId": "N"}]}, "140126098297728": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126308790144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098423056"}, {"nodeId": ".2.140126119708368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}, "140126098423056": {"type": "Union", "items": [{"nodeId": "140126098297952"}, {"nodeId": "N"}]}, "140126098297952": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126308790592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098423168"}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126098423168": {"type": "Union", "items": [{"nodeId": "140126098298176"}, {"nodeId": "N"}]}, "140126098298176": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126308791040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098423280"}, {"nodeId": "140126116050448", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": ".2.140126119708368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140126098423280": {"type": "Union", "items": [{"nodeId": "140126098298400"}, {"nodeId": "N"}]}, "140126098298400": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126308791488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098423392"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098423616"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126098423392": {"type": "Union", "items": [{"nodeId": "140126098298624"}, {"nodeId": "N"}]}, "140126098298624": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126098423616": {"type": "Tuple", "items": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}, "140126308791936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": "140126098800704"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098800928"}]}, {"nodeId": ".2.140126119708368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}, "140126098800704": {"type": "Union", "items": [{"nodeId": "140126098298848"}, {"nodeId": "N"}]}, "140126098298848": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": [], "argNames": []}, "140126098800928": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": ".2.140126119708368"}]}, "140126308792384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119708368", "args": [{"nodeId": ".1.140126119708368"}, {"nodeId": ".2.140126119708368"}]}, {"nodeId": ".1.140126119708368"}], "returnType": {"nodeId": ".2.140126119708368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126308792832": {"type": "Function", "typeVars": [".-1.140126308792832"], "argTypes": [{"nodeId": ".-1.140126308792832"}], "returnType": {"nodeId": ".-1.140126308792832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308792832": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308792832", "variance": "INVARIANT"}, "140126308793280": {"type": "Function", "typeVars": [".-1.140126308793280"], "argTypes": [{"nodeId": ".-1.140126308793280"}], "returnType": {"nodeId": ".-1.140126308793280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308793280": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308793280", "variance": "INVARIANT"}, "140126119721808": {"type": "Concrete", "module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308793728"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308941888"}, "name": "new_child"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060676032"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308942784"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308943232"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308943680"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308944128"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308944576"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308945024"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308945472"}, "name": "__missing__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308945920"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308946368"}, "name": "setdefault"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098422496"}, "items": [{"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308947712"}, "name": "copy"}, {"kind": "Variable", "name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060678496"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098422832"}, "items": [{"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fromkeys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308949056"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308949504"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098801152"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}], "bases": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "isAbstract": false}, ".1.140126119721808": {"type": "TypeVar", "varName": "_KT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721808", "variance": "INVARIANT"}, ".2.140126119721808": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119721808", "variance": "INVARIANT"}, "140126308793728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}, "140126308941888": {"type": "Function", "typeVars": [".-1.140126308941888"], "argTypes": [{"nodeId": ".-1.140126308941888"}, {"nodeId": "140126098801040"}], "returnType": {"nodeId": ".-1.140126308941888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, ".-1.140126308941888": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308941888", "variance": "INVARIANT"}, "140126098801040": {"type": "Union", "items": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": "N"}]}, "140126060676032": {"type": "Function", "typeVars": [".-1.140126060676032"], "argTypes": [{"nodeId": ".-1.140126060676032"}], "returnType": {"nodeId": ".-1.140126060676032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126060676032": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126060676032", "variance": "INVARIANT"}, "140126308942784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308943232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308943680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}], "returnType": {"nodeId": ".2.140126119721808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308944128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119721808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308944576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126308945024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126308945472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}], "returnType": {"nodeId": ".2.140126119721808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140126308945920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308946368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}], "returnType": {"nodeId": ".2.140126119721808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140126098422496": {"type": "Overloaded", "items": [{"nodeId": "140126308946816"}, {"nodeId": "140126308947264"}]}, "140126308946816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}], "returnType": {"nodeId": ".2.140126119721808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}, "140126308947264": {"type": "Function", "typeVars": [".-1.140126308947264"], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": ".1.140126119721808"}, {"nodeId": "140126098801264"}], "returnType": {"nodeId": "140126098801376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}, "140126098801264": {"type": "Union", "items": [{"nodeId": ".2.140126119721808"}, {"nodeId": ".-1.140126308947264"}]}, ".-1.140126308947264": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308947264", "variance": "INVARIANT"}, "140126098801376": {"type": "Union", "items": [{"nodeId": ".2.140126119721808"}, {"nodeId": ".-1.140126308947264"}]}, "140126308947712": {"type": "Function", "typeVars": [".-1.140126308947712"], "argTypes": [{"nodeId": ".-1.140126308947712"}], "returnType": {"nodeId": ".-1.140126308947712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126308947712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308947712", "variance": "INVARIANT"}, "140126060678496": {"type": "Function", "typeVars": [".-1.140126060678496"], "argTypes": [{"nodeId": ".-1.140126060678496"}], "returnType": {"nodeId": ".-1.140126060678496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126060678496": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126060678496", "variance": "INVARIANT"}, "140126098422832": {"type": "Overloaded", "items": [{"nodeId": "140126308948160"}, {"nodeId": "140126308948608"}]}, "140126308948160": {"type": "Function", "typeVars": [".-1.140126308948160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308948160"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119721808", "args": [{"nodeId": ".-1.140126308948160"}, {"nodeId": "140126098801712"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}, ".-1.140126308948160": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308948160", "variance": "INVARIANT"}, "140126098801712": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126308948608": {"type": "Function", "typeVars": [".-1.140126308948608", ".-2.140126308948608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126308948608"}]}, {"nodeId": ".-2.140126308948608"}], "returnType": {"nodeId": "140126119721808", "args": [{"nodeId": ".-1.140126308948608"}, {"nodeId": ".-2.140126308948608"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, ".-1.140126308948608": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308948608", "variance": "INVARIANT"}, ".-2.140126308948608": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308948608", "variance": "INVARIANT"}, "140126308949056": {"type": "Function", "typeVars": [".-1.140126308949056", ".-2.140126308949056"], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126308949056"}, {"nodeId": ".-2.140126308949056"}]}], "returnType": {"nodeId": "140126119721808", "args": [{"nodeId": "140126098801824"}, {"nodeId": "140126098801936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308949056": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308949056", "variance": "INVARIANT"}, ".-2.140126308949056": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308949056", "variance": "INVARIANT"}, "140126098801824": {"type": "Union", "items": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".-1.140126308949056"}]}, "140126098801936": {"type": "Union", "items": [{"nodeId": ".2.140126119721808"}, {"nodeId": ".-2.140126308949056"}]}, "140126308949504": {"type": "Function", "typeVars": [".-1.140126308949504", ".-2.140126308949504"], "argTypes": [{"nodeId": "140126119721808", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126308949504"}, {"nodeId": ".-2.140126308949504"}]}], "returnType": {"nodeId": "140126119721808", "args": [{"nodeId": "140126098802048"}, {"nodeId": "140126098802160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308949504": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308949504", "variance": "INVARIANT"}, ".-2.140126308949504": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308949504", "variance": "INVARIANT"}, "140126098802048": {"type": "Union", "items": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".-1.140126308949504"}]}, "140126098802160": {"type": "Union", "items": [{"nodeId": ".2.140126119721808"}, {"nodeId": ".-2.140126308949504"}]}, "140126098801152": {"type": "Overloaded", "items": [{"nodeId": "140126308949952"}, {"nodeId": "140126308950400"}]}, "140126308949952": {"type": "Function", "typeVars": [".-1.140126308949952"], "argTypes": [{"nodeId": ".-1.140126308949952"}, {"nodeId": "140126116050448", "args": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}], "returnType": {"nodeId": ".-1.140126308949952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308949952": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308949952", "variance": "INVARIANT"}, "140126308950400": {"type": "Function", "typeVars": [".-1.140126308950400"], "argTypes": [{"nodeId": ".-1.140126308950400"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126098802496"}]}], "returnType": {"nodeId": ".-1.140126308950400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126308950400": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126308950400", "variance": "INVARIANT"}, "140126098802496": {"type": "Tuple", "items": [{"nodeId": ".1.140126119721808"}, {"nodeId": ".2.140126119721808"}]}, "140126039832752": {"type": "Concrete", "module": "numpy._pytesttester", "simpleName": "PytestTester", "members": [{"kind": "Variable", "name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216388896"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "label", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "verbose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra_argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doctests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "coverage", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "durations", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216389344"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126216388896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832752"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module_name"]}, "140126216389344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832752"}, {"nodeId": "140126027991296"}, {"nodeId": "140126119316160"}, {"nodeId": "140126027991408"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126027991632"}], "returnType": {"nodeId": "140126325562992"}, "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"]}, "140126027991296": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126027991408": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}]}, "140126027991632": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}]}, "140126014943440": {"type": "Concrete", "module": "numpy.core._internal", "simpleName": "_ctypes", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997982752"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "Variable", "name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972483648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972491264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972488352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_as_parameter_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972485216"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258534816"}, "name": "data_as"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258535264"}, "name": "shape_as"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258535712"}, "name": "strides_as"}], "typeVars": [{"nodeId": ".1.140126014943440"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125997982752": {"type": "Overloaded", "items": [{"nodeId": "140126258532128"}, {"nodeId": "140126258532576"}]}, "140126258532128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014943440", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "array", "ptr"]}, "140126014946128": {"type": "Concrete", "module": "numpy", "simpleName": "ndarray", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973273216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973272992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973273664"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998219072"}, "items": [{"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973273888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "real"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998451504"}, "items": [{"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973274112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "imag"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125997937184"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283021024"}, "name": "__class_getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998452064"}, "items": [{"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__array__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283252000"}, "name": "__array_ufunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283252448"}, "name": "__array_function__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283252896"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283253344"}, "name": "__array_wrap__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283253792"}, "name": "__array_prepare__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998453184"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "Variable", "name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973275008"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998452512"}, "items": [{"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973274336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "shape"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998457664"}, "items": [{"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973275232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "strides"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283258720"}, "name": "byteswap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283259168"}, "name": "fill"}, {"kind": "Variable", "name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973275456"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998458000"}, "items": [{"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "item"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998458336"}, "items": [{"kind": "Variable", "name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "itemset"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998458784"}, "items": [{"kind": "Variable", "name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "align", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "uic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283262752"}, "name": "setflags"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283263200"}, "name": "squeeze"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283263648"}, "name": "swapaxes"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998459120"}, "items": [{"kind": "Variable", "name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "transpose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283264992"}, "name": "argpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283265440"}, "name": "diagonal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998459568"}, "items": [{"kind": "Variable", "name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "dot"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283267232"}, "name": "nonzero"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283267680"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283415840"}, "name": "put"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998461248"}, "items": [{"kind": "Variable", "name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "searchsorted"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283417184"}, "name": "setfield"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283417632"}, "name": "sort"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998463040"}, "items": [{"kind": "Variable", "name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "trace"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998464720"}, "items": [{"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "take"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283420320"}, "name": "repeat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283420768"}, "name": "flatten"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283421216"}, "name": "ravel"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998464384"}, "items": [{"kind": "Variable", "name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "reshape"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998565968"}, "items": [{"kind": "Variable", "name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "astype"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998566528"}, "items": [{"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "view"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998569104"}, "items": [{"kind": "Variable", "name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "getfield"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998548128"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998550144"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998550368"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998550592"}, "name": "__index__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283428384"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283500256"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283428832"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283429280"}, "name": "__contains__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998567536"}, "items": [{"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__lt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998570112"}, "items": [{"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__le__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998570672"}, "items": [{"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__gt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998572576"}, "items": [{"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998574480"}, "items": [{"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__abs__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998576384"}, "items": [{"kind": "Variable", "name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__invert__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998577392"}, "items": [{"kind": "Variable", "name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pos__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998578624"}, "items": [{"kind": "Variable", "name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__neg__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998399072"}, "items": [{"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__matmul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993435760"}, "items": [{"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rmatmul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993439568"}, "items": [{"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__mod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993443264"}, "items": [{"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993445952"}, "items": [{"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__divmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993448976"}, "items": [{"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rdivmod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998579408"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993504880"}, "items": [{"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__radd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993509584"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993514288"}, "items": [{"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rsub__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993451216"}, "items": [{"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__mul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993556608"}, "items": [{"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rmul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993561648"}, "items": [{"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__floordiv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993516752"}, "items": [{"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rfloordiv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993651776"}, "items": [{"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__pow__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993655472"}, "items": [{"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rpow__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993659280"}, "items": [{"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__truediv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993663088"}, "items": [{"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rtruediv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993565680"}, "items": [{"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__lshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993687456"}, "items": [{"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rlshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993689696"}, "items": [{"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993691936"}, "items": [{"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rrshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993694176"}, "items": [{"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__and__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993696416"}, "items": [{"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993663760"}, "items": [{"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__xor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993749968"}, "items": [{"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rxor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993752096"}, "items": [{"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__or__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993754224"}, "items": [{"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993756352"}, "items": [{"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__iadd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993758480"}, "items": [{"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__isub__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993761952"}, "items": [{"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__imul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993697088"}, "items": [{"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__itruediv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993816624"}, "items": [{"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ifloordiv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993818304"}, "items": [{"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ipow__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993820880"}, "items": [{"kind": "Variable", "name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__imod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993823008"}, "items": [{"kind": "Variable", "name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ilshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993824688"}, "items": [{"kind": "Variable", "name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__irshift__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993826368"}, "items": [{"kind": "Variable", "name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__iand__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993827712"}, "items": [{"kind": "Variable", "name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ixor__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993762176"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998561568"}, "name": "__dlpack__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126279554592"}, "name": "__dlpack_device__"}, {"kind": "Variable", "name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968594784"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}], "bases": [{"nodeId": "140126014944784"}], "isAbstract": false}, "140125973273216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125998450608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014946128": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126014946128", "variance": "INVARIANT"}, ".2.140126014946128": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126014946128", "variance": "COVARIANT"}, "140126010702336": {"type": "Concrete", "module": "numpy", "simpleName": "dtype", "members": [{"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006122688"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997984544"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304262112"}, "name": "__class_getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997985104"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126015226928"}, "items": [{"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__mul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998211456"}, "items": [{"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304265696"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304266144"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304266592"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304267040"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304267488"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126304267936"}, "name": "__ne__"}, {"kind": "Variable", "name": "alignment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972885600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972887840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "byteorder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972888064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "char", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972888288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "descr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972888512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fields", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972888736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972888960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hasobject", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972889184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isbuiltin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972987968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isnative", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972988192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isalignedstruct", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972988416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972988640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972988864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972989088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972989312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972989536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972989760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972989984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subdtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972990208"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125997931136"}, "name": "newbyteorder"}, {"kind": "Variable", "name": "str", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972990432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972990656"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126010702336"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126006122688": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}]}, "140125997984544": {"type": "Overloaded", "items": [{"nodeId": "140126308957344"}, {"nodeId": "140126308957792"}, {"nodeId": "140126312841504"}, {"nodeId": "140126312841952"}, {"nodeId": "140126312842400"}, {"nodeId": "140126312842848"}, {"nodeId": "140126312843296"}, {"nodeId": "140126312843744"}, {"nodeId": "140126312844192"}, {"nodeId": "140126312844640"}, {"nodeId": "140126312845088"}, {"nodeId": "140126312845536"}, {"nodeId": "140126312845984"}, {"nodeId": "140126312846432"}, {"nodeId": "140126312846880"}, {"nodeId": "140126312847328"}, {"nodeId": "140126312847776"}, {"nodeId": "140126312848224"}, {"nodeId": "140126312848672"}, {"nodeId": "140126312849120"}, {"nodeId": "140126312849568"}, {"nodeId": "140126312850016"}, {"nodeId": "140126312850464"}, {"nodeId": "140126312850912"}, {"nodeId": "140126312851360"}, {"nodeId": "140126312851808"}, {"nodeId": "140126312852256"}, {"nodeId": "140126312852704"}, {"nodeId": "140126312853152"}, {"nodeId": "140126312853600"}, {"nodeId": "140126312854048"}, {"nodeId": "140126312854496"}, {"nodeId": "140126312854944"}, {"nodeId": "140126312855392"}, {"nodeId": "140126312855840"}, {"nodeId": "140126312856288"}, {"nodeId": "140126312856736"}, {"nodeId": "140126312857184"}, {"nodeId": "140126304256288"}, {"nodeId": "140126304256736"}, {"nodeId": "140126304257184"}, {"nodeId": "140126304257632"}, {"nodeId": "140126304258080"}, {"nodeId": "140126304258528"}, {"nodeId": "140126304258976"}, {"nodeId": "140126304259424"}, {"nodeId": "140126304259872"}, {"nodeId": "140126304260320"}, {"nodeId": "140126304260768"}, {"nodeId": "140126304261216"}, {"nodeId": "140126304261664"}]}, "140126308957344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, ".1.140126010702336": {"type": "TypeVar", "varName": "_DTypeScalar_co", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126010702336", "variance": "COVARIANT"}, "140126014946464": {"type": "Concrete", "module": "numpy", "simpleName": "generic", "members": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125968595008"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993896752"}, "items": [{"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__array__"}, {"kind": "Variable", "name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968595680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968695584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968695808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968696032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968696256"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126279559072"}, "name": "byteswap"}, {"kind": "Variable", "name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968696480"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993898432"}, "items": [{"kind": "Variable", "name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "astype"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993899440"}, "items": [{"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "view"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993903136"}, "items": [{"kind": "Variable", "name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "getfield"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126279563104"}, "name": "item"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993903696"}, "items": [{"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "take"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126279564000"}, "name": "repeat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125998562688"}, "name": "flatten"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993959936"}, "name": "ravel"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993903472"}, "items": [{"kind": "Variable", "name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "reshape"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274471968"}, "name": "squeeze"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274472416"}, "name": "transpose"}, {"kind": "Variable", "name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968696704"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126014944784"}], "isAbstract": true}, "140125968595008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140125993896752": {"type": "Overloaded", "items": [{"nodeId": "140125998561792"}, {"nodeId": "140126279556384"}]}, "140125998561792": {"type": "Function", "typeVars": [".-1.140125998561792"], "argTypes": [{"nodeId": ".-1.140125998561792"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125998561792"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".-1.140125998561792": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125998561792", "variance": "INVARIANT"}, "140126279556384": {"type": "Function", "typeVars": [".-1.140126279556384"], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": ".-1.140126279556384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126279556384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126279556384": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126279556384", "variance": "INVARIANT"}, "140125968595680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968695584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968695808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968696032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}], "returnType": {"nodeId": "140125993900112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993900112": {"type": "Tuple", "items": []}, "140125968696256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}], "returnType": {"nodeId": "140125993900336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993900336": {"type": "Tuple", "items": []}, "140126279559072": {"type": "Function", "typeVars": [".-1.140126279559072"], "argTypes": [{"nodeId": ".-1.140126279559072"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126279559072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}, ".-1.140126279559072": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279559072", "variance": "INVARIANT"}, "140125968696480": {"type": "Function", "typeVars": [".-1.140125968696480"], "argTypes": [{"nodeId": ".-1.140125968696480"}], "returnType": {"nodeId": "140126010702672", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125968696480"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968696480": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125968696480", "variance": "INVARIANT"}, "140126010702672": {"type": "Concrete", "module": "numpy", "simpleName": "flatiter", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973002752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "coords", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973002528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973003424"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299970848"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299971296"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299971744"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299972192"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998207872"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299973536"}, "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998215824"}, "items": [{"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__array__"}], "typeVars": [{"nodeId": ".1.140126010702672"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125973002752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}], "returnType": {"nodeId": ".1.140126010702672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010702672": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126010702672", "variance": "INVARIANT"}, "140125973002528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}], "returnType": {"nodeId": "140125998212464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998212464": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125973003424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126299970848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}], "returnType": {"nodeId": ".1.140126010702672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126299971296": {"type": "Function", "typeVars": [".-1.140126299971296"], "argTypes": [{"nodeId": ".-1.140126299971296"}], "returnType": {"nodeId": ".-1.140126299971296"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126299971296": {"type": "TypeVar", "varName": "_FlatIterSelf", "values": [], "upperBound": {"nodeId": "140126010702672", "args": [{"nodeId": "A"}]}, "def": "140126299971296", "variance": "INVARIANT"}, "140126299971744": {"type": "Function", "typeVars": [".-1.140126299971744"], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140126299971744"}]}]}]}], "returnType": {"nodeId": ".-1.140126299971744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126299971744": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126299971744", "variance": "INVARIANT"}, "140126299972192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998207872": {"type": "Overloaded", "items": [{"nodeId": "140126299972640"}, {"nodeId": "140126299973088"}]}, "140126299972640": {"type": "Function", "typeVars": [".-1.140126299972640"], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140126299972640"}]}]}]}, {"nodeId": "140125998215936"}], "returnType": {"nodeId": ".-1.140126299972640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126299972640": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126299972640", "variance": "INVARIANT"}, "140125998215936": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, {"nodeId": "140125998215712"}]}, "140126010279296": {"type": "Concrete", "module": "numpy", "simpleName": "integer", "members": [{"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968702752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968710368"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993908624"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274654880"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274655328"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274655776"}, "name": "is_integer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274656224"}, "name": "bit_count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274656672"}, "name": "__index__"}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126010279296"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126010279296"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274657120"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274657568"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274658016"}, "name": "__invert__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274658464"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274658912"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274659360"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274659808"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274660256"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274660704"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274661152"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274661600"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274662048"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274662496"}, "name": "__rxor__"}], "typeVars": [{"nodeId": ".1.140126010279296"}], "bases": [{"nodeId": "140126014946800", "args": [{"nodeId": ".1.140126010279296"}]}], "isAbstract": true}, "140125968702752": {"type": "Function", "typeVars": [".-1.140125968702752"], "argTypes": [{"nodeId": ".-1.140125968702752"}], "returnType": {"nodeId": ".-1.140125968702752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968702752": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125968702752", "variance": "INVARIANT"}, "140125968710368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010279296": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010279296", "variance": "INVARIANT"}, "140126014478976": {"type": "Concrete", "module": "numpy._typing", "simpleName": "NBitBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216390464"}, "name": "__init_subclass__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126216390464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140125993908624": {"type": "Overloaded", "items": [{"nodeId": "140126274653984"}, {"nodeId": "140126274654432"}]}, "140126274653984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}, "140126274654432": {"type": "Function", "typeVars": [".-1.140126274654432"], "argTypes": [{"nodeId": ".-1.140126274654432"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126274654432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}, ".-1.140126274654432": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274654432", "variance": "INVARIANT"}, "140126119710384": {"type": "Protocol", "module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090160928"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__index__"]}, "140126090160928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274654880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994010096"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125994010096": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125994009648"}, {"nodeId": "140125994009984"}]}, "140125994009648": {"type": "Tuple", "items": []}, "140125994009984": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126274655328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274655776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274656224": {"type": "Function", "typeVars": [".-1.140126274656224"], "argTypes": [{"nodeId": ".-1.140126274656224"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126274656224": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274656224", "variance": "INVARIANT"}, "140126274656672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014937728": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_IntTrueDiv", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997882768"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014937728"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997882768": {"type": "Overloaded", "items": [{"nodeId": "140126258189632"}, {"nodeId": "140126258190080"}, {"nodeId": "140126258190528"}, {"nodeId": "140126258190976"}, {"nodeId": "140126258191424"}]}, "140126258189632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126014937728"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126014937728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014937728": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014937728", "variance": "INVARIANT"}, "140126010280976": {"type": "Concrete", "module": "numpy", "simpleName": "floating", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274821408"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274821856"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274822304"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274822752"}, "name": "is_integer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993967328"}, "name": "hex"}, {"kind": "Variable", "name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125969142432"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274824096"}, "name": "as_integer_ratio"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993967104"}, "name": "__ceil__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993968000"}, "name": "__floor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993968224"}, "name": "__trunc__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993968448"}, "name": "__getnewargs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typestr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993968672"}, "name": "__getformat__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994009200"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126010280976"}]}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126010280976"}], "bases": [{"nodeId": "140126010280640", "args": [{"nodeId": ".1.140126010280976"}]}], "isAbstract": false}, "140126274821408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}, {"nodeId": "140125994015808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".1.140126010280976": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010280976", "variance": "INVARIANT"}, "140125994015808": {"type": "TypeAlias", "target": {"nodeId": "140126015234656"}}, "140126015234656": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126015233424"}, {"nodeId": "140126119709376"}, {"nodeId": "140126119710384"}]}, "140126015233424": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140126019463968": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}]}, "140126274821856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}, {"nodeId": "140125994016592"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125994016592": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125994016144"}, {"nodeId": "140125994016480"}]}, "140125994016144": {"type": "Tuple", "items": []}, "140125994016480": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126274822304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274822752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993967328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994016704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994016704": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126014480656": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_64Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014480320"}], "isAbstract": false}, "140126014480320": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_80Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014479984"}], "isAbstract": false}, "140126014479984": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_96Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014479648"}], "isAbstract": false}, "140126014479648": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_128Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014479312"}], "isAbstract": false}, "140126014479312": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_256Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014478976"}], "isAbstract": false}, "140125969142432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140125994016816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994016816": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126274824096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}], "returnType": {"nodeId": "140125994017040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994017040": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140125993967104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994017152"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994017152": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125993968000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994017264"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994017264": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125993968224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994017376"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994017376": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125993968448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994017488"}], "returnType": {"nodeId": "140125994017712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994017488": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125994017712": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}]}, "140125993968672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994017824"}, {"nodeId": "140125994018160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994017824": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125994018160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140125994009200": {"type": "Overloaded", "items": [{"nodeId": "140126274826784"}, {"nodeId": "140126274827232"}]}, "140126274826784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010280976"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}, "140126274827232": {"type": "Function", "typeVars": [".-1.140126274827232"], "argTypes": [{"nodeId": ".-1.140126274827232"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126274827232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}, ".-1.140126274827232": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274827232", "variance": "INVARIANT"}, "140126014940752": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_FloatOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997979056"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014940752"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997979056": {"type": "Overloaded", "items": [{"nodeId": "140126258649280"}, {"nodeId": "140126258649728"}, {"nodeId": "140126258650176"}, {"nodeId": "140126258650624"}, {"nodeId": "140126258651072"}]}, "140126258649280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126014940752"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126014940752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014940752": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014940752", "variance": "INVARIANT"}, "140126258649728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126014940752"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997979728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997979728": {"type": "Union", "items": [{"nodeId": ".1.140126014940752"}, {"nodeId": "140125997979616"}]}, "140125997979616": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258650176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126014940752"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997979952"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997979952": {"type": "Union", "items": [{"nodeId": ".1.140126014940752"}, {"nodeId": "140125997979840"}]}, "140125997979840": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258650624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126014940752"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997980176"}, {"nodeId": "140125997980400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126010281312": {"type": "Concrete", "module": "numpy", "simpleName": "complexfloating", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274827680"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274828128"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274828576"}, "name": "tolist"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125969148928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125969149824"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274829920"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993968896"}, "name": "__getnewargs__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126010281312"}]}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}], "bases": [{"nodeId": "140126010280640", "args": [{"nodeId": ".1.140126010281312"}]}], "isAbstract": false}, "140126274827680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}, {"nodeId": "140125994018384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".1.140126010281312": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010281312", "variance": "INVARIANT"}, ".2.140126010281312": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010281312", "variance": "INVARIANT"}, "140125994018384": {"type": "TypeAlias", "target": {"nodeId": "140126015234880"}}, "140126015234880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126015233536"}, {"nodeId": "140126119709376"}, {"nodeId": "140126119709712"}, {"nodeId": "140126119710384"}, {"nodeId": "140126119316832"}]}, "140126015233536": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140126274828128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}, {"nodeId": "140125994019168"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125994019168": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125994018720"}, {"nodeId": "140125994019056"}]}, "140125994018720": {"type": "Tuple", "items": []}, "140125994019056": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126274828576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125969148928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010281312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125969149824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".2.140126010281312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274829920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126010281312"}, {"nodeId": ".2.140126010281312"}]}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126010281312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125993968896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125994019280"}], "returnType": {"nodeId": "140125994019504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994019280": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480656"}, {"nodeId": "140126014480656"}]}}, "140125994019504": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126014941760": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_ComplexOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997980736"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014941760"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997980736": {"type": "Overloaded", "items": [{"nodeId": "140126258655104"}, {"nodeId": "140126258655552"}, {"nodeId": "140126258656000"}, {"nodeId": "140126258656448"}]}, "140126258655104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126014941760"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": ".1.140126014941760"}, {"nodeId": ".1.140126014941760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014941760": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014941760", "variance": "INVARIANT"}, "140126258655552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126014941760"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997982976"}, {"nodeId": "140125997983200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997982976": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": "140125997982864"}]}, "140125997982864": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997983200": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": "140125997983088"}]}, "140125997983088": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258656000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126014941760"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997983424"}, {"nodeId": "140125997983648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997983424": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": "140125997983312"}]}, "140125997983312": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997983648": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": "140125997983536"}]}, "140125997983536": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258656448": {"type": "Function", "typeVars": [".-1.140126258656448"], "argTypes": [{"nodeId": "140126014941760", "args": [{"nodeId": ".1.140126014941760"}]}, {"nodeId": "140125997983760"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997983872"}, {"nodeId": "140125997983984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997983760": {"type": "Union", "items": [{"nodeId": "140126010279296", "args": [{"nodeId": ".-1.140126258656448"}]}, {"nodeId": "140126010280976", "args": [{"nodeId": ".-1.140126258656448"}]}, {"nodeId": "140126010281312", "args": [{"nodeId": ".-1.140126258656448"}, {"nodeId": ".-1.140126258656448"}]}]}, ".-1.140126258656448": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258656448", "variance": "INVARIANT"}, "140125997983872": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": ".-1.140126258656448"}]}, "140125997983984": {"type": "Union", "items": [{"nodeId": ".1.140126014941760"}, {"nodeId": ".-1.140126258656448"}]}, "140126010280640": {"type": "Concrete", "module": "numpy", "simpleName": "inexact", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274820960"}, "name": "__getnewargs__"}], "typeVars": [{"nodeId": ".1.140126010280640"}], "bases": [{"nodeId": "140126014946800", "args": [{"nodeId": ".1.140126010280640"}]}], "isAbstract": true}, "140126274820960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280640", "args": [{"nodeId": "140126014480656"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316496"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010280640": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010280640", "variance": "INVARIANT"}, "140126014946800": {"type": "Concrete", "module": "numpy", "simpleName": "number", "members": [{"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968697376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968697600"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274474208"}, "name": "__class_getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274474656"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274475104"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274475552"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274476000"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274476448"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274476896"}, "name": "__abs__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014942096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006182400"}, {"nodeId": "140126006185200"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006053456"}, {"nodeId": "140126006061520"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006057264"}, {"nodeId": "140126006065664"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006060512"}, {"nodeId": "140126006057152"}]}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014946800"}], "bases": [{"nodeId": "140126014946464"}], "isAbstract": true}, "140125968697376": {"type": "Function", "typeVars": [".-1.140125968697376"], "argTypes": [{"nodeId": ".-1.140125968697376"}], "returnType": {"nodeId": ".-1.140125968697376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968697376": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968697376", "variance": "INVARIANT"}, "140126014944784": {"type": "Concrete", "module": "numpy", "simpleName": "_ArrayOrScalarCommon", "members": [{"kind": "Variable", "name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973070112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973070560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973070784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973071008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973071232"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299977120"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299977568"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299978016"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299978464"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299978912"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126299979360"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300176672"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300177120"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125997932032"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300178016"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300178464"}, "name": "dumps"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300178912"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300179360"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300179808"}, "name": "tolist"}, {"kind": "Variable", "name": "__array_interface__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973071456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__array_priority__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973073024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__array_struct__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973073248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300181600"}, "name": "__setstate__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998215040"}, "items": [{"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "all"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997989360"}, "items": [{"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "any"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998385072"}, "items": [{"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "argmax"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998386192"}, "items": [{"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "argmin"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300187424"}, "name": "argsort"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998383952"}, "items": [{"kind": "Variable", "name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "choose"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998388096"}, "items": [{"kind": "Variable", "name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "clip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998388768"}, "items": [{"kind": "Variable", "name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "compress"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300191456"}, "name": "conj"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126300191904"}, "name": "conjugate"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998390336"}, "items": [{"kind": "Variable", "name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "cumprod"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998391008"}, "items": [{"kind": "Variable", "name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "cumsum"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998392352"}, "items": [{"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "max"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998393136"}, "items": [{"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "mean"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998393472"}, "items": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "min"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125997935392"}, "name": "newbyteorder"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998395264"}, "items": [{"kind": "Variable", "name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "prod"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998396608"}, "items": [{"kind": "Variable", "name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "ptp"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998397952"}, "items": [{"kind": "Variable", "name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "round"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998396720"}, "items": [{"kind": "Variable", "name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "std"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998396944"}, "items": [{"kind": "Variable", "name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sum"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125998399184"}, "items": [{"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "var"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125973070112": {"type": "Function", "typeVars": [".-1.140125973070112"], "argTypes": [{"nodeId": ".-1.140125973070112"}], "returnType": {"nodeId": ".-1.140125973070112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125973070112": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125973070112", "variance": "INVARIANT"}, "140125973070560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973070784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126014934032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014934032": {"type": "Concrete", "module": "numpy.core.multiarray", "simpleName": "flagsobj", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writeable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writebackifcopy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "behaved", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976834592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976834144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "carray", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976833248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976833024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976830560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "farray", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976832352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fnc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976739200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "forc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976738304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fortran", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976738528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976738080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "owndata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125976866240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126229292512"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126229292960"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125976834592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976834144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976833248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976833024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976830560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976832352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976739200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976738304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976738528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976738080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125976866240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126229292512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}, {"nodeId": "140126002688656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126002688656": {"type": "TypeAlias", "target": {"nodeId": "140126015136016"}}, "140126015136016": {"type": "Union", "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"}]}, "140126229292960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014934032"}, {"nodeId": "140126002691232"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126002691232": {"type": "TypeAlias", "target": {"nodeId": "140126015132320"}}, "140126015132320": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125973071008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973071232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126299977120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126299977568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126299978016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126299978464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126299978912": {"type": "Function", "typeVars": [".-1.140126299978912"], "argTypes": [{"nodeId": ".-1.140126299978912"}], "returnType": {"nodeId": ".-1.140126299978912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126299978912": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126299978912", "variance": "INVARIANT"}, "140126299979360": {"type": "Function", "typeVars": [".-1.140126299979360"], "argTypes": [{"nodeId": ".-1.140126299979360"}, {"nodeId": "140125998218064"}], "returnType": {"nodeId": ".-1.140126299979360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126299979360": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126299979360", "variance": "INVARIANT"}, "140125998218064": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": "A"}]}]}, "140126300176672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126300177120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997932032": {"type": "Function", "typeVars": [".-1.140125997932032"], "argTypes": [{"nodeId": ".-1.140125997932032"}, {"nodeId": "140125998218624"}], "returnType": {"nodeId": ".-1.140125997932032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, ".-1.140125997932032": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125997932032", "variance": "INVARIANT"}, "140125998218624": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126015229840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126300178016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998217504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "file"]}, "140125998217504": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126014944448", "args": [{"nodeId": "140126119716096"}]}]}, "140126111297408": {"type": "Protocol", "module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073302016"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126111297408"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__fspath__"]}, "140126073302016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111297408", "args": [{"nodeId": ".1.140126111297408"}]}], "returnType": {"nodeId": ".1.140126111297408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126111297408": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126111297408", "variance": "COVARIANT"}, "140126014944448": {"type": "Protocol", "module": "numpy", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308956448"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140126014944448"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["write"]}, "140126308956448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944448", "args": [{"nodeId": ".1.140126014944448"}]}, {"nodeId": ".1.140126014944448"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014944448": {"type": "TypeVar", "varName": "_AnyStr_contra", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014944448", "variance": "CONTRAVARIANT"}, "140126300178464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126300178912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998218736"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140125998218736": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126300179360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998218848"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}, "140125998218848": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126014943776"}]}, "140126014943776": {"type": "Protocol", "module": "numpy", "simpleName": "_IOProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308951968"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308952416"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308952864"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308953312"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["fileno", "flush", "seek", "tell"]}, "140126308951968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943776"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308952416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943776"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308952864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943776"}], "returnType": {"nodeId": "140126119710384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308953312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943776"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126300179808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973071456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973073024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973073248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126300181600": {"type": "Function", "typeVars": [".-1.140126300181600"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998383840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998383840": {"type": "Tuple", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140125998383392"}, {"nodeId": ".-1.140126300181600"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998383616"}]}, "140125998383392": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126036110560": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119710384"}]}]}, ".-1.140126300181600": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126300181600", "variance": "COVARIANT"}, "140125998383616": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}]}, "140125998215040": {"type": "Overloaded", "items": [{"nodeId": "140126300182048"}, {"nodeId": "140126300182496"}, {"nodeId": "140126300182944"}]}, "140126300182048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140125998384176"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998384176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010277952": {"type": "Concrete", "module": "numpy", "simpleName": "bool_", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274477344"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274477792"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274478240"}, "name": "tolist"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968698720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968699616"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274479584"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274480032"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274480480"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274480928"}, "name": "__abs__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126006186544"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126006186432"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126006186992"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935376", "args": [{"nodeId": "140126006185536"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936384"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274481376"}, "name": "__invert__"}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126006186880"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126006187104"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126006187216"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126006187328"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014935712", "args": [{"nodeId": "140126010277952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014936720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006409392"}, {"nodeId": "140126006409168"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006409616"}, {"nodeId": "140126006409056"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006409840"}, {"nodeId": "140126006409280"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006410064"}, {"nodeId": "140126006409504"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126014946464"}], "isAbstract": false}, "140126274477344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140126274477792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}, {"nodeId": "140125993908512"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125993908512": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125993908064"}, {"nodeId": "140125993908400"}]}, "140125993908064": {"type": "Tuple", "items": []}, "140125993908400": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126274478240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968698720": {"type": "Function", "typeVars": [".-1.140125968698720"], "argTypes": [{"nodeId": ".-1.140125968698720"}], "returnType": {"nodeId": ".-1.140125968698720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968698720": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968698720", "variance": "INVARIANT"}, "140125968699616": {"type": "Function", "typeVars": [".-1.140125968699616"], "argTypes": [{"nodeId": ".-1.140125968699616"}], "returnType": {"nodeId": ".-1.140125968699616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968699616": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968699616", "variance": "INVARIANT"}, "140126274479584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274480032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274480480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274480928": {"type": "Function", "typeVars": [".-1.140126274480928"], "argTypes": [{"nodeId": ".-1.140126274480928"}], "returnType": {"nodeId": ".-1.140126274480928"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274480928": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274480928", "variance": "INVARIANT"}, "140126014935376": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997879856"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014935376"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997879856": {"type": "Overloaded", "items": [{"nodeId": "140126258536832"}, {"nodeId": "140126258537280"}, {"nodeId": "140126258537728"}, {"nodeId": "140126258538176"}, {"nodeId": "140126258538624"}]}, "140126258536832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935376", "args": [{"nodeId": ".1.140126014935376"}]}, {"nodeId": "140125997880304"}], "returnType": {"nodeId": ".1.140126014935376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014935376": {"type": "TypeVar", "varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126014935376", "variance": "COVARIANT"}, "140125997880304": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140126010930144": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126010277952"}]}, "140126258537280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935376", "args": [{"nodeId": ".1.140126014935376"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140125997880976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997880976": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126010279632": {"type": "Concrete", "module": "numpy", "simpleName": "signedinteger", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274662944"}, "name": "__init__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126010279632"}]}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126010279632"}], "bases": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279632"}]}], "isAbstract": false}, "140126274662944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279632", "args": [{"nodeId": ".1.140126010279632"}]}, {"nodeId": "140125994013008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".1.140126010279632": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010279632", "variance": "INVARIANT"}, "140125994013008": {"type": "TypeAlias", "target": {"nodeId": "140126015233648"}}, "140126015233648": {"type": "Union", "items": [{"nodeId": "140126119709040"}, {"nodeId": "140126015233872"}, {"nodeId": "140126119710384"}]}, "140126015233872": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140126014939408": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SignedIntOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997974128"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014939408"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997974128": {"type": "Overloaded", "items": [{"nodeId": "140126258199488"}, {"nodeId": "140126258199936"}, {"nodeId": "140126258643008"}, {"nodeId": "140126258643456"}, {"nodeId": "140126258643904"}]}, "140126258199488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126014939408"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": ".1.140126014939408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014939408": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014939408", "variance": "INVARIANT"}, "140126258199936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126014939408"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997974800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997974800": {"type": "Union", "items": [{"nodeId": ".1.140126014939408"}, {"nodeId": "140125997974688"}]}, "140125997974688": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258643008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126014939408"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997975024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997975024": {"type": "Union", "items": [{"nodeId": ".1.140126014939408"}, {"nodeId": "140125997974912"}]}, "140125997974912": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258643456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126014939408"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997975248"}, {"nodeId": "140125997975472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997975248": {"type": "Union", "items": [{"nodeId": ".1.140126014939408"}, {"nodeId": "140125997975136"}]}, "140125997975136": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997975472": {"type": "Union", "items": [{"nodeId": ".1.140126014939408"}, {"nodeId": "140125997975360"}]}, "140125997975360": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258643904": {"type": "Function", "typeVars": [".-1.140126258643904"], "argTypes": [{"nodeId": "140126014939408", "args": [{"nodeId": ".1.140126014939408"}]}, {"nodeId": "140126010279632", "args": [{"nodeId": ".-1.140126258643904"}]}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997975584"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258643904": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258643904", "variance": "INVARIANT"}, "140125997975584": {"type": "Union", "items": [{"nodeId": ".1.140126014939408"}, {"nodeId": ".-1.140126258643904"}]}, "140126014939744": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126015228272"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014939744"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126015228272": {"type": "Overloaded", "items": [{"nodeId": "140126258644352"}, {"nodeId": "140126258644800"}, {"nodeId": "140126258645248"}]}, "140126258644352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126014939744"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": ".1.140126014939744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014939744": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014939744", "variance": "INVARIANT"}, "140126258644800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126014939744"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997976368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997976368": {"type": "Union", "items": [{"nodeId": ".1.140126014939744"}, {"nodeId": "140125997976256"}]}, "140125997976256": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258645248": {"type": "Function", "typeVars": [".-1.140126258645248"], "argTypes": [{"nodeId": "140126014939744", "args": [{"nodeId": ".1.140126014939744"}]}, {"nodeId": "140126010279632", "args": [{"nodeId": ".-1.140126258645248"}]}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997976704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258645248": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258645248", "variance": "INVARIANT"}, "140125997976704": {"type": "Union", "items": [{"nodeId": ".1.140126014939744"}, {"nodeId": ".-1.140126258645248"}]}, "140126014940080": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SignedIntMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997976480"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014940080"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997976480": {"type": "Overloaded", "items": [{"nodeId": "140126258645696"}, {"nodeId": "140126258646144"}, {"nodeId": "140126258646592"}, {"nodeId": "140126258647040"}]}, "140126258645696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126014940080"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": ".1.140126014940080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014940080": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014940080", "variance": "INVARIANT"}, "140126258646144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126014940080"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997977040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997977040": {"type": "Union", "items": [{"nodeId": ".1.140126014940080"}, {"nodeId": "140125997976928"}]}, "140125997976928": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258646592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126014940080"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997977264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997977264": {"type": "Union", "items": [{"nodeId": ".1.140126014940080"}, {"nodeId": "140125997977152"}]}, "140125997977152": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258647040": {"type": "Function", "typeVars": [".-1.140126258647040"], "argTypes": [{"nodeId": "140126014940080", "args": [{"nodeId": ".1.140126014940080"}]}, {"nodeId": "140126010279632", "args": [{"nodeId": ".-1.140126258647040"}]}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "140125997977376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258647040": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258647040", "variance": "INVARIANT"}, "140125997977376": {"type": "Union", "items": [{"nodeId": ".1.140126014940080"}, {"nodeId": ".-1.140126258647040"}]}, "140126014940416": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126015226816"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014940416"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126015226816": {"type": "Overloaded", "items": [{"nodeId": "140126258647488"}, {"nodeId": "140126258647936"}, {"nodeId": "140126258648384"}, {"nodeId": "140126258648832"}]}, "140126258647488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126014940416"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014940416": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014940416", "variance": "INVARIANT"}, "140126258647936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126014940416"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258648384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126014940416"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258648832": {"type": "Function", "typeVars": [".-1.140126258648832"], "argTypes": [{"nodeId": "140126014940416", "args": [{"nodeId": ".1.140126014940416"}]}, {"nodeId": "140126010279632", "args": [{"nodeId": ".-1.140126258648832"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258648832": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258648832", "variance": "INVARIANT"}, "140126015235552": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258537728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935376", "args": [{"nodeId": ".1.140126014935376"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140125997881200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997881200": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126258538176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935376", "args": [{"nodeId": ".1.140126014935376"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140125997881312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997881312": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480656"}, {"nodeId": "140126014480656"}]}}, "140126258538624": {"type": "Function", "typeVars": [".-1.140126258538624"], "argTypes": [{"nodeId": "140126014935376", "args": [{"nodeId": ".1.140126014935376"}]}, {"nodeId": ".-1.140126258538624"}], "returnType": {"nodeId": ".-1.140126258538624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258538624": {"type": "TypeVar", "varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140126014946800", "args": [{"nodeId": "A"}]}, "def": "140126258538624", "variance": "INVARIANT"}, "140126014936048": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolSub", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997879408"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997879408": {"type": "Overloaded", "items": [{"nodeId": "140126258540416"}, {"nodeId": "140126258540864"}, {"nodeId": "140126258541312"}, {"nodeId": "140126258541760"}, {"nodeId": "140126258542208"}]}, "140126258540416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936048"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258540864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936048"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140125997881872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997881872": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126258541312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936048"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140125997881984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997881984": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126258541760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936048"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140125997882096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997882096": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480656"}, {"nodeId": "140126014480656"}]}}, "140126258542208": {"type": "Function", "typeVars": [".-1.140126258542208"], "argTypes": [{"nodeId": "140126014936048"}, {"nodeId": ".-1.140126258542208"}], "returnType": {"nodeId": ".-1.140126258542208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258542208": {"type": "TypeVar", "varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140126014946800", "args": [{"nodeId": "A"}]}, "def": "140126258542208", "variance": "INVARIANT"}, "140126006186544": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126014481664": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_8Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014481328"}], "isAbstract": false}, "140126014481328": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_16Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014480992"}], "isAbstract": false}, "140126014480992": {"type": "Concrete", "module": "numpy._typing", "simpleName": "_32Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014480656"}], "isAbstract": false}, "140126006186432": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126006186992": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126006185536": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126014936384": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolTrueDiv", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997880752"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997880752": {"type": "Overloaded", "items": [{"nodeId": "140126258542656"}, {"nodeId": "140126258543104"}, {"nodeId": "140126258543552"}]}, "140126258542656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936384"}, {"nodeId": "140125997882432"}], "returnType": {"nodeId": "140125997882544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997882432": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140125997882320"}]}, "140125997882320": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126010930928": {"type": "Union", "items": [{"nodeId": "140126010930704"}, {"nodeId": "140126119316160"}, {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}]}, "140126010930704": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140125997882544": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126258543104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936384"}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140125997882656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997882656": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480656"}, {"nodeId": "140126014480656"}]}}, "140126258543552": {"type": "Function", "typeVars": [".-1.140126258543552"], "argTypes": [{"nodeId": "140126014936384"}, {"nodeId": ".-1.140126258543552"}], "returnType": {"nodeId": ".-1.140126258543552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258543552": {"type": "TypeVar", "varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140126014946800", "args": [{"nodeId": "A"}]}, "def": "140126258543552", "variance": "INVARIANT"}, "140126274481376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010277952"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126014935712": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolBitOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997880192"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014935712"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997880192": {"type": "Overloaded", "items": [{"nodeId": "140126258539072"}, {"nodeId": "140126258539520"}, {"nodeId": "140126258539968"}]}, "140126258539072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935712", "args": [{"nodeId": ".1.140126014935712"}]}, {"nodeId": "140125997881536"}], "returnType": {"nodeId": ".1.140126014935712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014935712": {"type": "TypeVar", "varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126014935712", "variance": "COVARIANT"}, "140125997881536": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140126258539520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014935712", "args": [{"nodeId": ".1.140126014935712"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140125997881648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997881648": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126258539968": {"type": "Function", "typeVars": [".-1.140126258539968"], "argTypes": [{"nodeId": "140126014935712", "args": [{"nodeId": ".1.140126014935712"}]}, {"nodeId": ".-1.140126258539968"}], "returnType": {"nodeId": ".-1.140126258539968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258539968": {"type": "TypeVar", "varName": "_IntType", "values": [], "upperBound": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "def": "140126258539968", "variance": "INVARIANT"}, "140126006186880": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126006187104": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126006187216": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126006187328": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126014936720": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997881424"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997881424": {"type": "Overloaded", "items": [{"nodeId": "140126258544000"}, {"nodeId": "140126258184256"}, {"nodeId": "140126258184704"}, {"nodeId": "140126258185152"}, {"nodeId": "140126258185600"}]}, "140126258544000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936720"}, {"nodeId": "140125997882880"}], "returnType": {"nodeId": "140125997882992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997882880": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140125997882992": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126258184256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936720"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140125997883104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997883104": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126258184704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014936720"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140125997883216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997883216": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126258185152": {"type": "Function", "typeVars": [".-1.140126258185152"], "argTypes": [{"nodeId": "140126014936720"}, {"nodeId": ".-1.140126258185152"}], "returnType": {"nodeId": ".-1.140126258185152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258185152": {"type": "TypeVar", "varName": "_IntType", "values": [], "upperBound": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "def": "140126258185152", "variance": "INVARIANT"}, "140126258185600": {"type": "Function", "typeVars": [".-1.140126258185600"], "argTypes": [{"nodeId": "140126014936720"}, {"nodeId": ".-1.140126258185600"}], "returnType": {"nodeId": ".-1.140126258185600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258185600": {"type": "TypeVar", "varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140126010280976", "args": [{"nodeId": "A"}]}, "def": "140126258185600", "variance": "INVARIANT"}, "140126014937056": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_BoolDivMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997881760"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997881760": {"type": "Overloaded", "items": [{"nodeId": "140126258186048"}, {"nodeId": "140126258186496"}, {"nodeId": "140126258186944"}, {"nodeId": "140126258187392"}, {"nodeId": "140126258187840"}]}, "140126258186048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937056"}, {"nodeId": "140125997883440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997883440": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140126258186496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937056"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258186944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937056"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258187392": {"type": "Function", "typeVars": [".-1.140126258187392"], "argTypes": [{"nodeId": "140126014937056"}, {"nodeId": ".-1.140126258187392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258187392": {"type": "TypeVar", "varName": "_IntType", "values": [], "upperBound": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "def": "140126258187392", "variance": "INVARIANT"}, "140126258187840": {"type": "Function", "typeVars": [".-1.140126258187840"], "argTypes": [{"nodeId": "140126014937056"}, {"nodeId": ".-1.140126258187840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258187840": {"type": "TypeVar", "varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140126010280976", "args": [{"nodeId": "A"}]}, "def": "140126258187840", "variance": "INVARIANT"}, "140126014943104": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_ComparisonOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997981520"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014943104"}, {"nodeId": ".2.140126014943104"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997981520": {"type": "Overloaded", "items": [{"nodeId": "140126258658240"}, {"nodeId": "140126258658688"}, {"nodeId": "140126241030208"}]}, "140126258658240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943104", "args": [{"nodeId": ".1.140126014943104"}, {"nodeId": ".2.140126014943104"}]}, {"nodeId": ".1.140126014943104"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014943104": {"type": "TypeVar", "varName": "_T1_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014943104", "variance": "CONTRAVARIANT"}, ".2.140126014943104": {"type": "TypeVar", "varName": "_T2_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014943104", "variance": "CONTRAVARIANT"}, "140126258658688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943104", "args": [{"nodeId": ".1.140126014943104"}, {"nodeId": ".2.140126014943104"}]}, {"nodeId": ".2.140126014943104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126241030208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943104", "args": [{"nodeId": ".1.140126014943104"}, {"nodeId": ".2.140126014943104"}]}, {"nodeId": "140125997984880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997984880": {"type": "Union", "items": [{"nodeId": "140126014942432"}, {"nodeId": "140126014942768"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140125997984768"}]}]}, "140126014942432": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SupportsLT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258657344"}, "name": "__lt__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__lt__"]}, "140126258657344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014942432"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126014942768": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_SupportsGT", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258657792"}, "name": "__gt__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__gt__"]}, "140126258657792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014942768"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126023538320": {"type": "Protocol", "module": "numpy._typing._nested_sequence", "simpleName": "_NestedSequence", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183084704"}, "name": "__len__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031334864"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183086048"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183086496"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183086944"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183087392"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183087840"}, "name": "index"}], "typeVars": [{"nodeId": ".1.140126023538320"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "__reversed__", "count", "index"]}, "140126183084704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126023538320": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126023538320", "variance": "COVARIANT"}, "140126031334864": {"type": "Overloaded", "items": [{"nodeId": "140126183085152"}, {"nodeId": "140126183085600"}]}, "140126183085152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126031334752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126031334752": {"type": "Union", "items": [{"nodeId": ".1.140126023538320"}, {"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}]}, "140126183085600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183086048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183086496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126031335200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126031335200": {"type": "Union", "items": [{"nodeId": ".1.140126023538320"}, {"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}]}, "140126183086944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126031335312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126031335312": {"type": "Union", "items": [{"nodeId": ".1.140126023538320"}, {"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}]}, "140126183087392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183087840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538320", "args": [{"nodeId": ".1.140126023538320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997984768": {"type": "Union", "items": [{"nodeId": "140126014942432"}, {"nodeId": "140126014942768"}]}, "140126006409392": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126010932048": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316832"}, {"nodeId": "140126014946800", "args": [{"nodeId": "A"}]}, {"nodeId": "140126010277952"}]}, "140126006409168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006409616": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006409056": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006409840": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006409280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006410064": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006409504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300182496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998384400"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998384512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998384400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998384288"}]}, "140125998384288": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998384512": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300182944": {"type": "Function", "typeVars": [".-1.140126300182944"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998384848"}, {"nodeId": ".-1.140126300182944"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998384960"}], "returnType": {"nodeId": ".-1.140126300182944"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998384848": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998384736"}]}, "140125998384736": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126300182944": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300182944", "variance": "INVARIANT"}, "140125998384960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125997989360": {"type": "Overloaded", "items": [{"nodeId": "140126300183392"}, {"nodeId": "140126300183840"}, {"nodeId": "140126300184288"}]}, "140126300183392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140125998385296"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998385296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300183840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998385520"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998385632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998385520": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998385408"}]}, "140125998385408": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998385632": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300184288": {"type": "Function", "typeVars": [".-1.140126300184288"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998385968"}, {"nodeId": ".-1.140126300184288"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998386080"}], "returnType": {"nodeId": ".-1.140126300184288"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}, "140125998385968": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998385856"}]}, "140125998385856": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126300184288": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300184288", "variance": "INVARIANT"}, "140125998386080": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998385072": {"type": "Overloaded", "items": [{"nodeId": "140126300184736"}, {"nodeId": "140126300185184"}, {"nodeId": "140126300185632"}]}, "140126300184736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140125998386416"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998386416": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126015235440": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126300185184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140126119710384"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140126300185632": {"type": "Function", "typeVars": [".-1.140126300185632"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998386640"}, {"nodeId": ".-1.140126300185632"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126300185632"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998386640": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, ".-1.140126300185632": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300185632", "variance": "INVARIANT"}, "140125998386192": {"type": "Overloaded", "items": [{"nodeId": "140126300186080"}, {"nodeId": "140126300186528"}, {"nodeId": "140126300186976"}]}, "140126300186080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140125998386976"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998386976": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126300186528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140126119710384"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140126300186976": {"type": "Function", "typeVars": [".-1.140126300186976"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998387200"}, {"nodeId": ".-1.140126300186976"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126300186976"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998387200": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, ".-1.140126300186976": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300186976", "variance": "INVARIANT"}, "140126300187424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998387312"}, {"nodeId": "140125998387536"}, {"nodeId": "140125998387648"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}, "140125998387312": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998387536": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998387424"}]}, "140125998387424": {"type": "TypeAlias", "target": {"nodeId": "140126015232528"}}, "140126015232528": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998387648": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125998383952": {"type": "Overloaded", "items": [{"nodeId": "140126300187872"}, {"nodeId": "140126300188320"}]}, "140126300187872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998386752"}, {"nodeId": "N"}, {"nodeId": "140125998387872"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}, "140125998386752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998387872": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126015231744": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126300188320": {"type": "Function", "typeVars": [".-1.140126300188320"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998388208"}, {"nodeId": ".-1.140126300188320"}, {"nodeId": "140125998388544"}], "returnType": {"nodeId": ".-1.140126300188320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}, "140125998388208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, ".-1.140126300188320": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300188320", "variance": "INVARIANT"}, "140125998388544": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140125998388096": {"type": "Overloaded", "items": [{"nodeId": "140126300188768"}, {"nodeId": "140126300189216"}, {"nodeId": "140126300189664"}, {"nodeId": "140126300190112"}]}, "140126300188768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998388320"}, {"nodeId": "140125998388880"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}, "140125998388320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998388880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998388432"}]}, "140125998388432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300189216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "140125998389328"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}, "140125998389328": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126300189664": {"type": "Function", "typeVars": [".-1.140126300189664"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998389664"}, {"nodeId": "140125998389776"}, {"nodeId": ".-1.140126300189664"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126300189664"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}, "140125998389664": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998389776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998389216"}]}, "140125998389216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, ".-1.140126300189664": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300189664", "variance": "INVARIANT"}, "140126300190112": {"type": "Function", "typeVars": [".-1.140126300190112"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "N"}, {"nodeId": "140125998389552"}, {"nodeId": ".-1.140126300190112"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126300190112"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}, "140125998389552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, ".-1.140126300190112": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300190112", "variance": "INVARIANT"}, "140125998388768": {"type": "Overloaded", "items": [{"nodeId": "140126300190560"}, {"nodeId": "140126300191008"}]}, "140126300190560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998390224"}, {"nodeId": "140125998390448"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}, "140125998390224": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998390448": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140126300191008": {"type": "Function", "typeVars": [".-1.140126300191008"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998390784"}, {"nodeId": "140125998390112"}, {"nodeId": ".-1.140126300191008"}], "returnType": {"nodeId": ".-1.140126300191008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}, "140125998390784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998390112": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, ".-1.140126300191008": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126300191008", "variance": "INVARIANT"}, "140126300191456": {"type": "Function", "typeVars": [".-1.140126300191456"], "argTypes": [{"nodeId": ".-1.140126300191456"}], "returnType": {"nodeId": ".-1.140126300191456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126300191456": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126300191456", "variance": "INVARIANT"}, "140126300191904": {"type": "Function", "typeVars": [".-1.140126300191904"], "argTypes": [{"nodeId": ".-1.140126300191904"}], "returnType": {"nodeId": ".-1.140126300191904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126300191904": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126300191904", "variance": "INVARIANT"}, "140125998390336": {"type": "Overloaded", "items": [{"nodeId": "140126300192352"}, {"nodeId": "140126283006240"}]}, "140126300192352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998390896"}, {"nodeId": "140125998391120"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125998390896": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998391120": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126006328368": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "0"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126019466992"}]}, "140126023548064": {"type": "Protocol", "module": "numpy._typing._dtype_like", "simpleName": "_SupportsDType", "members": [{"kind": "Variable", "name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031591936"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126023548064"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["dtype"]}, "140126031591936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023548064", "args": [{"nodeId": ".1.140126023548064"}]}], "returnType": {"nodeId": ".1.140126023548064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126023548064": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126023548064", "variance": "COVARIANT"}, "140126019466992": {"type": "TypeAlias", "target": {"nodeId": "140126014654272"}}, "140126014654272": {"type": "Union", "items": [{"nodeId": "140126014653264"}, {"nodeId": "140126014653600"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": "140126014653824"}, {"nodeId": "140126014654160"}]}, "140126014653264": {"type": "Tuple", "items": [{"nodeId": "140126019468560"}, {"nodeId": "140126119316160"}]}, "140126019468560": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126014653600": {"type": "Tuple", "items": [{"nodeId": "140126014653376"}, {"nodeId": "140126014653488"}]}, "140126014653376": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126014653488": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126014653824": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126014654160": {"type": "Tuple", "items": [{"nodeId": "140126014653936"}, {"nodeId": "140126014654048"}]}, "140126014653936": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126014654048": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126283006240": {"type": "Function", "typeVars": [".-1.140126283006240"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998391680"}, {"nodeId": "140125998392016"}, {"nodeId": ".-1.140126283006240"}], "returnType": {"nodeId": ".-1.140126283006240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125998391680": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998392016": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283006240": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283006240", "variance": "INVARIANT"}, "140125998391008": {"type": "Overloaded", "items": [{"nodeId": "140126283006688"}, {"nodeId": "140126283007136"}]}, "140126283006688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998391456"}, {"nodeId": "140125998392128"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125998391456": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998392128": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126283007136": {"type": "Function", "typeVars": [".-1.140126283007136"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998392464"}, {"nodeId": "140125998392800"}, {"nodeId": ".-1.140126283007136"}], "returnType": {"nodeId": ".-1.140126283007136"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125998392464": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998392800": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283007136": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283007136", "variance": "INVARIANT"}, "140125998392352": {"type": "Overloaded", "items": [{"nodeId": "140126283007584"}, {"nodeId": "140126283008032"}]}, "140126283007584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998391904"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998391344"}, {"nodeId": "140125998392688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}, "140125998391904": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998392240"}]}, "140125998392240": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998391344": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998392688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283008032": {"type": "Function", "typeVars": [".-1.140126283008032"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998393024"}, {"nodeId": ".-1.140126283008032"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998390672"}, {"nodeId": "140125998392912"}], "returnType": {"nodeId": ".-1.140126283008032"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}, "140125998393024": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998393584"}]}, "140125998393584": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126283008032": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283008032", "variance": "INVARIANT"}, "140125998390672": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998392912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998393136": {"type": "Overloaded", "items": [{"nodeId": "140126283008480"}, {"nodeId": "140126283008928"}]}, "140126283008480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998393248"}, {"nodeId": "140125998393808"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998393696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}, "140125998393248": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998391568"}]}, "140125998391568": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998393808": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998393696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283008928": {"type": "Function", "typeVars": [".-1.140126283008928"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998394032"}, {"nodeId": "140125998394928"}, {"nodeId": ".-1.140126283008928"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998394144"}], "returnType": {"nodeId": ".-1.140126283008928"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}, "140125998394032": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998394368"}]}, "140125998394368": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998394928": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283008928": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283008928", "variance": "INVARIANT"}, "140125998394144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998393472": {"type": "Overloaded", "items": [{"nodeId": "140126283009376"}, {"nodeId": "140126283009824"}]}, "140126283009376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998394592"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998393360"}, {"nodeId": "140125998394256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}, "140125998394592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998394816"}]}, "140125998394816": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998393360": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998394256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283009824": {"type": "Function", "typeVars": [".-1.140126283009824"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998394704"}, {"nodeId": ".-1.140126283009824"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998394480"}, {"nodeId": "140125998395040"}], "returnType": {"nodeId": ".-1.140126283009824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}, "140125998394704": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998395376"}]}, "140125998395376": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126283009824": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283009824", "variance": "INVARIANT"}, "140125998394480": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998395040": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125997935392": {"type": "Function", "typeVars": [".-1.140125997935392"], "argTypes": [{"nodeId": ".-1.140125997935392"}, {"nodeId": "140125998395152"}], "returnType": {"nodeId": ".-1.140125997935392"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".-1.140125997935392": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125997935392", "variance": "INVARIANT"}, "140125998395152": {"type": "TypeAlias", "target": {"nodeId": "140126015230624"}}, "140126015230624": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998395264": {"type": "Overloaded", "items": [{"nodeId": "140126283010720"}, {"nodeId": "140126283011168"}]}, "140126283010720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998395600"}, {"nodeId": "140125998396048"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998395936"}, {"nodeId": "140125998396160"}], "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"]}, "140125998395600": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998395488"}]}, "140125998395488": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998396048": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998395936": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998396160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283011168": {"type": "Function", "typeVars": [".-1.140126283011168"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998396384"}, {"nodeId": "140125998397392"}, {"nodeId": ".-1.140126283011168"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998396496"}, {"nodeId": "140125998395712"}], "returnType": {"nodeId": ".-1.140126283011168"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}, "140125998396384": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998396832"}]}, "140125998396832": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998397392": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283011168": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283011168", "variance": "INVARIANT"}, "140125998396496": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998395712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998396608": {"type": "Overloaded", "items": [{"nodeId": "140126283011616"}, {"nodeId": "140126283012064"}]}, "140126283011616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998397056"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998397056": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998397840"}]}, "140125998397840": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126283012064": {"type": "Function", "typeVars": [".-1.140126283012064"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998398400"}, {"nodeId": ".-1.140126283012064"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126283012064"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140125998398400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998397280"}]}, "140125998397280": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126283012064": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283012064", "variance": "INVARIANT"}, "140125998397952": {"type": "Overloaded", "items": [{"nodeId": "140126283012512"}, {"nodeId": "140126283012960"}]}, "140126283012512": {"type": "Function", "typeVars": [".-1.140126283012512"], "argTypes": [{"nodeId": ".-1.140126283012512"}, {"nodeId": "140126119710384"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140126283012512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}, ".-1.140126283012512": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126283012512", "variance": "INVARIANT"}, "140126283012960": {"type": "Function", "typeVars": [".-1.140126283012960"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140126119710384"}, {"nodeId": ".-1.140126283012960"}], "returnType": {"nodeId": ".-1.140126283012960"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}, ".-1.140126283012960": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283012960", "variance": "INVARIANT"}, "140125998396720": {"type": "Overloaded", "items": [{"nodeId": "140126283013408"}, {"nodeId": "140126283013856"}]}, "140126283013408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998397168"}, {"nodeId": "140125998398288"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998398064"}], "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"]}, "140125998397168": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998397504"}]}, "140125998397504": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998398288": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998398064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283013856": {"type": "Function", "typeVars": [".-1.140126283013856"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998398512"}, {"nodeId": "140125998398848"}, {"nodeId": ".-1.140126283013856"}, {"nodeId": "140126119316496"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998398624"}], "returnType": {"nodeId": ".-1.140126283013856"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}, "140125998398512": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998398736"}]}, "140125998398736": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998398848": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283013856": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283013856", "variance": "INVARIANT"}, "140125998398624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998396944": {"type": "Overloaded", "items": [{"nodeId": "140126283014304"}, {"nodeId": "140126283014752"}]}, "140126283014304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998398960"}, {"nodeId": "140125998399296"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998449040"}, {"nodeId": "140125998449600"}], "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"]}, "140125998398960": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998397728"}]}, "140125998397728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998399296": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998449040": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998449600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283014752": {"type": "Function", "typeVars": [".-1.140126283014752"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998448928"}, {"nodeId": "140125998449152"}, {"nodeId": ".-1.140126283014752"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998449936"}, {"nodeId": "140125998449488"}], "returnType": {"nodeId": ".-1.140126283014752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}, "140125998448928": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998449376"}]}, "140125998449376": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998449152": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283014752": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283014752", "variance": "INVARIANT"}, "140125998449936": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140125998449488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998399184": {"type": "Overloaded", "items": [{"nodeId": "140126283015200"}, {"nodeId": "140126283015648"}]}, "140126283015200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998450384"}, {"nodeId": "140125998450160"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998449712"}], "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"]}, "140125998450384": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998448816"}]}, "140125998448816": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998450160": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998449712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283015648": {"type": "Function", "typeVars": [".-1.140126283015648"], "argTypes": [{"nodeId": "140126014944784"}, {"nodeId": "140125998449264"}, {"nodeId": "140125998451056"}, {"nodeId": ".-1.140126283015648"}, {"nodeId": "140126119316496"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998450272"}], "returnType": {"nodeId": ".-1.140126283015648"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}, "140125998449264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998449824"}]}, "140125998449824": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998451056": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283015648": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283015648", "variance": "INVARIANT"}, "140125998450272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125968697600": {"type": "Function", "typeVars": [".-1.140125968697600"], "argTypes": [{"nodeId": ".-1.140125968697600"}], "returnType": {"nodeId": ".-1.140125968697600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968697600": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968697600", "variance": "INVARIANT"}, "140126274474208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140126274474656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946800", "args": [{"nodeId": ".1.140126014946800"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126014946800": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014946800", "variance": "INVARIANT"}, "140126274475104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946800", "args": [{"nodeId": ".1.140126014946800"}]}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274475552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946800", "args": [{"nodeId": ".1.140126014946800"}]}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274476000": {"type": "Function", "typeVars": [".-1.140126274476000"], "argTypes": [{"nodeId": ".-1.140126274476000"}], "returnType": {"nodeId": ".-1.140126274476000"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274476000": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274476000", "variance": "INVARIANT"}, "140126274476448": {"type": "Function", "typeVars": [".-1.140126274476448"], "argTypes": [{"nodeId": ".-1.140126274476448"}], "returnType": {"nodeId": ".-1.140126274476448"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274476448": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274476448", "variance": "INVARIANT"}, "140126274476896": {"type": "Function", "typeVars": [".-1.140126274476896"], "argTypes": [{"nodeId": ".-1.140126274476896"}], "returnType": {"nodeId": ".-1.140126274476896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274476896": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274476896", "variance": "INVARIANT"}, "140126014942096": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_NumberOp", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258656896"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126258656896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014942096"}, {"nodeId": "140125997984096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997984096": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006182400": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006185200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006053456": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006061520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006057264": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006065664": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006060512": {"type": "TypeAlias", "target": {"nodeId": "140126010932048"}}, "140126006057152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125997980176": {"type": "Union", "items": [{"nodeId": ".1.140126014940752"}, {"nodeId": "140125997980064"}]}, "140125997980064": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997980400": {"type": "Union", "items": [{"nodeId": ".1.140126014940752"}, {"nodeId": "140125997980288"}]}, "140125997980288": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258651072": {"type": "Function", "typeVars": [".-1.140126258651072"], "argTypes": [{"nodeId": "140126014940752", "args": [{"nodeId": ".1.140126014940752"}]}, {"nodeId": "140125997980512"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997980624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997980512": {"type": "Union", "items": [{"nodeId": "140126010279296", "args": [{"nodeId": ".-1.140126258651072"}]}, {"nodeId": "140126010280976", "args": [{"nodeId": ".-1.140126258651072"}]}]}, ".-1.140126258651072": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258651072", "variance": "INVARIANT"}, "140125997980624": {"type": "Union", "items": [{"nodeId": ".1.140126014940752"}, {"nodeId": ".-1.140126258651072"}]}, "140126014941088": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_FloatMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997979168"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014941088"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997979168": {"type": "Overloaded", "items": [{"nodeId": "140126258651520"}, {"nodeId": "140126258651968"}, {"nodeId": "140126258652416"}, {"nodeId": "140126258652864"}]}, "140126258651520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126014941088"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": ".1.140126014941088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014941088": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014941088", "variance": "INVARIANT"}, "140126258651968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126014941088"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997980960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997980960": {"type": "Union", "items": [{"nodeId": ".1.140126014941088"}, {"nodeId": "140125997980848"}]}, "140125997980848": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258652416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126014941088"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997981184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997981184": {"type": "Union", "items": [{"nodeId": ".1.140126014941088"}, {"nodeId": "140125997981072"}]}, "140125997981072": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258652864": {"type": "Function", "typeVars": [".-1.140126258652864"], "argTypes": [{"nodeId": "140126014941088", "args": [{"nodeId": ".1.140126014941088"}]}, {"nodeId": "140125997981296"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997981408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997981296": {"type": "Union", "items": [{"nodeId": "140126010279296", "args": [{"nodeId": ".-1.140126258652864"}]}, {"nodeId": "140126010280976", "args": [{"nodeId": ".-1.140126258652864"}]}]}, ".-1.140126258652864": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258652864", "variance": "INVARIANT"}, "140125997981408": {"type": "Union", "items": [{"nodeId": ".1.140126014941088"}, {"nodeId": ".-1.140126258652864"}]}, "140126014941424": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_FloatDivMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997979504"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014941424"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997979504": {"type": "Overloaded", "items": [{"nodeId": "140126258653312"}, {"nodeId": "140126258653760"}, {"nodeId": "140126258654208"}, {"nodeId": "140126258654656"}]}, "140126258653312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126014941424"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014941424": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014941424", "variance": "INVARIANT"}, "140126258653760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126014941424"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258654208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126014941424"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258654656": {"type": "Function", "typeVars": [".-1.140126258654656"], "argTypes": [{"nodeId": "140126014941424", "args": [{"nodeId": ".1.140126014941424"}]}, {"nodeId": "140125997982416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997982416": {"type": "Union", "items": [{"nodeId": "140126010279296", "args": [{"nodeId": ".-1.140126258654656"}]}, {"nodeId": "140126010280976", "args": [{"nodeId": ".-1.140126258654656"}]}]}, ".-1.140126258654656": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258654656", "variance": "INVARIANT"}, "140126258190080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126014937728"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997885120"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997885120": {"type": "Union", "items": [{"nodeId": ".1.140126014937728"}, {"nodeId": "140125997885008"}]}, "140125997885008": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258190528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126014937728"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997885344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997885344": {"type": "Union", "items": [{"nodeId": ".1.140126014937728"}, {"nodeId": "140125997885232"}]}, "140125997885232": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258190976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126014937728"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997885568"}, {"nodeId": "140125997885792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997885568": {"type": "Union", "items": [{"nodeId": ".1.140126014937728"}, {"nodeId": "140125997885456"}]}, "140125997885456": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997885792": {"type": "Union", "items": [{"nodeId": ".1.140126014937728"}, {"nodeId": "140125997885680"}]}, "140125997885680": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258191424": {"type": "Function", "typeVars": [".-1.140126258191424"], "argTypes": [{"nodeId": "140126014937728", "args": [{"nodeId": ".1.140126014937728"}]}, {"nodeId": "140126010279296", "args": [{"nodeId": ".-1.140126258191424"}]}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997885904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258191424": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258191424", "variance": "INVARIANT"}, "140125997885904": {"type": "Union", "items": [{"nodeId": ".1.140126014937728"}, {"nodeId": ".-1.140126258191424"}]}, "140126274657120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994010320"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994010320": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274657568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994010544"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994010544": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274658016": {"type": "Function", "typeVars": [".-1.140126274658016"], "argTypes": [{"nodeId": ".-1.140126274658016"}], "returnType": {"nodeId": ".-1.140126274658016"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274658016": {"type": "TypeVar", "varName": "_IntType", "values": [], "upperBound": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "def": "140126274658016", "variance": "INVARIANT"}, "140126274658464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994010768"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994010768": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274658912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994010992"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994010992": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274659360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994011216"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994011216": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274659808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994011440"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994011440": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274660256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994011664"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994011664": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274660704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994011888"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994011888": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274661152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994012112"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994012112": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274661600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994012336"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994012336": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274662048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994012560"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994012560": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274662496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010279296"}]}, {"nodeId": "140125994012784"}], "returnType": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994012784": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140125998215712": {"type": "Tuple", "items": [{"nodeId": "140125998215488"}]}, "140125998215488": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}]}, "140126299973088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}, {"nodeId": "140125998216608"}], "returnType": {"nodeId": ".1.140126010702672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998216608": {"type": "Union", "items": [{"nodeId": "140125998216048"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125998216496"}]}, "140125998216048": {"type": "TypeAlias", "target": {"nodeId": "140126006126496"}}, "140126006126496": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126006122016"}]}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}]}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}, "140126006122016": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}]}, "140126119323216": {"type": "Concrete", "module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125998216496": {"type": "Tuple", "items": [{"nodeId": "140125998216272"}]}, "140125998216272": {"type": "Union", "items": [{"nodeId": "140125998216160"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}]}, "140125998216160": {"type": "TypeAlias", "target": {"nodeId": "140126006126496"}}, "140126299973536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}, {"nodeId": "140125998217280"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140125998217280": {"type": "Union", "items": [{"nodeId": "140125998216720"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125998217168"}]}, "140125998216720": {"type": "TypeAlias", "target": {"nodeId": "140126006126496"}}, "140125998217168": {"type": "Tuple", "items": [{"nodeId": "140125998216944"}]}, "140125998216944": {"type": "Union", "items": [{"nodeId": "140125998216832"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}]}, "140125998216832": {"type": "TypeAlias", "target": {"nodeId": "140126006126496"}}, "140125998215824": {"type": "Overloaded", "items": [{"nodeId": "140126299973984"}, {"nodeId": "140126299974432"}]}, "140126299973984": {"type": "Function", "typeVars": [".-1.140126299973984"], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126299973984"}]}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126299973984"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".-1.140126299973984": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126299973984", "variance": "INVARIANT"}, "140126299974432": {"type": "Function", "typeVars": [".-1.140126299974432"], "argTypes": [{"nodeId": "140126010702672", "args": [{"nodeId": ".1.140126010702672"}]}, {"nodeId": ".-1.140126299974432"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126299974432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126299974432": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126299974432", "variance": "INVARIANT"}, "140125993898432": {"type": "Overloaded", "items": [{"nodeId": "140126279559968"}, {"nodeId": "140126279560416"}]}, "140126279559968": {"type": "Function", "typeVars": [".-1.140126279559968"], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "0"}, {"nodeId": "140125993900896"}, {"nodeId": "140125993901008"}, {"nodeId": "140126325562992"}, {"nodeId": "140125993901120"}], "returnType": {"nodeId": ".-1.140126279559968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}, "140125993900896": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125993901008": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126015234544": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125993901120": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126010283664"}]}, "140126010283664": {"type": "Concrete", "module": "numpy", "simpleName": "_CopyMode", "members": [{"kind": "Variable", "name": "ALWAYS", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "IF_NEEDED", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "NEVER", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115200160"}], "isAbstract": false}, "140126115200160": {"type": "Concrete", "module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069094464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069085280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115231248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069085056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069084832"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191157312"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191157760"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191158208"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191158656"}, "name": "__reduce_ex__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126069094464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069085280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115231248": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126069085056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, "140126069084832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}, "140126191157312": {"type": "Function", "typeVars": [".-1.140126191157312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": ".-1.140126191157312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140126191157312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191157312", "variance": "INVARIANT"}, "140126191157760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191158208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}, "140126191158656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200160"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}, ".-1.140126279559968": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279559968", "variance": "INVARIANT"}, "140126279560416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "140125993901568"}, {"nodeId": "140125993900672"}, {"nodeId": "140125993901232"}, {"nodeId": "140126325562992"}, {"nodeId": "140125993901344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}, "140125993901568": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125993900672": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125993901232": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140125993901344": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126010283664"}]}, "140125993899440": {"type": "Overloaded", "items": [{"nodeId": "140126279560864"}, {"nodeId": "140126279561312"}, {"nodeId": "140126279561760"}]}, "140126279560864": {"type": "Function", "typeVars": [".-1.140126279560864"], "argTypes": [{"nodeId": ".-1.140126279560864"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126279560864"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "type"]}, ".-1.140126279560864": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279560864", "variance": "INVARIANT"}, "140126279561312": {"type": "Function", "typeVars": [".-1.140126279561312"], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126279561312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}, ".-1.140126279561312": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279561312", "variance": "INVARIANT"}, "140126279561760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "140125993901680"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}, "140125993901680": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125993903136": {"type": "Overloaded", "items": [{"nodeId": "140126279562208"}, {"nodeId": "140126279562656"}]}, "140126279562208": {"type": "Function", "typeVars": [".-1.140126279562208"], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "0"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126279562208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}, ".-1.140126279562208": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279562208", "variance": "INVARIANT"}, "140126279562656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "140125993903808"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}, "140125993903808": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126279563104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "140125993904480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125993904480": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125993904144"}, {"nodeId": "140125993902240"}]}, "140125993904144": {"type": "Tuple", "items": []}, "140125993902240": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140125993903696": {"type": "Overloaded", "items": [{"nodeId": "140125998562464"}, {"nodeId": "140125998562912"}, {"nodeId": "140126279564448"}]}, "140125998562464": {"type": "Function", "typeVars": [".-1.140125998562464"], "argTypes": [{"nodeId": ".-1.140125998562464"}, {"nodeId": "140125993902128"}, {"nodeId": "140125993904368"}, {"nodeId": "N"}, {"nodeId": "140125993902800"}], "returnType": {"nodeId": ".-1.140125998562464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, ".-1.140125998562464": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125998562464", "variance": "INVARIANT"}, "140125993902128": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140125993904368": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125993902800": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140125998562912": {"type": "Function", "typeVars": [".-1.140125998562912"], "argTypes": [{"nodeId": ".-1.140125998562912"}, {"nodeId": "140125993905040"}, {"nodeId": "140125993904592"}, {"nodeId": "N"}, {"nodeId": "140125993904816"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125998562912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, ".-1.140125998562912": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125998562912", "variance": "INVARIANT"}, "140125993905040": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993904592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125993904816": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126279564448": {"type": "Function", "typeVars": [".-1.140126279564448"], "argTypes": [{"nodeId": "140126014946464"}, {"nodeId": "140125993905376"}, {"nodeId": "140125993903360"}, {"nodeId": ".-1.140126279564448"}, {"nodeId": "140125993905152"}], "returnType": {"nodeId": ".-1.140126279564448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, "140125993905376": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993903360": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, ".-1.140126279564448": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126279564448", "variance": "INVARIANT"}, "140125993905152": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126279564000": {"type": "Function", "typeVars": [".-1.140126279564000"], "argTypes": [{"nodeId": ".-1.140126279564000"}, {"nodeId": "140125993905712"}, {"nodeId": "140125993905264"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140126279564000"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}, ".-1.140126279564000": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126279564000", "variance": "INVARIANT"}, "140125993905712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993905264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998562688": {"type": "Function", "typeVars": [".-1.140125998562688"], "argTypes": [{"nodeId": ".-1.140125998562688"}, {"nodeId": "140125993905600"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125998562688"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, ".-1.140125998562688": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125998562688", "variance": "INVARIANT"}, "140125993905600": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125993959936": {"type": "Function", "typeVars": [".-1.140125993959936"], "argTypes": [{"nodeId": ".-1.140125993959936"}, {"nodeId": "140125993906048"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125993959936"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, ".-1.140125993959936": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125993959936", "variance": "INVARIANT"}, "140125993906048": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125993903472": {"type": "Overloaded", "items": [{"nodeId": "140125993960160"}, {"nodeId": "140126274471520"}]}, "140125993960160": {"type": "Function", "typeVars": [".-1.140125993960160"], "argTypes": [{"nodeId": ".-1.140125993960160"}, {"nodeId": "140125993906160"}, {"nodeId": "140125993906272"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125993960160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}, ".-1.140125993960160": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125993960160", "variance": "INVARIANT"}, "140125993906160": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125993906272": {"type": "TypeAlias", "target": {"nodeId": "140126015230960"}}, "140126015230960": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126274471520": {"type": "Function", "typeVars": [".-1.140126274471520"], "argTypes": [{"nodeId": ".-1.140126274471520"}, {"nodeId": "140126119710384"}, {"nodeId": "140125993906384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140126274471520"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}, ".-1.140126274471520": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274471520", "variance": "INVARIANT"}, "140125993906384": {"type": "TypeAlias", "target": {"nodeId": "140126015230960"}}, "140126274471968": {"type": "Function", "typeVars": [".-1.140126274471968"], "argTypes": [{"nodeId": ".-1.140126274471968"}, {"nodeId": "140125993907280"}], "returnType": {"nodeId": ".-1.140126274471968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}, ".-1.140126274471968": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274471968", "variance": "INVARIANT"}, "140125993907280": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140125993907056"}]}, "140125993907056": {"type": "Tuple", "items": []}, "140126274472416": {"type": "Function", "typeVars": [".-1.140126274472416"], "argTypes": [{"nodeId": ".-1.140126274472416"}, {"nodeId": "140125993907616"}], "returnType": {"nodeId": ".-1.140126274472416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".-1.140126274472416": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126274472416", "variance": "INVARIANT"}, "140125993907616": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125993907504"}]}, "140125993907504": {"type": "Tuple", "items": []}, "140125968696704": {"type": "Function", "typeVars": [".-1.140125968696704"], "argTypes": [{"nodeId": ".-1.140125968696704"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125968696704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968696704": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125968696704", "variance": "INVARIANT"}, "140126308957792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126312841504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997985776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997985776": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126312841952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997985888"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986000"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997985888": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140125997986000": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237344"}]}}, "140126015237344": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312842400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997986112": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126015238240"}, {"nodeId": "140126015239024"}]}}, "140126015238240": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126015239024": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312842848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126010282992": {"type": "Concrete", "module": "numpy", "simpleName": "str_", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994020512"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275018464"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275018912"}, "name": "tolist"}], "typeVars": [], "bases": [{"nodeId": "140126010282320"}, {"nodeId": "140126119317840"}], "isAbstract": false}, "140125994020512": {"type": "Overloaded", "items": [{"nodeId": "140126275017568"}, {"nodeId": "140126275018016"}]}, "140126275017568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282992"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140126275018016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282992"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}, "140126275018464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282992"}, {"nodeId": "140125994022640"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125994022640": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125994022192"}, {"nodeId": "140125994022528"}]}, "140125994022192": {"type": "Tuple", "items": []}, "140125994022528": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126275018912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010282320": {"type": "Concrete", "module": "numpy", "simpleName": "character", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275014880"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275015328"}, "name": "__float__"}], "typeVars": [], "bases": [{"nodeId": "140126010281648"}], "isAbstract": true}, "140126275014880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282320"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126275015328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282320"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126010281648": {"type": "Concrete", "module": "numpy", "simpleName": "flexible", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014946464"}], "isAbstract": true}, "140126312843296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126010282656": {"type": "Concrete", "module": "numpy", "simpleName": "bytes_", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994021632"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275016672"}, "name": "item"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275017120"}, "name": "tolist"}], "typeVars": [], "bases": [{"nodeId": "140126010282320"}, {"nodeId": "140126119716096"}], "isAbstract": false}, "140125994021632": {"type": "Overloaded", "items": [{"nodeId": "140126275015776"}, {"nodeId": "140126275016224"}]}, "140126275015776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282656"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140126275016224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282656"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}, "140126275016672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282656"}, {"nodeId": "140125994021520"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125994021520": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140125994020400"}, {"nodeId": "140125994021408"}]}, "140125994020400": {"type": "Tuple", "items": []}, "140125994021408": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126275017120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010282656"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126312843744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997986336"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997986336": {"type": "Union", "items": [{"nodeId": "140125997986224"}, {"nodeId": "0"}]}, "140125997986224": {"type": "TypeAlias", "target": {"nodeId": "140126036312128"}}, "140126036312128": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997986448": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126010280304": {"type": "Concrete", "module": "numpy", "simpleName": "unsignedinteger", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274820512"}, "name": "__init__"}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126010280304"}]}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126010280304"}], "bases": [{"nodeId": "140126010279296", "args": [{"nodeId": ".1.140126010280304"}]}], "isAbstract": false}, "140126274820512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010280304", "args": [{"nodeId": ".1.140126010280304"}]}, {"nodeId": "140125994015696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, ".1.140126010280304": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126010280304", "variance": "INVARIANT"}, "140125994015696": {"type": "TypeAlias", "target": {"nodeId": "140126015233648"}}, "140126014938064": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_UnsignedIntOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997883328"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014938064"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997883328": {"type": "Overloaded", "items": [{"nodeId": "140126258191872"}, {"nodeId": "140126258192320"}, {"nodeId": "140126258192768"}, {"nodeId": "140126258193216"}, {"nodeId": "140126258193664"}]}, "140126258191872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126014938064"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": ".1.140126014938064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014938064": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014938064", "variance": "INVARIANT"}, "140126258192320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126014938064"}]}, {"nodeId": "140125997886240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997886240": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}]}, "140126258192768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126014938064"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997886576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997886576": {"type": "Union", "items": [{"nodeId": ".1.140126014938064"}, {"nodeId": "140125997886464"}]}, "140125997886464": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258193216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126014938064"}]}, {"nodeId": "140126119316832"}], "returnType": {"nodeId": "140126010281312", "args": [{"nodeId": "140125997886800"}, {"nodeId": "140125997887024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997886800": {"type": "Union", "items": [{"nodeId": ".1.140126014938064"}, {"nodeId": "140125997886688"}]}, "140125997886688": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140125997887024": {"type": "Union", "items": [{"nodeId": ".1.140126014938064"}, {"nodeId": "140125997886912"}]}, "140125997886912": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258193664": {"type": "Function", "typeVars": [".-1.140126258193664"], "argTypes": [{"nodeId": "140126014938064", "args": [{"nodeId": ".1.140126014938064"}]}, {"nodeId": "140126010280304", "args": [{"nodeId": ".-1.140126258193664"}]}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": "140125997887136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258193664": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258193664", "variance": "INVARIANT"}, "140125997887136": {"type": "Union", "items": [{"nodeId": ".1.140126014938064"}, {"nodeId": ".-1.140126258193664"}]}, "140126014938400": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_UnsignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997884896"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014938400"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997884896": {"type": "Overloaded", "items": [{"nodeId": "140126258194112"}, {"nodeId": "140126258194560"}, {"nodeId": "140126258195008"}, {"nodeId": "140126258195456"}]}, "140126258194112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126014938400"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": ".1.140126014938400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014938400": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014938400", "variance": "INVARIANT"}, "140126258194560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126014938400"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258195008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126014938400"}]}, {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258195456": {"type": "Function", "typeVars": [".-1.140126258195456"], "argTypes": [{"nodeId": "140126014938400", "args": [{"nodeId": ".1.140126014938400"}]}, {"nodeId": "140126010280304", "args": [{"nodeId": ".-1.140126258195456"}]}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": "140125997888592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258195456": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258195456", "variance": "INVARIANT"}, "140125997888592": {"type": "Union", "items": [{"nodeId": ".1.140126014938400"}, {"nodeId": ".-1.140126258195456"}]}, "140126014938736": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_UnsignedIntMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997888368"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014938736"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997888368": {"type": "Overloaded", "items": [{"nodeId": "140126258195904"}, {"nodeId": "140126258196352"}, {"nodeId": "140126258196800"}, {"nodeId": "140126258197248"}]}, "140126258195904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126014938736"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": ".1.140126014938736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014938736": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014938736", "variance": "INVARIANT"}, "140126258196352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126014938736"}]}, {"nodeId": "140125997889376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997889376": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}]}, "140126258196800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126014938736"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010280976", "args": [{"nodeId": "140125997889936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997889936": {"type": "Union", "items": [{"nodeId": ".1.140126014938736"}, {"nodeId": "140125997889824"}]}, "140125997889824": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126258197248": {"type": "Function", "typeVars": [".-1.140126258197248"], "argTypes": [{"nodeId": "140126014938736", "args": [{"nodeId": ".1.140126014938736"}]}, {"nodeId": "140126010280304", "args": [{"nodeId": ".-1.140126258197248"}]}], "returnType": {"nodeId": "140126010280304", "args": [{"nodeId": "140125997890272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258197248": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258197248", "variance": "INVARIANT"}, "140125997890272": {"type": "Union", "items": [{"nodeId": ".1.140126014938736"}, {"nodeId": ".-1.140126258197248"}]}, "140126014939072": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_UnsignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126015142848"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014939072"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126015142848": {"type": "Overloaded", "items": [{"nodeId": "140126258197696"}, {"nodeId": "140126258198144"}, {"nodeId": "140126258198592"}, {"nodeId": "140126258199040"}]}, "140126258197696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126014939072"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014939072": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126014939072", "variance": "INVARIANT"}, "140126258198144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126014939072"}]}, {"nodeId": "140125997891168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997891168": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126010279632", "args": [{"nodeId": "A"}]}]}, "140126258198592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126014939072"}]}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258199040": {"type": "Function", "typeVars": [".-1.140126258199040"], "argTypes": [{"nodeId": "140126014939072", "args": [{"nodeId": ".1.140126014939072"}]}, {"nodeId": "140126010280304", "args": [{"nodeId": ".-1.140126258199040"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126258199040": {"type": "TypeVar", "varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126258199040", "variance": "INVARIANT"}, "140126312844192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997985664"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997985664": {"type": "Union", "items": [{"nodeId": "140125997987008"}, {"nodeId": "0"}]}, "140125997987008": {"type": "TypeAlias", "target": {"nodeId": "140126036312800"}}, "140126036312800": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997986560": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140126312844640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997986896"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997986896": {"type": "Union", "items": [{"nodeId": "140125997987344"}, {"nodeId": "0"}]}, "140125997987344": {"type": "TypeAlias", "target": {"nodeId": "140126036313472"}}, "140126036313472": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997986672": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126312845088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997987232"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997986784"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997987232": {"type": "Union", "items": [{"nodeId": "140125997987680"}, {"nodeId": "0"}]}, "140125997987680": {"type": "TypeAlias", "target": {"nodeId": "140126036314144"}}, "140126036314144": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997986784": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126312845536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997987568"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997987120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997987568": {"type": "Union", "items": [{"nodeId": "140125997988016"}, {"nodeId": "0"}]}, "140125997988016": {"type": "TypeAlias", "target": {"nodeId": "140126036325232"}}, "140126036325232": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997987120": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015235776"}]}}, "140126015235776": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312845984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997987904"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997987456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997987904": {"type": "Union", "items": [{"nodeId": "140125997988352"}, {"nodeId": "0"}]}, "140125997988352": {"type": "TypeAlias", "target": {"nodeId": "140126036325904"}}, "140126036325904": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997987456": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236000"}]}}, "140126015236000": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312846432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997988240"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997987792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997988240": {"type": "Union", "items": [{"nodeId": "140125997988688"}, {"nodeId": "0"}]}, "140125997988688": {"type": "TypeAlias", "target": {"nodeId": "140126036326576"}}, "140126036326576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997987792": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236224"}]}}, "140126015236224": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312846880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997988576"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997988128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997988576": {"type": "Union", "items": [{"nodeId": "140125997989024"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997989024": {"type": "TypeAlias", "target": {"nodeId": "140126036327472"}}, "140126036327472": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997988128": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236336"}]}}, "140126015236336": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312847328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997988912"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997988464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997988912": {"type": "Union", "items": [{"nodeId": "140125997989472"}, {"nodeId": "0"}]}, "140125997989472": {"type": "TypeAlias", "target": {"nodeId": "140126036328256"}}, "140126036328256": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997988464": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140126015236448": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312847776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997989136"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125997989248"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997989136": {"type": "Union", "items": [{"nodeId": "140125997988800"}, {"nodeId": "0"}]}, "140125997988800": {"type": "TypeAlias", "target": {"nodeId": "140126036361728"}}, "140126036361728": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125997989248": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236560"}]}}, "140126015236560": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312848224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125997989696"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998202944"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125997989696": {"type": "Union", "items": [{"nodeId": "140125997989584"}, {"nodeId": "0"}]}, "140125997989584": {"type": "TypeAlias", "target": {"nodeId": "140126036314816"}}, "140126036314816": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998202944": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126312848672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998203504"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998203056"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998203504": {"type": "Union", "items": [{"nodeId": "140125998203392"}, {"nodeId": "0"}]}, "140125998203392": {"type": "TypeAlias", "target": {"nodeId": "140126036315488"}}, "140126036315488": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998203056": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140126312849120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998203840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998203168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998203840": {"type": "Union", "items": [{"nodeId": "140125998203728"}, {"nodeId": "0"}]}, "140125998203728": {"type": "TypeAlias", "target": {"nodeId": "140126036316160"}}, "140126036316160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998203168": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140126312849568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998204176"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998203280"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998204176": {"type": "Union", "items": [{"nodeId": "140125998204064"}, {"nodeId": "0"}]}, "140125998204064": {"type": "TypeAlias", "target": {"nodeId": "140126036316832"}}, "140126036316832": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998203280": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126312850016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998204512"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998203616"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998204512": {"type": "Union", "items": [{"nodeId": "140125998204400"}, {"nodeId": "0"}]}, "140125998204400": {"type": "TypeAlias", "target": {"nodeId": "140126036320864"}}, "140126036320864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998203616": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015233760"}]}}, "140126015233760": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312850464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998204848"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998203952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998204848": {"type": "Union", "items": [{"nodeId": "140125998204736"}, {"nodeId": "0"}]}, "140125998204736": {"type": "TypeAlias", "target": {"nodeId": "140126036321536"}}, "140126036321536": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998203952": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015234992"}]}}, "140126015234992": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312850912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998205184"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998204288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998205184": {"type": "Union", "items": [{"nodeId": "140125998205072"}, {"nodeId": "0"}]}, "140125998205072": {"type": "TypeAlias", "target": {"nodeId": "140126036322208"}}, "140126036322208": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998204288": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235328"}]}}, "140126015235328": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312851360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998205520"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998204624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998205520": {"type": "Union", "items": [{"nodeId": "140125998205408"}, {"nodeId": "0"}]}, "140125998205408": {"type": "TypeAlias", "target": {"nodeId": "140126036323104"}}, "140126036323104": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998204624": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126312851808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998205968"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998204960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998205968": {"type": "Union", "items": [{"nodeId": "140125998205856"}, {"nodeId": "0"}]}, "140125998205856": {"type": "TypeAlias", "target": {"nodeId": "140126036324112"}}, "140126036324112": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998204960": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126312852256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998206416"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998205296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998206416": {"type": "Union", "items": [{"nodeId": "140125998206304"}, {"nodeId": "0"}]}, "140125998206304": {"type": "TypeAlias", "target": {"nodeId": "140126036324560"}}, "140126036324560": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998205296": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235664"}]}}, "140126015235664": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312852704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998206192"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998206528"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998206192": {"type": "TypeAlias", "target": {"nodeId": "140126036317504"}}, "140126036317504": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998206528": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014481328"}]}}, "140126312853152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998206640"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998206752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998206640": {"type": "TypeAlias", "target": {"nodeId": "140126036318176"}}, "140126036318176": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998206752": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126312853600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998206864"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998206976"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998206864": {"type": "TypeAlias", "target": {"nodeId": "140126036318848"}}, "140126036318848": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998206976": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126312854048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998207088"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998207200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998207088": {"type": "TypeAlias", "target": {"nodeId": "140126036362400"}}, "140126036362400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998207200": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015236784"}]}}, "140126015236784": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312854496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998207424"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998205632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998207424": {"type": "Union", "items": [{"nodeId": "140125998207312"}, {"nodeId": "0"}]}, "140125998207312": {"type": "TypeAlias", "target": {"nodeId": "140126036363072"}}, "140126036363072": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998205632": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237008"}]}}, "140126015237008": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312854944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998207760"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998205744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998207760": {"type": "Union", "items": [{"nodeId": "140125998207648"}, {"nodeId": "0"}]}, "140125998207648": {"type": "TypeAlias", "target": {"nodeId": "140126036364192"}}, "140126036364192": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998205744": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237232"}]}}, "140126015237232": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312855392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998208320"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998206080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998208320": {"type": "Union", "items": [{"nodeId": "140125998208208"}, {"nodeId": "0"}]}, "140125998208208": {"type": "TypeAlias", "target": {"nodeId": "140126036364864"}}, "140126036364864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998206080": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237456"}]}}, "140126015237456": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312855840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998208432"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998208544"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998208432": {"type": "TypeAlias", "target": {"nodeId": "140126036319520"}}, "140126036319520": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998208544": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480992"}, {"nodeId": "140126014480992"}]}}, "140126312856288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998208096"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998208656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998208096": {"type": "TypeAlias", "target": {"nodeId": "140126036320192"}}, "140126036320192": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998208656": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126014480656"}, {"nodeId": "140126014480656"}]}}, "140126312856736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998208768"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998208880"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998208768": {"type": "TypeAlias", "target": {"nodeId": "140126036365648"}}, "140126036365648": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998208880": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126015237680"}, {"nodeId": "140126015238352"}]}}, "140126015237680": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126015238352": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126312857184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998209104"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998209216"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998209104": {"type": "TypeAlias", "target": {"nodeId": "140126036366880"}}, "140126036366880": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998209216": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126015238128"}, {"nodeId": "140126015238800"}]}}, "140126015238128": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126015238800": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126304256288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998209552"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140125998209664"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998209552": {"type": "TypeAlias", "target": {"nodeId": "140126036367664"}}, "140126036367664": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125998209664": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126015238688"}, {"nodeId": "140126015239472"}]}}, "140126015238688": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126015239472": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126304256736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998209776"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998209776": {"type": "Union", "items": [{"nodeId": "140125998209440"}, {"nodeId": "0"}]}, "140125998209440": {"type": "TypeAlias", "target": {"nodeId": "140126036114928"}}, "140126036114928": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126304257184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998209888"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998209888": {"type": "TypeAlias", "target": {"nodeId": "140126027038304"}}, "140126027038304": {"type": "Union", "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"}]}, "140126010279968": {"type": "Concrete", "module": "numpy", "simpleName": "timedelta64", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274663392"}, "name": "__init__"}, {"kind": "Variable", "name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968900704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968901152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274664736"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274665184"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274665632"}, "name": "__complex__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274666080"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274814240"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274814688"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274815136"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274815584"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274816032"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274816480"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274816928"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274817376"}, "name": "__rmul__"}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937392", "args": [{"nodeId": "140126006188784"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014937392", "args": [{"nodeId": "140126015235888"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274817824"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274818272"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274818720"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274819168"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274819616"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274820064"}, "name": "__rdivmod__"}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006188560"}, {"nodeId": "140126006188112"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006410848"}, {"nodeId": "140126006410624"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006410960"}, {"nodeId": "140126006407264"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126006411072"}, {"nodeId": "140126006396176"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126014946464"}], "isAbstract": false}, "140126274663392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994013232"}, {"nodeId": "140125994013904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}, "140125994013232": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994013120"}, {"nodeId": "140126023540336"}, {"nodeId": "140126010279968"}]}, "140125994013120": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140126023540336": {"type": "Concrete", "module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126031412832"}, "name": "__new__"}, {"kind": "Variable", "name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031713152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031714048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031714272"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190789888"}, "name": "total_seconds"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190790336"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190790784"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190791232"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190791680"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190792128"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190792576"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190793024"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190793472"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190793920"}, "name": "__rmul__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031343040"}, "items": [{"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__floordiv__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031344720"}, "items": [{"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190796160"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190927936"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190928384"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190928832"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190929280"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190929728"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190930176"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126031412832": {"type": "Function", "typeVars": [".-1.140126031412832"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": ".-1.140126031412832"}, "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"]}, ".-1.140126031412832": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031412832", "variance": "INVARIANT"}, "140126031713152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031714048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031714272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190789888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190790336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190790784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190791232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190791680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190792128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126190792576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126190793024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126190793472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190793920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126031343040": {"type": "Overloaded", "items": [{"nodeId": "140126190794368"}, {"nodeId": "140126190794816"}]}, "140126190794368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190794816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126031344720": {"type": "Overloaded", "items": [{"nodeId": "140126190795264"}, {"nodeId": "140126190795712"}]}, "140126190795264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190795712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190796160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190927936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126031345952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126031345952": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126023540336"}]}, "140126190928384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190928832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190929280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190929728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190930176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540336"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994013904": {"type": "Union", "items": [{"nodeId": "140125994013344"}, {"nodeId": "140125994013792"}]}, "140125994013344": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125994013792": {"type": "Tuple", "items": [{"nodeId": "140125994013456"}, {"nodeId": "140125994013568"}]}, "140125994013456": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125994013568": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140125968900704": {"type": "Function", "typeVars": [".-1.140125968900704"], "argTypes": [{"nodeId": ".-1.140125968900704"}], "returnType": {"nodeId": ".-1.140125968900704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968900704": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125968900704", "variance": "INVARIANT"}, "140125968901152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126274664736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274665184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274665632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274666080": {"type": "Function", "typeVars": [".-1.140126274666080"], "argTypes": [{"nodeId": ".-1.140126274666080"}], "returnType": {"nodeId": ".-1.140126274666080"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274666080": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274666080", "variance": "INVARIANT"}, "140126274814240": {"type": "Function", "typeVars": [".-1.140126274814240"], "argTypes": [{"nodeId": ".-1.140126274814240"}], "returnType": {"nodeId": ".-1.140126274814240"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274814240": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274814240", "variance": "INVARIANT"}, "140126274814688": {"type": "Function", "typeVars": [".-1.140126274814688"], "argTypes": [{"nodeId": ".-1.140126274814688"}], "returnType": {"nodeId": ".-1.140126274814688"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126274814688": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126274814688", "variance": "INVARIANT"}, "140126274815136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014128"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014128": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126010931936": {"type": "Union", "items": [{"nodeId": "140126010932160"}, {"nodeId": "140126010279968"}]}, "140126010932160": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274815584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014352"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014352": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126274816032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014464"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014464": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126274816480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014576"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014576": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126274816928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014688"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014688": {"type": "TypeAlias", "target": {"nodeId": "140126010931264"}}, "140126010931264": {"type": "Union", "items": [{"nodeId": "140126010931040"}, {"nodeId": "140126119316496"}, {"nodeId": "140126010280976", "args": [{"nodeId": "A"}]}]}, "140126010931040": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274817376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140125994014240"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014240": {"type": "TypeAlias", "target": {"nodeId": "140126010931264"}}, "140126014937392": {"type": "Protocol", "module": "numpy._typing._callable", "simpleName": "_TD64Div", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125997882208"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126014937392"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140125997882208": {"type": "Overloaded", "items": [{"nodeId": "140126258188288"}, {"nodeId": "140126258188736"}, {"nodeId": "140126258189184"}]}, "140126258188288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937392", "args": [{"nodeId": ".1.140126014937392"}]}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": ".1.140126014937392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014937392": {"type": "TypeVar", "varName": "_NumberType_co", "values": [], "upperBound": {"nodeId": "140126014946800", "args": [{"nodeId": "A"}]}, "def": "140126014937392", "variance": "COVARIANT"}, "140126258188736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937392", "args": [{"nodeId": ".1.140126014937392"}]}, {"nodeId": "140125997884672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997884672": {"type": "TypeAlias", "target": {"nodeId": "140126010930144"}}, "140126258189184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014937392", "args": [{"nodeId": ".1.140126014937392"}]}, {"nodeId": "140125997884784"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125997884784": {"type": "TypeAlias", "target": {"nodeId": "140126010931264"}}, "140126006188784": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126015235888": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126274817824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140125994014800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014800": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126274818272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140125994014912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994014912": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126274818720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126274819168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126274819616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140125994015248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994015248": {"type": "Tuple", "items": [{"nodeId": "140125994015024"}, {"nodeId": "140126010279968"}]}, "140125994015024": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126274820064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010279968"}, {"nodeId": "140126010279968"}], "returnType": {"nodeId": "140125994015584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125994015584": {"type": "Tuple", "items": [{"nodeId": "140125994015360"}, {"nodeId": "140126010279968"}]}, "140125994015360": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126006188560": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126006188112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006410848": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126006410624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006410960": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126006407264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126006411072": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126006396176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126304257632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998210000"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010278960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998210000": {"type": "TypeAlias", "target": {"nodeId": "140126027025200"}}, "140126027025200": {"type": "Union", "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"}]}, "140126010278960": {"type": "Concrete", "module": "numpy", "simpleName": "datetime64", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993906608"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274650848"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274651296"}, "name": "__radd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993907168"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274652640"}, "name": "__rsub__"}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126010278960"}, {"nodeId": "140126006410288"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126010278960"}, {"nodeId": "140126006409728"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126010278960"}, {"nodeId": "140126006409952"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014943104", "args": [{"nodeId": "140126010278960"}, {"nodeId": "140126006410176"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126014946464"}], "isAbstract": false}, "140125993906608": {"type": "Overloaded", "items": [{"nodeId": "140126274485856"}, {"nodeId": "140126274650400"}]}, "140126274485856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140125993908848"}, {"nodeId": "140125993909520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}, "140125993908848": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126010278960"}, {"nodeId": "140125993908736"}, {"nodeId": "140126010278624"}]}, "140125993908736": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140126010278624": {"type": "Protocol", "module": "numpy", "simpleName": "_DatetimeScalar", "members": [{"kind": "Variable", "name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968701408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968701856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968702080"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["day", "month", "year"]}, "140125968701408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968701856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125968702080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993909520": {"type": "Union", "items": [{"nodeId": "140125993908960"}, {"nodeId": "140125993909408"}]}, "140125993908960": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125993909408": {"type": "Tuple", "items": [{"nodeId": "140125993909072"}, {"nodeId": "140125993909184"}]}, "140125993909072": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125993909184": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274650400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994008640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140125994008640": {"type": "Union", "items": [{"nodeId": "140125993909632"}, {"nodeId": "140125993910080"}]}, "140125993909632": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125993910080": {"type": "Tuple", "items": [{"nodeId": "140125993909744"}, {"nodeId": "140125993909856"}]}, "140125993909744": {"type": "TypeAlias", "target": {"nodeId": "140126019463968"}}, "140125993909856": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126274650848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140125994008752"}], "returnType": {"nodeId": "140126010278960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994008752": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126274651296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140125994008864"}], "returnType": {"nodeId": "140126010278960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994008864": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140125993907168": {"type": "Overloaded", "items": [{"nodeId": "140126274651744"}, {"nodeId": "140126274652192"}]}, "140126274651744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140126010278960"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126274652192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140125994009088"}], "returnType": {"nodeId": "140126010278960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994009088": {"type": "TypeAlias", "target": {"nodeId": "140126010931936"}}, "140126274652640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278960"}, {"nodeId": "140126010278960"}], "returnType": {"nodeId": "140126010279968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126006410288": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126011186352": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010278960"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010278960"}]}]}]}]}, "140126014477296": {"type": "Protocol", "module": "numpy._typing._array_like", "simpleName": "_SupportsArray", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173950496"}, "name": "__array__"}], "typeVars": [{"nodeId": ".1.140126014477296"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__array__"]}, "140126173950496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014477296", "args": [{"nodeId": ".1.140126014477296"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".1.140126014477296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014477296": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126014477296", "variance": "COVARIANT"}, "140126006409728": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126006409952": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126006410176": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126304258080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998207536"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998207536": {"type": "TypeAlias", "target": {"nodeId": "140126036369008"}}, "140126036369008": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126304258528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998210560"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998210560": {"type": "Union", "items": [{"nodeId": "140125998210448"}, {"nodeId": "0"}]}, "140125998210448": {"type": "TypeAlias", "target": {"nodeId": "140126036369680"}}, "140126036369680": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126304258976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998210224"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998210224": {"type": "TypeAlias", "target": {"nodeId": "140126036370352"}}, "140126036370352": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126010281984": {"type": "Concrete", "module": "numpy", "simpleName": "void", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994008976"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964143744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964144192"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275013088"}, "name": "setfield"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994018272"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275014432"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "140126010281648"}], "isAbstract": false}, "140125994008976": {"type": "Overloaded", "items": [{"nodeId": "140126275011296"}, {"nodeId": "140126275011744"}]}, "140126275011296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "140125994019840"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, "dtype"]}, "140125994019840": {"type": "Union", "items": [{"nodeId": "140125994019728"}, {"nodeId": "140126119716096"}]}, "140125994019728": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126275011744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "A"}, {"nodeId": "140125994020064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, "dtype"]}, "140125994020064": {"type": "TypeAlias", "target": {"nodeId": "140126006404576"}}, "140126006404576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "0"}]}, {"nodeId": "140126011110816"}, {"nodeId": "140126006404240"}]}, "140126011110816": {"type": "TypeAlias", "target": {"nodeId": "140126036370352"}}, "140126006404240": {"type": "TypeAlias", "target": {"nodeId": "140126014654272"}}, "140125964143744": {"type": "Function", "typeVars": [".-1.140125964143744"], "argTypes": [{"nodeId": ".-1.140125964143744"}], "returnType": {"nodeId": ".-1.140125964143744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125964143744": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125964143744", "variance": "INVARIANT"}, "140125964144192": {"type": "Function", "typeVars": [".-1.140125964144192"], "argTypes": [{"nodeId": ".-1.140125964144192"}], "returnType": {"nodeId": ".-1.140125964144192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125964144192": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125964144192", "variance": "INVARIANT"}, "140126275013088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "140125994020288"}, {"nodeId": "140125994020736"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}, "140125994020288": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994020736": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994018272": {"type": "Overloaded", "items": [{"nodeId": "140126275013536"}, {"nodeId": "140126275013984"}]}, "140126275013536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "140125994020848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994020848": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119710384"}]}, "140126275013984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126010281984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126275014432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010281984"}, {"nodeId": "140125994021744"}, {"nodeId": "140125994021072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140125994021744": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119710384"}]}, "140125994021072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126304259424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998210336"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010278288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998210336": {"type": "Union", "items": [{"nodeId": "140125998209328"}, {"nodeId": "0"}]}, "140125998209328": {"type": "TypeAlias", "target": {"nodeId": "140126036371136"}}, "140126036371136": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126010278288": {"type": "Concrete", "module": "numpy", "simpleName": "object_", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274481824"}, "name": "__init__"}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968700288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125968700736"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274483168"}, "name": "__int__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274483616"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126274484064"}, "name": "__complex__"}], "typeVars": [], "bases": [{"nodeId": "140126014946464"}], "isAbstract": false}, "140126274481824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278288"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140125968700288": {"type": "Function", "typeVars": [".-1.140125968700288"], "argTypes": [{"nodeId": ".-1.140125968700288"}], "returnType": {"nodeId": ".-1.140125968700288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968700288": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968700288", "variance": "INVARIANT"}, "140125968700736": {"type": "Function", "typeVars": [".-1.140125968700736"], "argTypes": [{"nodeId": ".-1.140125968700736"}], "returnType": {"nodeId": ".-1.140125968700736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125968700736": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125968700736", "variance": "INVARIANT"}, "140126274483168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278288"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274483616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278288"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126274484064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010278288"}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126304259872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126304260320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}]}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126304260768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126304261216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998210896"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140125998210896": {"type": "TypeAlias", "target": {"nodeId": "140126014654272"}}, "140126304261664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010278288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}, "140126304262112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140125997985104": {"type": "Overloaded", "items": [{"nodeId": "140126304262560"}, {"nodeId": "140126304263008"}]}, "140126304262560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126304263008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, {"nodeId": "140125998211232"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998211232": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119710384"}]}, "140126015226928": {"type": "Overloaded", "items": [{"nodeId": "140126304263456"}, {"nodeId": "140126304263904"}, {"nodeId": "140126304264352"}]}, "140126304263456": {"type": "Function", "typeVars": [".-1.140126304263456"], "argTypes": [{"nodeId": ".-1.140126304263456"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126304263456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126304263456": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126304263456", "variance": "INVARIANT"}, "140126304263904": {"type": "Function", "typeVars": [".-1.140126304263904"], "argTypes": [{"nodeId": ".-1.140126304263904"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126304263904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126304263904": {"type": "TypeVar", "varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281648"}]}, "def": "140126304263904", "variance": "INVARIANT"}, "140126304264352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998211456": {"type": "Overloaded", "items": [{"nodeId": "140126304264800"}, {"nodeId": "140126304265248"}]}, "140126304264800": {"type": "Function", "typeVars": [".-1.140126304264800"], "argTypes": [{"nodeId": ".-1.140126304264800"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126304264800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126304264800": {"type": "TypeVar", "varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281648"}]}, "def": "140126304264800", "variance": "INVARIANT"}, "140126304265248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126304265696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140125998211344"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998211344": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126304266144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140125998211904"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998211904": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126304266592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140125998211120"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998211120": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126304267040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "140125998212352"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998212352": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126304267488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126304267936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125972885600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972887840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972888064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972888288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972888512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140125998211568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998211568": {"type": "Union", "items": [{"nodeId": "140125998211680"}, {"nodeId": "140125998213136"}]}, "140125998211680": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140125998213136": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140125998212240"}]}, "140125998212240": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125972888736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140125998213808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998213808": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120020672", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140125998213696"}]}]}, "140125998213696": {"type": "Union", "items": [{"nodeId": "140125998212688"}, {"nodeId": "140125998213584"}]}, "140125998212688": {"type": "Tuple", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140125998213584": {"type": "Tuple", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}, {"nodeId": "A"}]}, "140125972888960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972889184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972987968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972988192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972988416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972988640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972988864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972989088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140125998214032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998214032": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120020672", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140125972989312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972989536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972989760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140125998214144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998214144": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125972989984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972990208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140125998214704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998214704": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998214592"}]}, "140125998214592": {"type": "Tuple", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, {"nodeId": "140125998214368"}]}, "140125998214368": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125997931136": {"type": "Function", "typeVars": [".-1.140125997931136"], "argTypes": [{"nodeId": ".-1.140125997931136"}, {"nodeId": "140125998214816"}], "returnType": {"nodeId": ".-1.140125997931136"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".-1.140125997931136": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140125997931136", "variance": "INVARIANT"}, "140125998214816": {"type": "TypeAlias", "target": {"nodeId": "140126015230624"}}, "140125972990432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972990656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010702336"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998450608": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}, "140125973272992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125973273664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998219072": {"type": "Overloaded", "items": [{"nodeId": "140125997936736"}]}, "140125997936736": {"type": "Function", "typeVars": [".-1.140125997936736"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945456", "args": [{"nodeId": ".-1.140125997936736"}]}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125997936736"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014945456": {"type": "Protocol", "module": "numpy", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973270304"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014945456"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["real"]}, "140125973270304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014945456", "args": [{"nodeId": ".1.140126014945456"}]}], "returnType": {"nodeId": ".1.140126014945456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014945456": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014945456", "variance": "COVARIANT"}, ".-1.140125997936736": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125997936736", "variance": "INVARIANT"}, "140125973273888": {"type": "Function", "typeVars": [".-1.140125973273888"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945456", "args": [{"nodeId": ".-1.140125973273888"}]}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125973273888"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125973273888": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125973273888", "variance": "INVARIANT"}, "140125998451504": {"type": "Overloaded", "items": [{"nodeId": "140125997936960"}]}, "140125997936960": {"type": "Function", "typeVars": [".-1.140125997936960"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945792", "args": [{"nodeId": ".-1.140125997936960"}]}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125997936960"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014945792": {"type": "Protocol", "module": "numpy", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125973271648"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014945792"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["imag"]}, "140125973271648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014945792", "args": [{"nodeId": ".1.140126014945792"}]}], "returnType": {"nodeId": ".1.140126014945792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014945792": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014945792", "variance": "COVARIANT"}, ".-1.140125997936960": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125997936960", "variance": "INVARIANT"}, "140125973274112": {"type": "Function", "typeVars": [".-1.140125973274112"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945792", "args": [{"nodeId": ".-1.140125973274112"}]}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125973274112"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125973274112": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125973274112", "variance": "INVARIANT"}, "140125997937184": {"type": "Function", "typeVars": [".-1.140125997937184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998450832"}, {"nodeId": "140125998451616"}, {"nodeId": "140125998451952"}, {"nodeId": "140126119710384"}, {"nodeId": "140125998451840"}, {"nodeId": "140125998452288"}], "returnType": {"nodeId": ".-1.140125997937184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "shape", "dtype", "buffer", "offset", "strides", "order"]}, "140125998450832": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998451616": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998451952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998451280"}]}, "140125998451280": {"type": "TypeAlias", "target": {"nodeId": "140126006131760"}}, "140126006131760": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126119318176"}, {"nodeId": "140126116043728", "args": [{"nodeId": "A"}]}, {"nodeId": "140126115186720"}, {"nodeId": "0"}, {"nodeId": "140126014946464"}]}, "140125998451840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998451728"}]}, "140125998451728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998452288": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, ".-1.140125997937184": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125997937184", "variance": "INVARIANT"}, "140126283021024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}, "140125998452064": {"type": "Overloaded", "items": [{"nodeId": "140126283021472"}, {"nodeId": "140126283021920"}]}, "140126283021472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}, "140126283021920": {"type": "Function", "typeVars": [".-1.140126283021920"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": ".-1.140126283021920"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126283021920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126283021920": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126283021920", "variance": "INVARIANT"}, "140126283252000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126010283328"}, {"nodeId": "140125998453520"}, {"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"]}, "140126010283328": {"type": "Concrete", "module": "numpy", "simpleName": "ufunc", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964149344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964150240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019503712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964150464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964150688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964150912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964151136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "types", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964151360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964151584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964151808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduce", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "accumulate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125964149344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964150240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126019503712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140125964150464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964150688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964150912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964151136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964151360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964151584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964151808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010283328"}], "returnType": {"nodeId": "140125994022864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994022864": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125998453520": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126283252448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125997936064"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}, "140125997936064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126283252896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998454640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998454640": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126283253344": {"type": "Function", "typeVars": [".-1.140126283253344", ".-2.140126283253344"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126014946128", "args": [{"nodeId": ".-1.140126283253344"}, {"nodeId": ".-2.140126283253344"}]}, {"nodeId": "140125998455088"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".-1.140126283253344"}, {"nodeId": ".-2.140126283253344"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".-1.140126283253344": {"type": "TypeVar", "varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126283253344", "variance": "INVARIANT"}, ".-2.140126283253344": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126283253344", "variance": "INVARIANT"}, "140125998455088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998454976"}]}, "140125998454976": {"type": "Tuple", "items": [{"nodeId": "140126010283328"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140126283253792": {"type": "Function", "typeVars": [".-1.140126283253792", ".-2.140126283253792"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126014946128", "args": [{"nodeId": ".-1.140126283253792"}, {"nodeId": ".-2.140126283253792"}]}, {"nodeId": "140125998455536"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".-1.140126283253792"}, {"nodeId": ".-2.140126283253792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".-1.140126283253792": {"type": "TypeVar", "varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126283253792", "variance": "INVARIANT"}, ".-2.140126283253792": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126283253792", "variance": "INVARIANT"}, "140125998455536": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998455424"}]}, "140125998455424": {"type": "Tuple", "items": [{"nodeId": "140126010283328"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140125998453184": {"type": "Overloaded", "items": [{"nodeId": "140126283254240"}, {"nodeId": "140126283254688"}, {"nodeId": "140126283255136"}, {"nodeId": "140126283255584"}, {"nodeId": "140126283256032"}]}, "140126283254240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998456544"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998456544": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125998456432"}]}]}, "140125998456432": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126283254688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998456768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998456768": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119710384"}]}]}, "140126283255136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998457328"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998457328": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140126119710384"}, {"nodeId": "140125998456992"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125998457216"}]}]}, "140125998456992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998457216": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125998457104"}, {"nodeId": "140126119710384"}]}, "140125998457104": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283255584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283256032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125973275008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140126014943440", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998452512": {"type": "Overloaded", "items": [{"nodeId": "140126283256928"}]}, "140126283256928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125998458112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998458112": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125973274336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125998458112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998457664": {"type": "Overloaded", "items": [{"nodeId": "140126283257824"}]}, "140126283257824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125998458448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998458448": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125973275232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125998458448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126283258720": {"type": "Function", "typeVars": [".-1.140126283258720"], "argTypes": [{"nodeId": ".-1.140126283258720"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126283258720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}, ".-1.140126283258720": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126283258720", "variance": "INVARIANT"}, "140126283259168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}, "140125973275456": {"type": "Function", "typeVars": [".-1.140125973275456"], "argTypes": [{"nodeId": ".-1.140125973275456"}], "returnType": {"nodeId": "140126010702672", "args": [{"nodeId": ".-1.140125973275456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125973275456": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140125973275456", "variance": "INVARIANT"}, "140125998458000": {"type": "Overloaded", "items": [{"nodeId": "140125997938528"}, {"nodeId": "140126283260512"}]}, "140125997938528": {"type": "Function", "typeVars": [".-1.140125997938528"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945120", "args": [{"nodeId": ".-1.140125997938528"}]}]}]}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140125997938528"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140126014945120": {"type": "Protocol", "module": "numpy", "simpleName": "_SupportsItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126283016096"}, "name": "item"}], "typeVars": [{"nodeId": ".1.140126014945120"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["item"]}, "140126283016096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014945120", "args": [{"nodeId": ".1.140126014945120"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126014945120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014945120": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014945120", "variance": "COVARIANT"}, ".-1.140125997938528": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140125997938528", "variance": "INVARIANT"}, "140126283260512": {"type": "Function", "typeVars": [".-1.140126283260512"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945120", "args": [{"nodeId": ".-1.140126283260512"}]}]}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119710384"}]}], "returnType": {"nodeId": ".-1.140126283260512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126283260512": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126283260512", "variance": "INVARIANT"}, "140125998458336": {"type": "Overloaded", "items": [{"nodeId": "140126283260960"}, {"nodeId": "140126283261408"}]}, "140126283260960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283261408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998459344"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140125998459344": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998458784": {"type": "Overloaded", "items": [{"nodeId": "140126283261856"}, {"nodeId": "140126283262304"}]}, "140126283261856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998459680"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "refcheck"]}, "140125998459680": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126283262304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "new_shape", "refcheck"]}, "140126283262752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "write", "align", "uic"]}, "140126283263200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998459792"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}, "140125998459792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119710384"}]}]}, "140126283263648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "axis1", "axis2"]}, "140125998459120": {"type": "Overloaded", "items": [{"nodeId": "140125997938976"}, {"nodeId": "140126283264544"}]}, "140125997938976": {"type": "Function", "typeVars": [".-1.140125997938976"], "argTypes": [{"nodeId": ".-1.140125997938976"}, {"nodeId": "140125998460352"}], "returnType": {"nodeId": ".-1.140125997938976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140125997938976": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140125997938976", "variance": "INVARIANT"}, "140125998460352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998460240"}]}, "140125998460240": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126283264544": {"type": "Function", "typeVars": [".-1.140126283264544"], "argTypes": [{"nodeId": ".-1.140126283264544"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": ".-1.140126283264544"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "axes"]}, ".-1.140126283264544": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126283264544", "variance": "INVARIANT"}, "140126283264992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998460464"}, {"nodeId": "140125998460576"}, {"nodeId": "140125998460688"}, {"nodeId": "140125998460800"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125998461024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}, "140125998460464": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998460576": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998460688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998460800": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125998461024": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126283265440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2"]}, "140125998459568": {"type": "Overloaded", "items": [{"nodeId": "140126283265888"}, {"nodeId": "140126283266336"}, {"nodeId": "140126283266784"}]}, "140126283265888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998461136"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}, "140125998461136": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126010931376": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316832"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126014946464"}]}, "140126283266336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998461584"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}, "140125998461584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283266784": {"type": "Function", "typeVars": [".-1.140126283266784"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998461920"}, {"nodeId": ".-1.140126283266784"}], "returnType": {"nodeId": ".-1.140126283266784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "b", "out"]}, "140125998461920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, ".-1.140126283266784": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283266784", "variance": "INVARIANT"}, "140126283267232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125998460128"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125998460128": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126283267680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998462144"}, {"nodeId": "140126119710384"}, {"nodeId": "140125998462256"}, {"nodeId": "140125998462368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}, "140125998462144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998462256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998462368": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140126283415840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998462704"}, {"nodeId": "140125998462032"}, {"nodeId": "140125998462480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ind", "v", "mode"]}, "140125998462704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998462032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998462480": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140125998461248": {"type": "Overloaded", "items": [{"nodeId": "140126283416288"}, {"nodeId": "140126283416736"}]}, "140126283416288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998462592"}, {"nodeId": "140125998462928"}, {"nodeId": "140125998463264"}], "returnType": {"nodeId": "140125998463376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}, "140125998462592": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140125998462928": {"type": "TypeAlias", "target": {"nodeId": "140126015232640"}}, "140126015232640": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140125998463264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998463152"}]}, "140125998463152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998463376": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126283416736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998462816"}, {"nodeId": "140125998463712"}, {"nodeId": "140125998463824"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125998464048"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}, "140125998462816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998463712": {"type": "TypeAlias", "target": {"nodeId": "140126015232640"}}, "140125998463824": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998463600"}]}, "140125998463600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998464048": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126283417184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998464160"}, {"nodeId": "140125998464272"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}, "140125998464160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998464272": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126283417632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140125998464496"}, {"nodeId": "140125998464608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}, "140125998464496": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125998463488"}]}, "140125998463488": {"type": "TypeAlias", "target": {"nodeId": "140126015232528"}}, "140125998464608": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125998463040": {"type": "Overloaded", "items": [{"nodeId": "140126283418080"}, {"nodeId": "140126283418528"}]}, "140126283418080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}, {"nodeId": "140125998464832"}, {"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"]}, "140125998464832": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126283418528": {"type": "Function", "typeVars": [".-1.140126283418528"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}, {"nodeId": "140126119710384"}, {"nodeId": "140125998564288"}, {"nodeId": ".-1.140126283418528"}], "returnType": {"nodeId": ".-1.140126283418528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}, "140125998564288": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283418528": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283418528", "variance": "INVARIANT"}, "140125998464720": {"type": "Overloaded", "items": [{"nodeId": "140125998547456"}, {"nodeId": "140126283419424"}, {"nodeId": "140126283419872"}]}, "140125998547456": {"type": "Function", "typeVars": [".-1.140125998547456"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125998547456"}]}]}, {"nodeId": "140125998563728"}, {"nodeId": "140125998564176"}, {"nodeId": "N"}, {"nodeId": "140125998564848"}], "returnType": {"nodeId": ".-1.140125998547456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, ".-1.140125998547456": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125998547456", "variance": "INVARIANT"}, "140125998563728": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140125998564176": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998564848": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126283419424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998563840"}, {"nodeId": "140125998563952"}, {"nodeId": "N"}, {"nodeId": "140125998564960"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, "140125998563840": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998563952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140125998564960": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126283419872": {"type": "Function", "typeVars": [".-1.140126283419872"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998564624"}, {"nodeId": "140125998564736"}, {"nodeId": ".-1.140126283419872"}, {"nodeId": "140125998564512"}], "returnType": {"nodeId": ".-1.140126283419872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}, "140125998564624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998564736": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, ".-1.140126283419872": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283419872", "variance": "INVARIANT"}, "140125998564512": {"type": "TypeAlias", "target": {"nodeId": "140126015231744"}}, "140126283420320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998565072"}, {"nodeId": "140125998563504"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}, "140125998565072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998563504": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119710384"}]}, "140126283420768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998565520"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140125998565520": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126283421216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998565856"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140125998565856": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125998464384": {"type": "Overloaded", "items": [{"nodeId": "140126283421664"}, {"nodeId": "140126283422112"}]}, "140126283421664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998565744"}, {"nodeId": "140125998565296"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}, "140125998565744": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125998565296": {"type": "TypeAlias", "target": {"nodeId": "140126015230960"}}, "140126283422112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140126119710384"}, {"nodeId": "140125998566416"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126014946128"}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}, "140125998566416": {"type": "TypeAlias", "target": {"nodeId": "140126015230960"}}, "140125998565968": {"type": "Overloaded", "items": [{"nodeId": "140126283422560"}, {"nodeId": "140126283423008"}]}, "140126283422560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "0"}, {"nodeId": "140125998566192"}, {"nodeId": "140125998566752"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998566864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}, "140125998566192": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125998566752": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140125998566864": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126010283664"}]}, "140126283423008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998567424"}, {"nodeId": "140125998566640"}, {"nodeId": "140125998567088"}, {"nodeId": "140126325562992"}, {"nodeId": "140125998567200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}, "140125998567424": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998566640": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125998567088": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140125998567200": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126010283664"}]}, "140125998566528": {"type": "Overloaded", "items": [{"nodeId": "140126283423456"}, {"nodeId": "140126283423904"}, {"nodeId": "140126283424352"}, {"nodeId": "140126283424800"}, {"nodeId": "140126283425248"}]}, "140126283423456": {"type": "Function", "typeVars": [".-1.140126283423456"], "argTypes": [{"nodeId": ".-1.140126283423456"}], "returnType": {"nodeId": ".-1.140126283423456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126283423456": {"type": "TypeVar", "varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140126014944784"}, "def": "140126283423456", "variance": "INVARIANT"}, "140126283423904": {"type": "Function", "typeVars": [".-1.140126283423904"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126283423904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}, ".-1.140126283423904": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283423904", "variance": "INVARIANT"}, "140126283424352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}, "140126283424800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998567984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}, "140125998567984": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126283425248": {"type": "Function", "typeVars": [".-1.140126283425248"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998568320"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126283425248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dtype", "type"]}, "140125998568320": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126283425248": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126283425248", "variance": "INVARIANT"}, "140125998569104": {"type": "Overloaded", "items": [{"nodeId": "140126283425696"}, {"nodeId": "140126283426144"}]}, "140126283425696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "0"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}, "140126283426144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "140125998568880"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}, "140125998568880": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125998548128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126119709040"}]}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998550144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126119709376"}]}]}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998550368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126119709712"}]}]}], "returnType": {"nodeId": "140126119316832"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998550592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126119710384"}]}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126283428384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283500256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126283428832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283429280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998567536": {"type": "Overloaded", "items": [{"nodeId": "140125998550816"}, {"nodeId": "140126283430176"}, {"nodeId": "140126283430624"}, {"nodeId": "140126283431072"}, {"nodeId": "140126283431520"}]}, "140125998550816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998570336"}, {"nodeId": "140125998568768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998570336": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998568768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283430176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998569440"}, {"nodeId": "140125998567872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998569440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998567872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283430624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998570224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998570224": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283431072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283431520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998571456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998571456": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140126011183328": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010278288"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010278288"}]}]}]}]}, "140125998570112": {"type": "Overloaded", "items": [{"nodeId": "140125998549696"}, {"nodeId": "140126283563744"}, {"nodeId": "140126283564192"}, {"nodeId": "140126283564640"}, {"nodeId": "140126283565088"}]}, "140125998549696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998571792"}, {"nodeId": "140125998571904"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998571792": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998571904": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283563744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998572352"}, {"nodeId": "140125998571680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998572352": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998571680": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283564192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998572240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998572240": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283564640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283565088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998573360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998573360": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125998570672": {"type": "Overloaded", "items": [{"nodeId": "140125998551040"}, {"nodeId": "140126283565984"}, {"nodeId": "140126283566432"}, {"nodeId": "140126283566880"}, {"nodeId": "140126283567328"}]}, "140125998551040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998573696"}, {"nodeId": "140125998573808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998573696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998573808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283565984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998574256"}, {"nodeId": "140125998573584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998574256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998573584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283566432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998574144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998574144": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283566880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283567328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998575264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998575264": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125998572576": {"type": "Overloaded", "items": [{"nodeId": "140125998551264"}, {"nodeId": "140126283568224"}, {"nodeId": "140126283568672"}, {"nodeId": "140126283569120"}, {"nodeId": "140126283569568"}]}, "140125998551264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998575600"}, {"nodeId": "140125998575712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998575600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998575712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283568224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125998576160"}, {"nodeId": "140125998575488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998576160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125998575488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283568672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998576048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998576048": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283569120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283569568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125998577168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998577168": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125998574480": {"type": "Overloaded", "items": [{"nodeId": "140125998551488"}, {"nodeId": "140126283570464"}, {"nodeId": "140126283570912"}, {"nodeId": "140126283571360"}, {"nodeId": "140126283571808"}]}, "140125998551488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283570464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283570912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283571360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283571808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998576384": {"type": "Overloaded", "items": [{"nodeId": "140125998551712"}, {"nodeId": "140126283572704"}, {"nodeId": "140126283573152"}]}, "140125998551712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283572704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283573152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998577392": {"type": "Overloaded", "items": [{"nodeId": "140125998549920"}, {"nodeId": "140126283574048"}, {"nodeId": "140126283574496"}]}, "140125998549920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283574048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283574496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998578624": {"type": "Overloaded", "items": [{"nodeId": "140125998552160"}, {"nodeId": "140126283575392"}, {"nodeId": "140126283575840"}]}, "140125998552160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283575392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126283575840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125998399072": {"type": "Overloaded", "items": [{"nodeId": "140125998552384"}, {"nodeId": "140126283576736"}, {"nodeId": "140126283577184"}, {"nodeId": "140126283577632"}, {"nodeId": "140126283578080"}, {"nodeId": "140126283578528"}, {"nodeId": "140126283578976"}, {"nodeId": "140126283710752"}]}, "140125998552384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993436768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993436768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283576736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993436992"}, {"nodeId": "140125993437104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993436992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993437104": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283577184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993437552"}, {"nodeId": "140125993436544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993437552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993436544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283577632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993438112"}, {"nodeId": "140125993437440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993438112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993437440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283578080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993438560"}, {"nodeId": "140125993438000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993438560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993438000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283578528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993438896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993438896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283578976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283710752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993440016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993440016": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993435760": {"type": "Overloaded", "items": [{"nodeId": "140125998551936"}, {"nodeId": "140126283711648"}, {"nodeId": "140126283712096"}, {"nodeId": "140126283712544"}, {"nodeId": "140126283712992"}, {"nodeId": "140126283713440"}, {"nodeId": "140126283713888"}, {"nodeId": "140126283714336"}]}, "140125998551936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993440464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993440464": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283711648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993440688"}, {"nodeId": "140125993440800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993440688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993440800": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283712096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993441248"}, {"nodeId": "140125993440240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993441248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993440240": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283712544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993441808"}, {"nodeId": "140125993441136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993441808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993441136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283712992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993442256"}, {"nodeId": "140125993441696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993442256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993441696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283713440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993442592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993442592": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283713888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283714336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993443712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993443712": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993439568": {"type": "Overloaded", "items": [{"nodeId": "140125998552832"}, {"nodeId": "140126283715232"}, {"nodeId": "140126283715680"}, {"nodeId": "140126283716128"}, {"nodeId": "140126283716576"}, {"nodeId": "140126283717024"}, {"nodeId": "140126283717472"}]}, "140125998552832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993444160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993444160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283715232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993444496"}, {"nodeId": "140125993444608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993444496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993444608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283715680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993445056"}, {"nodeId": "140125993443936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993445056": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993443936": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283716128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993445616"}, {"nodeId": "140125993444944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993445616": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993444944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283716576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993446064"}, {"nodeId": "140125993445504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993446064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993445504": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126283717024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283717472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993446736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993446736": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993443264": {"type": "Overloaded", "items": [{"nodeId": "140125998553280"}, {"nodeId": "140126283718368"}, {"nodeId": "140126283718816"}, {"nodeId": "140126283719264"}, {"nodeId": "140126283719712"}, {"nodeId": "140126283720160"}, {"nodeId": "140126283720608"}]}, "140125998553280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993447184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993447184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283718368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993447520"}, {"nodeId": "140125993447632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993447520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993447632": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283718816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993448080"}, {"nodeId": "140125993446960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993448080": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993446960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283719264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993448640"}, {"nodeId": "140125993447968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993448640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993447968": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283719712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993449088"}, {"nodeId": "140125993448528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993449088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993448528": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126283720160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283720608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993449760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993449760": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993445952": {"type": "Overloaded", "items": [{"nodeId": "140125998553504"}, {"nodeId": "140126283721504"}, {"nodeId": "140126283721952"}, {"nodeId": "140126283722400"}, {"nodeId": "140126283722848"}]}, "140125998553504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993450208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993450208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283721504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993450656"}, {"nodeId": "140125993450768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993450656": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993450768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283721952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993451328"}, {"nodeId": "140125993449984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993451328": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993449984": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283722400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993501184"}, {"nodeId": "140125993501296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993501184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993501296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283722848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993501744"}, {"nodeId": "140125993501856"}], "returnType": {"nodeId": "140125993502304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993501744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993501856": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140125993502304": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140125993448976": {"type": "Overloaded", "items": [{"nodeId": "140125998553056"}, {"nodeId": "140126283723744"}, {"nodeId": "140126283724192"}, {"nodeId": "140126283724640"}, {"nodeId": "140126283725088"}]}, "140125998553056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993502640"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125993502640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283723744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993503088"}, {"nodeId": "140125993503200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125993503088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993503200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283724192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993503760"}, {"nodeId": "140125993502416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125993503760": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993502416": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283724640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993504432"}, {"nodeId": "140125993503648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125993504432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993503648": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283725088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993504992"}, {"nodeId": "140125993504320"}], "returnType": {"nodeId": "140125993505440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125993504992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993504320": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140125993505440": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140125998579408": {"type": "Overloaded", "items": [{"nodeId": "140125998553728"}, {"nodeId": "140126283725984"}, {"nodeId": "140126283726432"}, {"nodeId": "140126283874592"}, {"nodeId": "140126283875040"}, {"nodeId": "140126283875488"}, {"nodeId": "140126283875936"}, {"nodeId": "140126283876384"}, {"nodeId": "140126283876832"}, {"nodeId": "140126283877280"}, {"nodeId": "140126283877728"}]}, "140125998553728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993505776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993505776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283725984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993506000"}, {"nodeId": "140125993506112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993506000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993506112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283726432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993506560"}, {"nodeId": "140125993505552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993506560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993505552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283874592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993507120"}, {"nodeId": "140125993506448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993507120": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993506448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283875040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993507568"}, {"nodeId": "140125993507008"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993507568": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993507008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283875488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993507904"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993507904": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283875936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993508688"}, {"nodeId": "140125993508016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993508688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993508016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283876384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993509024"}, {"nodeId": "140125993508576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993509024": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993508576": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283876832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993509248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993509248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283877280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283877728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993510032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993510032": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993504880": {"type": "Overloaded", "items": [{"nodeId": "140125998553952"}, {"nodeId": "140126283878624"}, {"nodeId": "140126283879072"}, {"nodeId": "140126283879520"}, {"nodeId": "140126283879968"}, {"nodeId": "140126283880416"}, {"nodeId": "140126283880864"}, {"nodeId": "140126283881312"}, {"nodeId": "140126283881760"}, {"nodeId": "140126283882208"}, {"nodeId": "140126283882656"}]}, "140125998553952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993510480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993510480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283878624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993510704"}, {"nodeId": "140125993510816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993510704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993510816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283879072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993511264"}, {"nodeId": "140125993510256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993511264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993510256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283879520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993511824"}, {"nodeId": "140125993511152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993511824": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993511152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283879968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993512272"}, {"nodeId": "140125993511712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993512272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993511712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283880416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993512608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993512608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283880864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993513392"}, {"nodeId": "140125993512720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993513392": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993512720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283881312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993513728"}, {"nodeId": "140125993513280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993513728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993513280": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283881760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993513952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993513952": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283882208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283882656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993514736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993514736": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993509584": {"type": "Overloaded", "items": [{"nodeId": "140125998554176"}, {"nodeId": "140126283883552"}, {"nodeId": "140126283884000"}, {"nodeId": "140126283884448"}, {"nodeId": "140126283884896"}, {"nodeId": "140126283885344"}, {"nodeId": "140126283885792"}, {"nodeId": "140126283886240"}, {"nodeId": "140126283886688"}, {"nodeId": "140126283887136"}, {"nodeId": "140126283887584"}, {"nodeId": "140126283888032"}]}, "140125998554176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993515184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993515184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283883552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993515632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993515632": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283884000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993515744"}, {"nodeId": "140125993515856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993515744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993515856": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283884448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993516304"}, {"nodeId": "140125993514960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993516304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993514960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283884896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993516864"}, {"nodeId": "140125993516192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993516864": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993516192": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283885344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993550112"}, {"nodeId": "140125993550224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993550112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993550224": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283885792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993550560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993550560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283886240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993551232"}, {"nodeId": "140125993551344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993551232": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993551344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283886688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993551680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993551680": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283887136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993552016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993552016": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126283887584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126283888032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993552688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993552688": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993514288": {"type": "Overloaded", "items": [{"nodeId": "140125998552608"}, {"nodeId": "140126283888928"}, {"nodeId": "140126283889376"}, {"nodeId": "140126283889824"}, {"nodeId": "140126283890272"}, {"nodeId": "140126278795552"}, {"nodeId": "140126278796000"}, {"nodeId": "140126278796448"}, {"nodeId": "140126278796896"}, {"nodeId": "140126278797344"}, {"nodeId": "140126278797792"}, {"nodeId": "140126278798240"}]}, "140125998552608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993553136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993553136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283888928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993553584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993553584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283889376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993553696"}, {"nodeId": "140125993553808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993553696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993553808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283889824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993554256"}, {"nodeId": "140125993552912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993554256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993552912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126283890272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993554816"}, {"nodeId": "140125993554144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993554816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993554144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278795552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993555264"}, {"nodeId": "140125993554704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993555264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993554704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278796000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993555600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993555600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278796448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993556384"}, {"nodeId": "140125993555712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993556384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993555712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278796896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993556720"}, {"nodeId": "140125993556272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993556720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993556272": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126278797344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993556944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993556944": {"type": "TypeAlias", "target": {"nodeId": "140126011186352"}}, "140126278797792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278798240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993557728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993557728": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993451216": {"type": "Overloaded", "items": [{"nodeId": "140125998554624"}, {"nodeId": "140126278799136"}, {"nodeId": "140126278799584"}, {"nodeId": "140126278800032"}, {"nodeId": "140126278800480"}, {"nodeId": "140126278800928"}, {"nodeId": "140126278801376"}, {"nodeId": "140126278801824"}, {"nodeId": "140126278802272"}, {"nodeId": "140126278802720"}]}, "140125998554624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993558176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993558176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278799136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993558400"}, {"nodeId": "140125993558512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993558400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993558512": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278799584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993558960"}, {"nodeId": "140125993557952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993558960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993557952": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278800032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993559520"}, {"nodeId": "140125993558848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993559520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993558848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278800480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993559968"}, {"nodeId": "140125993559408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993559968": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993559408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278800928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993560304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993560304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278801376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993561088"}, {"nodeId": "140125993560416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993561088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993560416": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278801824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993561424"}, {"nodeId": "140125993560976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993561424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993560976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278802272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278802720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993562096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993562096": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993556608": {"type": "Overloaded", "items": [{"nodeId": "140125998555072"}, {"nodeId": "140126278803616"}, {"nodeId": "140126278804064"}, {"nodeId": "140126278804512"}, {"nodeId": "140126278804960"}, {"nodeId": "140126278805408"}, {"nodeId": "140126278805856"}, {"nodeId": "140126278806304"}, {"nodeId": "140126278806752"}, {"nodeId": "140126278807200"}]}, "140125998555072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993562544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993562544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278803616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993562768"}, {"nodeId": "140125993562880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993562768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993562880": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278804064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993563328"}, {"nodeId": "140125993562320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993563328": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993562320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278804512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993563888"}, {"nodeId": "140125993563216"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993563888": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993563216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278804960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993564336"}, {"nodeId": "140125993563776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993564336": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993563776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278805408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993564672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993564672": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278805856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993565456"}, {"nodeId": "140125993564784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993565456": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993564784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278806304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993565792"}, {"nodeId": "140125993565344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993565792": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993565344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278806752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278807200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993648528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993648528": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993561648": {"type": "Overloaded", "items": [{"nodeId": "140125998555296"}, {"nodeId": "140126278808096"}, {"nodeId": "140126278808544"}, {"nodeId": "140126278808992"}, {"nodeId": "140126278809440"}, {"nodeId": "140126278809888"}, {"nodeId": "140126278810336"}, {"nodeId": "140126278810784"}, {"nodeId": "140126278811232"}]}, "140125998555296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993648976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993648976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278808096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993649312"}, {"nodeId": "140125993649424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993649312": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993649424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278808544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993649872"}, {"nodeId": "140125993648752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993649872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993648752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278808992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993650432"}, {"nodeId": "140125993649760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993650432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993649760": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278809440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993650320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993650320": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126278809888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993651216"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993651216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278810336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993651440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993651440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278810784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278811232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993652224"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993652224": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993516752": {"type": "Overloaded", "items": [{"nodeId": "140125998554848"}, {"nodeId": "140126278910688"}, {"nodeId": "140126278911136"}, {"nodeId": "140126278911584"}, {"nodeId": "140126278912032"}, {"nodeId": "140126278912480"}, {"nodeId": "140126278912928"}, {"nodeId": "140126278913376"}, {"nodeId": "140126278913824"}]}, "140125998554848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993652672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993652672": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278910688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993653008"}, {"nodeId": "140125993653120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993653008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993653120": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278911136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993653568"}, {"nodeId": "140125993652448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993653568": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993652448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278911584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993654128"}, {"nodeId": "140125993653456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993654128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993653456": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278912032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993654016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993654016": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126278912480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993654912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993654912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278912928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993655248"}, {"nodeId": "140125993654464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993655248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993654464": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278913376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278913824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993655920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993655920": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993651776": {"type": "Overloaded", "items": [{"nodeId": "140125998555520"}, {"nodeId": "140126278914720"}, {"nodeId": "140126278915168"}, {"nodeId": "140126278915616"}, {"nodeId": "140126278916064"}, {"nodeId": "140126278916512"}, {"nodeId": "140126278916960"}, {"nodeId": "140126278917408"}]}, "140125998555520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993656368"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993656368": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278914720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993656704"}, {"nodeId": "140125993656816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993656704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993656816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278915168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993657264"}, {"nodeId": "140125993656144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993657264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993656144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278915616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993657824"}, {"nodeId": "140125993657152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993657824": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993657152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278916064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993658272"}, {"nodeId": "140125993657712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993658272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993657712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278916512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993658608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993658608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278916960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278917408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993659728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993659728": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993655472": {"type": "Overloaded", "items": [{"nodeId": "140125998554400"}, {"nodeId": "140126278918304"}, {"nodeId": "140126278918752"}, {"nodeId": "140126278919200"}, {"nodeId": "140126278919648"}, {"nodeId": "140126278920096"}, {"nodeId": "140126278920544"}, {"nodeId": "140126278920992"}]}, "140125998554400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993660176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993660176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278918304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993660512"}, {"nodeId": "140125993660624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993660512": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993660624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278918752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993661072"}, {"nodeId": "140125993659952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993661072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993659952": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278919200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993661632"}, {"nodeId": "140125993660960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993661632": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993660960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278919648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993662080"}, {"nodeId": "140125993661520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993662080": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993661520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278920096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993662416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993662416": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278920544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278920992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993663536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993663536": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993659280": {"type": "Overloaded", "items": [{"nodeId": "140125998555968"}, {"nodeId": "140126278921888"}, {"nodeId": "140126278922336"}, {"nodeId": "140126278922784"}, {"nodeId": "140126278923232"}, {"nodeId": "140126278923680"}, {"nodeId": "140126278924128"}, {"nodeId": "140126278924576"}, {"nodeId": "140126278925024"}]}, "140125998555968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993663872"}, {"nodeId": "140125993663984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993663872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993663984": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278921888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993664320"}, {"nodeId": "140125993680960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993664320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993680960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278922336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993681408"}, {"nodeId": "140125993681520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993681408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993681520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278922784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993681856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993681856": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278923232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993682640"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993682640": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126278923680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993682976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993682976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278924128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993683200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993683200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278924576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126278925024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993683984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993683984": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993663088": {"type": "Overloaded", "items": [{"nodeId": "140125998555744"}, {"nodeId": "140126278925920"}, {"nodeId": "140126279074080"}, {"nodeId": "140126279074528"}, {"nodeId": "140126279074976"}, {"nodeId": "140126279075424"}, {"nodeId": "140126279075872"}, {"nodeId": "140126279076320"}, {"nodeId": "140126279076768"}]}, "140125998555744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993684320"}, {"nodeId": "140125993684432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993684320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993684432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126278925920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993684768"}, {"nodeId": "140125993684880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993684768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993684880": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279074080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993685440"}, {"nodeId": "140125993684208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993685440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993684208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279074528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993685776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993685776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279074976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993685888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993685888": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126279075424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993686896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993686896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279075872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993687232"}, {"nodeId": "140125993686448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993687232": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993686448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279076320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279076768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993687904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993687904": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993565680": {"type": "Overloaded", "items": [{"nodeId": "140125998556416"}, {"nodeId": "140126279077664"}, {"nodeId": "140126279078112"}, {"nodeId": "140126279078560"}, {"nodeId": "140126279079008"}]}, "140125998556416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993688352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993688352": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279077664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993688688"}, {"nodeId": "140125993688800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993688688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993688800": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279078112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993689248"}, {"nodeId": "140125993688128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993689248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993688128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279078560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279079008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993690144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993690144": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993687456": {"type": "Overloaded", "items": [{"nodeId": "140125998556192"}, {"nodeId": "140126279079904"}, {"nodeId": "140126279080352"}, {"nodeId": "140126279080800"}, {"nodeId": "140126279081248"}]}, "140125998556192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993690592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993690592": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279079904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993690928"}, {"nodeId": "140125993691040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993690928": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993691040": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279080352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993691488"}, {"nodeId": "140125993690368"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993691488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993690368": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279080800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279081248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993692384"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993692384": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993689696": {"type": "Overloaded", "items": [{"nodeId": "140125998556864"}, {"nodeId": "140126279082144"}, {"nodeId": "140126279082592"}, {"nodeId": "140126279083040"}, {"nodeId": "140126279083488"}]}, "140125998556864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993692832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993692832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279082144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993693168"}, {"nodeId": "140125993693280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993693168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993693280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279082592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993693728"}, {"nodeId": "140125993692608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993693728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993692608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279083040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279083488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993694624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993694624": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993691936": {"type": "Overloaded", "items": [{"nodeId": "140125998557088"}, {"nodeId": "140126279084384"}, {"nodeId": "140126279084832"}, {"nodeId": "140126279085280"}, {"nodeId": "140126279085728"}]}, "140125998557088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993695072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993695072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279084384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993695408"}, {"nodeId": "140125993695520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993695408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993695520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279084832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993695968"}, {"nodeId": "140125993694848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993695968": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993694848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279085280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279085728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993696864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993696864": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993694176": {"type": "Overloaded", "items": [{"nodeId": "140125998557312"}, {"nodeId": "140126279086624"}, {"nodeId": "140126279087072"}, {"nodeId": "140126279087520"}, {"nodeId": "140126279087968"}]}, "140125998557312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993746608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993746608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279086624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993746832"}, {"nodeId": "140125993746944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993746832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993746944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279087072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993747280"}, {"nodeId": "140125993747392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993747280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993747392": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279087520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279087968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993748288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993748288": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993696416": {"type": "Overloaded", "items": [{"nodeId": "140125998557536"}, {"nodeId": "140126279088864"}, {"nodeId": "140126279089312"}, {"nodeId": "140126279089760"}, {"nodeId": "140126279221536"}]}, "140125998557536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993748736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993748736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279088864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993748960"}, {"nodeId": "140125993749072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993748960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993749072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279089312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993749520"}, {"nodeId": "140125993748512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993749520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993748512": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279089760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279221536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993750416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993750416": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993663760": {"type": "Overloaded", "items": [{"nodeId": "140125998557760"}, {"nodeId": "140126279222432"}, {"nodeId": "140126279222880"}, {"nodeId": "140126279223328"}, {"nodeId": "140126279223776"}]}, "140125998557760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993750864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993750864": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279222432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993751088"}, {"nodeId": "140125993751200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993751088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993751200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279222880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993751648"}, {"nodeId": "140125993750640"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993751648": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993750640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279223328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279223776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993752544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993752544": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993749968": {"type": "Overloaded", "items": [{"nodeId": "140125998557984"}, {"nodeId": "140126279224672"}, {"nodeId": "140126279225120"}, {"nodeId": "140126279225568"}, {"nodeId": "140126279226016"}]}, "140125998557984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993752992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993752992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279224672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993753216"}, {"nodeId": "140125993753328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993753216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993753328": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279225120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993753776"}, {"nodeId": "140125993752768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993753776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993752768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279225568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279226016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993754672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993754672": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993752096": {"type": "Overloaded", "items": [{"nodeId": "140125998558208"}, {"nodeId": "140126279226912"}, {"nodeId": "140126279227360"}, {"nodeId": "140126279227808"}, {"nodeId": "140126279228256"}]}, "140125998558208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993755120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993755120": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279226912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993755344"}, {"nodeId": "140125993755456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993755344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993755456": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279227360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993755904"}, {"nodeId": "140125993754896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993755904": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993754896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279227808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279228256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993756800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993756800": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993754224": {"type": "Overloaded", "items": [{"nodeId": "140125998558432"}, {"nodeId": "140126279229152"}, {"nodeId": "140126279229600"}, {"nodeId": "140126279230048"}, {"nodeId": "140126279230496"}]}, "140125998558432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993757248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993757248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279229152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993757472"}, {"nodeId": "140125993757584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993757472": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993757584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279229600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140125993758032"}, {"nodeId": "140125993757024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993758032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993757024": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279230048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126279230496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993758928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993758928": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140125993756352": {"type": "Overloaded", "items": [{"nodeId": "140125998558656"}, {"nodeId": "140126279231392"}, {"nodeId": "140126279231840"}, {"nodeId": "140126279232288"}, {"nodeId": "140126279232736"}, {"nodeId": "140126279233184"}, {"nodeId": "140126279233632"}, {"nodeId": "140126279234080"}]}, "140125998558656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993759376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993759376": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279231392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993759936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993759936": {"type": "Union", "items": [{"nodeId": "140125993759712"}, {"nodeId": "140125993759824"}]}, "140125993759712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993759824": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279231840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993760160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993760160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279232288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993760496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993760496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279232736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993760832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993760832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279233184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993761168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993761168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279233632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993761392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993761392": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279234080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993758480": {"type": "Overloaded", "items": [{"nodeId": "140125998558880"}, {"nodeId": "140126279234976"}, {"nodeId": "140126279235424"}, {"nodeId": "140126279235872"}, {"nodeId": "140126279236320"}, {"nodeId": "140126279236768"}, {"nodeId": "140126279237216"}]}, "140125998558880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993762624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993762624": {"type": "Union", "items": [{"nodeId": "140125993762400"}, {"nodeId": "140125993762512"}]}, "140125993762400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993762512": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279234976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993812144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993812144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279235424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993812480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993812480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279235872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993812816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993812816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279236320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993813152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993813152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279236768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993813712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993813712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279237216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993761952": {"type": "Overloaded", "items": [{"nodeId": "140125998559328"}, {"nodeId": "140126279369440"}, {"nodeId": "140126279369888"}, {"nodeId": "140126279370336"}, {"nodeId": "140126279370784"}, {"nodeId": "140126279371232"}, {"nodeId": "140126279371680"}]}, "140125998559328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993814384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993814384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279369440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993814944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993814944": {"type": "Union", "items": [{"nodeId": "140125993814720"}, {"nodeId": "140125993814832"}]}, "140125993814720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993814832": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279369888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993815168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993815168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279370336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993815504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993815504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279370784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993815840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993815840": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279371232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993816176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993816176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279371680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993697088": {"type": "Overloaded", "items": [{"nodeId": "140125998559552"}, {"nodeId": "140126279372576"}, {"nodeId": "140126279373024"}, {"nodeId": "140126279373472"}, {"nodeId": "140126279373920"}]}, "140125998559552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993817072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993817072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279372576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993817296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993817296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279373024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993817632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993817632": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279373472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993817968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993817968": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279373920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993816624": {"type": "Overloaded", "items": [{"nodeId": "140125998559104"}, {"nodeId": "140126279374816"}, {"nodeId": "140126279375264"}, {"nodeId": "140126279375712"}, {"nodeId": "140126279376160"}, {"nodeId": "140126279376608"}, {"nodeId": "140126279377056"}]}, "140125998559104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993818976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993818976": {"type": "Union", "items": [{"nodeId": "140125993818752"}, {"nodeId": "140125993818864"}]}, "140125993818752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993818864": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279374816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993819200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993819200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279375264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993819536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993819536": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279375712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993819872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993819872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279376160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993820208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993820208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279376608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993820544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993820544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279377056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993818304": {"type": "Overloaded", "items": [{"nodeId": "140125998560000"}, {"nodeId": "140126279377952"}, {"nodeId": "140126279378400"}, {"nodeId": "140126279378848"}, {"nodeId": "140126279379296"}]}, "140125998560000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993821552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993821552": {"type": "Union", "items": [{"nodeId": "140125993821328"}, {"nodeId": "140125993821440"}]}, "140125993821328": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993821440": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279377952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993821776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993821776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279378400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993822112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993822112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279378848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993822448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993822448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279379296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993820880": {"type": "Overloaded", "items": [{"nodeId": "140125998556640"}, {"nodeId": "140126279380192"}, {"nodeId": "140126279380640"}, {"nodeId": "140126279381088"}, {"nodeId": "140126279381536"}]}, "140125998556640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993823568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993823568": {"type": "Union", "items": [{"nodeId": "140125993823344"}, {"nodeId": "140125993823456"}]}, "140125993823344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993823456": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279380192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993823792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993823792": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279380640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993824128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993824128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279381088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993824464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993824464": {"type": "Union", "items": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126014477296", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010279968"}]}]}]}]}, "140126279381536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993823008": {"type": "Overloaded", "items": [{"nodeId": "140125998560224"}, {"nodeId": "140126279382432"}, {"nodeId": "140126279382880"}]}, "140125998560224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993825584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993825584": {"type": "Union", "items": [{"nodeId": "140125993825360"}, {"nodeId": "140125993825472"}]}, "140125993825360": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993825472": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279382432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993825808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993825808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279382880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993824688": {"type": "Overloaded", "items": [{"nodeId": "140125998559776"}, {"nodeId": "140126279383776"}, {"nodeId": "140126279384224"}]}, "140125998559776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993826928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993826928": {"type": "Union", "items": [{"nodeId": "140125993826704"}, {"nodeId": "140125993826816"}]}, "140125993826704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993826816": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279383776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993827152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993827152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279384224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993826368": {"type": "Overloaded", "items": [{"nodeId": "140125998560672"}, {"nodeId": "140126279549216"}, {"nodeId": "140126279549664"}, {"nodeId": "140126279550112"}]}, "140125998560672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993828048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993828048": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279549216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993894288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993894288": {"type": "Union", "items": [{"nodeId": "140125993894064"}, {"nodeId": "140125993894176"}]}, "140125993894064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993894176": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279549664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993894512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993894512": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279550112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993827712": {"type": "Overloaded", "items": [{"nodeId": "140125998561120"}, {"nodeId": "140126279551008"}, {"nodeId": "140126279551456"}, {"nodeId": "140126279551904"}]}, "140125998561120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993895408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993895408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279551008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993895968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993895968": {"type": "Union", "items": [{"nodeId": "140125993895744"}, {"nodeId": "140125993895856"}]}, "140125993895744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993895856": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279551456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993896192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993896192": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279551904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993762176": {"type": "Overloaded", "items": [{"nodeId": "140125998561344"}, {"nodeId": "140126279552800"}, {"nodeId": "140126279553248"}, {"nodeId": "140126279553696"}]}, "140125998561344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993897088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993897088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279552800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993897648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993897648": {"type": "Union", "items": [{"nodeId": "140125993897424"}, {"nodeId": "140125993897536"}]}, "140125993897424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125993897536": {"type": "TypeAlias", "target": {"nodeId": "140126010930928"}}, "140126279553248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125993897872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125993897872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126279553696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125998561568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140125993898768"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}, "140125993898768": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126279554592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": "140125993899104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993899104": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "0"}]}, "140125968594784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126014946128"}, {"nodeId": ".2.140126014946128"}]}], "returnType": {"nodeId": ".2.140126014946128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258532576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": ".1.140126014943440"}], "returnType": {"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "array", "ptr"]}, ".1.140126014943440": {"type": "TypeVar", "varName": "_PT", "values": [], "upperBound": {"nodeId": "140126015227936"}, "def": "140126014943440", "variance": "INVARIANT"}, "140126015227936": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140125972483648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}], "returnType": {"nodeId": ".1.140126014943440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972491264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}], "returnType": {"nodeId": "140126111599968", "args": [{"nodeId": "140126115876192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111599968": {"type": "Concrete", "module": "ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103464064"}, "items": [{"kind": "Variable", "name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126065265568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_length_"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103464176"}, "items": [{"kind": "Variable", "name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126065266016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "_type_"}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199433920"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103465744"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103465856"}, "items": [{"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199436160"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199436608"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199437056"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126111599968"}], "bases": [{"nodeId": "140126115706048"}], "isAbstract": true}, "140126103464064": {"type": "Overloaded", "items": [{"nodeId": "140126199432128"}]}, "140126199432128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126111599968": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140126115706048"}, "def": "140126111599968", "variance": "INVARIANT"}, "140126065265568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103464176": {"type": "Overloaded", "items": [{"nodeId": "140126199433024"}]}, "140126199433024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065266016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199433920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140126103465744": {"type": "Overloaded", "items": [{"nodeId": "140126199434368"}, {"nodeId": "140126199434816"}]}, "140126199434368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126199434816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126103465856": {"type": "Overloaded", "items": [{"nodeId": "140126199435264"}, {"nodeId": "140126199435712"}]}, "140126199435264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126199435712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}, {"nodeId": "140126119318512"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126199436160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126199436608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599968", "args": [{"nodeId": ".1.140126111599968"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126199437056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126115876192": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140125972488352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}], "returnType": {"nodeId": "140126111599968", "args": [{"nodeId": "140126115876192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125972485216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}], "returnType": {"nodeId": "140126115881232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115881232": {"type": "Concrete", "module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115706720"}, {"nodeId": "140126115708400", "args": [{"nodeId": "140126111497376"}]}], "isAbstract": false}, "140126111497376": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126258534816": {"type": "Function", "typeVars": [".-1.140126258534816"], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126258534816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".-1.140126258534816": {"type": "TypeVar", "varName": "_CastT", "values": [], "upperBound": {"nodeId": "140126115706384"}, "def": "140126258534816", "variance": "INVARIANT"}, "140126258535264": {"type": "Function", "typeVars": [".-1.140126258535264"], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "140126111599968", "args": [{"nodeId": ".-1.140126258535264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".-1.140126258535264": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140126115706048"}, "def": "140126258535264", "variance": "INVARIANT"}, "140126258535712": {"type": "Function", "typeVars": [".-1.140126258535712"], "argTypes": [{"nodeId": "140126014943440", "args": [{"nodeId": ".1.140126014943440"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "140126111599968", "args": [{"nodeId": ".-1.140126258535712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".-1.140126258535712": {"type": "TypeVar", "varName": "_CT", "values": [], "upperBound": {"nodeId": "140126115706048"}, "def": "140126258535712", "variance": "INVARIANT"}, "140126014477968": {"type": "Concrete", "module": "numpy._typing._array_like", "simpleName": "_UnknownType", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126010697632": {"type": "Concrete", "module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout1", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941326880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941327328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941327552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941327776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941328000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941328224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941324640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941324416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941324192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941323968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941323744"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048071440"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174385024"}, "name": "at"}], "typeVars": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}], "bases": [{"nodeId": "140126010283328"}], "isAbstract": false}, "140125941326880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": ".1.140126010697632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010697632": {"type": "TypeVar", "varName": "_NameType", "values": [], "upperBound": {"nodeId": "140126119317840"}, "def": "140126010697632", "variance": "INVARIANT"}, ".2.140126010697632": {"type": "TypeVar", "varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140126119316160"}, "def": "140126010697632", "variance": "INVARIANT"}, ".3.140126010697632": {"type": "TypeVar", "varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010697632", "variance": "INVARIANT"}, "140125941327328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": ".2.140126010697632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941327552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": ".3.140126010697632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941327776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941328000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941328224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941324640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941324416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941324192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941323968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941323744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048071440": {"type": "Overloaded", "items": [{"nodeId": "140126174383680"}, {"nodeId": "140126174384128"}, {"nodeId": "140126174384576"}]}, "140126174383680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}, {"nodeId": "140126048066512"}, {"nodeId": "N"}, {"nodeId": "140126048065952"}, {"nodeId": "140126048065840"}, {"nodeId": "140126048065504"}, {"nodeId": "140126048065728"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048065056"}, {"nodeId": "140126119319184", "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"]}, "140126048066512": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126048065952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048064720"}]}, "140126048064720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048065840": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126048065504": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126048065728": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126048065056": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174384128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}, {"nodeId": "140126048064608"}, {"nodeId": "140126048063824"}, {"nodeId": "140126048063936"}, {"nodeId": "140126048063376"}, {"nodeId": "140126048062704"}, {"nodeId": "140126048063040"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048062368"}, {"nodeId": "140126119319184", "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"]}, "140126048064608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048063824": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126048063152"}]}, "140126048063152": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126048063936": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048064384"}]}, "140126048064384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048063376": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126048062704": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126048063040": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126048062368": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174384576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}, {"nodeId": "140126010697296"}, {"nodeId": "140126053202544"}, {"nodeId": "140126053194928"}, {"nodeId": "140126053202432"}, {"nodeId": "140126053202320"}, {"nodeId": "140126053202880"}, {"nodeId": "140126325562992"}, {"nodeId": "140126053201536"}, {"nodeId": "140126119319184", "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"]}, "140126010697296": {"type": "Protocol", "module": "numpy._typing._ufunc", "simpleName": "_SupportsArrayUFunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126032033408"}, "name": "__array_ufunc__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__array_ufunc__"]}, "140126032033408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697296"}, {"nodeId": "140126010283328"}, {"nodeId": "140126048067408"}, {"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"]}, "140126048067408": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126053202544": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126053201760"}]}, "140126053201760": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126053194928": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126053202096"}]}, "140126053202096": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053202432": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126053202320": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126053202880": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053201536": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174385024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697632", "args": [{"nodeId": ".1.140126010697632"}, {"nodeId": ".2.140126010697632"}, {"nodeId": ".3.140126010697632"}]}, {"nodeId": "140126010697296"}, {"nodeId": "140126053200304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126053200304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010697968": {"type": "Concrete", "module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout1", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941323072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941322624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941322400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941322176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941321952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941321728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941317696"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048069760"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174389504"}, "name": "at"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "where", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174389952"}, "name": "reduce"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174390400"}, "name": "accumulate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174390848"}, "name": "reduceat"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010927568"}, "items": [{"kind": "Variable", "name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "outer"}], "typeVars": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}], "bases": [{"nodeId": "140126010283328"}], "isAbstract": false}, "140125941323072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": ".1.140126010697968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010697968": {"type": "TypeVar", "varName": "_NameType", "values": [], "upperBound": {"nodeId": "140126119317840"}, "def": "140126010697968", "variance": "INVARIANT"}, ".2.140126010697968": {"type": "TypeVar", "varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140126119316160"}, "def": "140126010697968", "variance": "INVARIANT"}, ".3.140126010697968": {"type": "TypeVar", "varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010697968", "variance": "INVARIANT"}, "140125941322624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": ".2.140126010697968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941322400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": ".3.140126010697968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941322176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941321952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941321728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941317696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048069760": {"type": "Overloaded", "items": [{"nodeId": "140126174388608"}, {"nodeId": "140126174389056"}]}, "140126174388608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053200976"}, {"nodeId": "140126053199520"}, {"nodeId": "N"}, {"nodeId": "140126053200864"}, {"nodeId": "140126053200640"}, {"nodeId": "140126053199856"}, {"nodeId": "140126053200416"}, {"nodeId": "140126325562992"}, {"nodeId": "140126053198736"}, {"nodeId": "140126119319184", "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"]}, "140126053200976": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126053199520": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126053200864": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126053200080"}]}, "140126053200080": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053200640": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126053199856": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126053200416": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053198736": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174389056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053194480"}, {"nodeId": "140126053194816"}, {"nodeId": "140126053197616"}, {"nodeId": "140126053196608"}, {"nodeId": "140126053197168"}, {"nodeId": "140126053196496"}, {"nodeId": "140126053196048"}, {"nodeId": "140126325562992"}, {"nodeId": "140126053195824"}, {"nodeId": "140126119319184", "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"]}, "140126053194480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053194816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053197616": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126053197392"}]}, "140126053197392": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126053196608": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126053197504"}]}, "140126053197504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053197168": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126053196496": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126053196048": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053195824": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174389504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "0"}, {"nodeId": "140126053193584"}, {"nodeId": "140126053195152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126053193584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053195152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126174389952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053193808"}, {"nodeId": "140126053192464"}, {"nodeId": "140126053192576"}, {"nodeId": "140126053194368"}, {"nodeId": "140126325562992"}, {"nodeId": "A"}, {"nodeId": "140126053194256"}], "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"]}, "140126053193808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053192464": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126053194032"}]}, "140126053194032": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126053192576": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053194368": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126053194256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126174390400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053197728"}, {"nodeId": "140126119710384"}, {"nodeId": "140126053194144"}, {"nodeId": "140126053197840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out"]}, "140126053197728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053194144": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053197840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126174390848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053191232"}, {"nodeId": "140126053190560"}, {"nodeId": "140126119710384"}, {"nodeId": "140126053191120"}, {"nodeId": "140126053190112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "indices", "axis", "dtype", "out"]}, "140126053191232": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053190560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053191120": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053190112": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126010927568": {"type": "Overloaded", "items": [{"nodeId": "140126174391296"}, {"nodeId": "140126174391744"}]}, "140126174391296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053189440"}, {"nodeId": "140126053189776"}, {"nodeId": "N"}, {"nodeId": "140126053190224"}, {"nodeId": "140126053190672"}, {"nodeId": "140126053188880"}, {"nodeId": "140126053191344"}, {"nodeId": "140126325562992"}, {"nodeId": "140126053188656"}, {"nodeId": "140126119319184", "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"]}, "140126053189440": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126053189776": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126053190224": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126053188432"}]}, "140126053188432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053190672": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126053188880": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126053191344": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126053188656": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174391744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010697968", "args": [{"nodeId": ".1.140126010697968"}, {"nodeId": ".2.140126010697968"}, {"nodeId": ".3.140126010697968"}]}, {"nodeId": "140126053188096"}, {"nodeId": "140126053188992"}, {"nodeId": "140126052973728"}, {"nodeId": "140126052974176"}, {"nodeId": "140126052971936"}, {"nodeId": "140126052974064"}, {"nodeId": "140126052973616"}, {"nodeId": "140126325562992"}, {"nodeId": "140126052973168"}, {"nodeId": "140126119319184", "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"]}, "140126053188096": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126053188992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052973728": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126052973840"}]}, "140126052973840": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126052974176": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126052974288"}]}, "140126052974288": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052971936": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126052974064": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126052973616": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126052973168": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126010698304": {"type": "Concrete", "module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout2", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941318368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941319264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941319040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941319488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941319936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941319712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941318144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941320608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941330912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941331136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941331360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941331584"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126053189104"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}], "bases": [{"nodeId": "140126010283328"}], "isAbstract": false}, "140125941318368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": ".1.140126010698304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010698304": {"type": "TypeVar", "varName": "_NameType", "values": [], "upperBound": {"nodeId": "140126119317840"}, "def": "140126010698304", "variance": "INVARIANT"}, ".2.140126010698304": {"type": "TypeVar", "varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140126119316160"}, "def": "140126010698304", "variance": "INVARIANT"}, ".3.140126010698304": {"type": "TypeVar", "varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010698304", "variance": "INVARIANT"}, "140125941319264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": ".2.140126010698304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941319040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": ".3.140126010698304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941319488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941319936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941319712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941318144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941320608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941330912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941331136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941331360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941331584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126053189104": {"type": "Overloaded", "items": [{"nodeId": "140126174561664"}, {"nodeId": "140126174562112"}, {"nodeId": "140126174562560"}]}, "140126174561664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}, {"nodeId": "140126052971152"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140126052971040"}, {"nodeId": "140126052971712"}, {"nodeId": "140126052972384"}, {"nodeId": "140126052972272"}, {"nodeId": "140126325562992"}, {"nodeId": "140126052970928"}, {"nodeId": "140126119319184", "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"]}, "140126052971152": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126052971040": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126052972608"}]}, "140126052972608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052971712": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126052972384": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126052972272": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126052970928": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174562112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}, {"nodeId": "140126052970032"}, {"nodeId": "140126052968352"}, {"nodeId": "140126052968800"}, {"nodeId": "0"}, {"nodeId": "140126052969696"}, {"nodeId": "140126052968688"}, {"nodeId": "140126052968576"}, {"nodeId": "140126052968240"}, {"nodeId": "140126325562992"}, {"nodeId": "140126052968016"}, {"nodeId": "140126119319184", "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"]}, "140126052970032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052968352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126052968800": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126052969696": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126052969136"}]}, "140126052969136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052968688": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126052968576": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126052968240": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126052968016": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174562560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698304", "args": [{"nodeId": ".1.140126010698304"}, {"nodeId": ".2.140126010698304"}, {"nodeId": ".3.140126010698304"}]}, {"nodeId": "140126010697296"}, {"nodeId": "140126052966672"}, {"nodeId": "140126052967008"}, {"nodeId": "0"}, {"nodeId": "140126052965888"}, {"nodeId": "140126052966448"}, {"nodeId": "140126052965776"}, {"nodeId": "140126052965328"}, {"nodeId": "140126325562992"}, {"nodeId": "140126052964880"}, {"nodeId": "140126119319184", "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"]}, "140126052966672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126052967008": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126052965888": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126052966560"}]}, "140126052966560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052966448": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126052965776": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126052965328": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126052964880": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126010698640": {"type": "Concrete", "module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout2", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941332256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941332704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941332928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941333152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941333376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941333600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941514304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941514528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941514752"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941514976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941515200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941515424"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010928576"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}], "bases": [{"nodeId": "140126010283328"}], "isAbstract": false}, "140125941332256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": ".1.140126010698640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010698640": {"type": "TypeVar", "varName": "_NameType", "values": [], "upperBound": {"nodeId": "140126119317840"}, "def": "140126010698640", "variance": "INVARIANT"}, ".2.140126010698640": {"type": "TypeVar", "varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140126119316160"}, "def": "140126010698640", "variance": "INVARIANT"}, ".3.140126010698640": {"type": "TypeVar", "varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010698640", "variance": "INVARIANT"}, "140125941332704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": ".2.140126010698640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941332928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": ".3.140126010698640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941333152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941333376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941333600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941514304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941514528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941514752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941514976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941515200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941515424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010928576": {"type": "Overloaded", "items": [{"nodeId": "140126174568384"}, {"nodeId": "140126174568832"}]}, "140126174568384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}, {"nodeId": "140126052961184"}, {"nodeId": "140126052966336"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140126052961632"}, {"nodeId": "140126052963872"}, {"nodeId": "140126052958384"}, {"nodeId": "140126052958272"}, {"nodeId": "140126325562992"}, {"nodeId": "140126052515312"}, {"nodeId": "140126119319184", "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"]}, "140126052961184": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126052966336": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126052961632": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126052961520"}]}, "140126052961520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052963872": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126052958384": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126052958272": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126052515312": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174568832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698640", "args": [{"nodeId": ".1.140126010698640"}, {"nodeId": ".2.140126010698640"}, {"nodeId": ".3.140126010698640"}]}, {"nodeId": "140126052963424"}, {"nodeId": "140126052514640"}, {"nodeId": "140126052513968"}, {"nodeId": "140126052513856"}, {"nodeId": "0"}, {"nodeId": "140126056902752"}, {"nodeId": "140126056906112"}, {"nodeId": "140126056902080"}, {"nodeId": "140126056902192"}, {"nodeId": "140126325562992"}, {"nodeId": "140126056902528"}, {"nodeId": "140126119319184", "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"]}, "140126052963424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052514640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126052513968": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126052513856": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126056902752": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126056902640"}]}, "140126056902640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126056906112": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126056902080": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126056902192": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126056902528": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126010698976": {"type": "Concrete", "module": "numpy._typing._ufunc", "simpleName": "_GUFunc_Nin2_Nout1", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941516096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941516544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941516768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941516992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941517216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941517440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941517664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941517888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941518112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941518336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941518560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125941518784"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010929696"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}], "bases": [{"nodeId": "140126010283328"}], "isAbstract": false}, "140125941516096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": ".1.140126010698976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010698976": {"type": "TypeVar", "varName": "_NameType", "values": [], "upperBound": {"nodeId": "140126119317840"}, "def": "140126010698976", "variance": "INVARIANT"}, ".2.140126010698976": {"type": "TypeVar", "varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140126119316160"}, "def": "140126010698976", "variance": "INVARIANT"}, ".3.140126010698976": {"type": "TypeVar", "varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010698976", "variance": "INVARIANT"}, "140125941516544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": ".2.140126010698976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941516768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": ".3.140126010698976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941516992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941517216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941517440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941517664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941517888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941518112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941518336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941518560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125941518784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010929696": {"type": "Overloaded", "items": [{"nodeId": "140126174574656"}, {"nodeId": "140126174575104"}]}, "140126174574656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}, {"nodeId": "140126056676176"}, {"nodeId": "140126056676624"}, {"nodeId": "N"}, {"nodeId": "140126056676960"}, {"nodeId": "140126056677072"}, {"nodeId": "140126056676736"}, {"nodeId": "140126325562992"}, {"nodeId": "140126056676512"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319184", "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"]}, "140126056676176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126056676624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126056676960": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126056677072": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126056676736": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126056676512": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126174575104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010698976", "args": [{"nodeId": ".1.140126010698976"}, {"nodeId": ".2.140126010698976"}, {"nodeId": ".3.140126010698976"}]}, {"nodeId": "140126056668784"}, {"nodeId": "140126056666432"}, {"nodeId": "140126056667104"}, {"nodeId": "140126056668336"}, {"nodeId": "140126056666656"}, {"nodeId": "140126056666208"}, {"nodeId": "140126325562992"}, {"nodeId": "140126056664864"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319184", "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"]}, "140126056668784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126056666432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126056667104": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126056665872"}]}, "140126056665872": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126056668336": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140126056666656": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126056666208": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126056664864": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126010700992": {"type": "Concrete", "module": "numpy.lib.arrayterator", "simpleName": "Arrayterator", "members": [{"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014898688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125981225728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125981225056"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224736640"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126002034640"}, "items": [{"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__array__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224737984"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224738432"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}], "isAbstract": false}, ".1.140126010700992": {"type": "TypeVar", "varName": "_Shape", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010700992", "variance": "INVARIANT"}, ".2.140126010700992": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010700992", "variance": "INVARIANT"}, "140126014898688": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140125981225728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125981225056": {"type": "Function", "typeVars": [".-1.140125981225056"], "argTypes": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140125981225056"}]}]}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140125981225056"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125981225056": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125981225056", "variance": "INVARIANT"}, "140126325567696": {"type": "Concrete", "module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295838272"}, "name": "__next__"}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090243072"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111823936"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295840064"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295840512"}, "name": "__iter__"}, {"kind": "Variable", "name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090243296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090243744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090244416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090244640"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126325567696"}]}], "isAbstract": true}, "140126295838272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": ".1.140126325567696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325567696": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325567696", "variance": "COVARIANT"}, ".2.140126325567696": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325567696", "variance": "CONTRAVARIANT"}, ".3.140126325567696": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325567696", "variance": "COVARIANT"}, "140126090243072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}, {"nodeId": ".2.140126325567696"}], "returnType": {"nodeId": ".1.140126325567696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126111823936": {"type": "Overloaded", "items": [{"nodeId": "140126295839168"}, {"nodeId": "140126295839616"}]}, "140126295839168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}, {"nodeId": "0"}, {"nodeId": "140126111825056"}, {"nodeId": "140126111825168"}], "returnType": {"nodeId": ".1.140126325567696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126111825056": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126111825168": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126295839616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126111825280"}], "returnType": {"nodeId": ".1.140126325567696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126111825280": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126295840064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126295840512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126090243296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "140126120020336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090243744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "140126120025712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090244416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090244640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126325567696"}, {"nodeId": ".2.140126325567696"}, {"nodeId": ".3.140126325567696"}]}], "returnType": {"nodeId": "140126111825728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111825728": {"type": "Union", "items": [{"nodeId": "140126325567696", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126224736640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "140126002035536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "var", "buf_size"]}, "140126002035536": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126002034640": {"type": "Overloaded", "items": [{"nodeId": "140126224737088"}, {"nodeId": "140126224737536"}]}, "140126224737088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010700992"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype"]}, "140126224737536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "140126002035984"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}, "140126002035984": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126224737984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "140126002036432"}], "returnType": {"nodeId": "140126010700992", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010700992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126002036432": {"type": "TypeAlias", "target": {"nodeId": "140126014903280"}}, "140126014903280": {"type": "Union", "items": [{"nodeId": "140126119323216"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126014902944"}]}]}, "140126014902944": {"type": "Union", "items": [{"nodeId": "140126119323216"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}]}, "140126224738432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700992", "args": [{"nodeId": ".1.140126010700992"}, {"nodeId": ".2.140126010700992"}]}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010700992"}]}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126014944112": {"type": "Protocol", "module": "numpy", "simpleName": "_MemMapIOProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308953760"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308954208"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308954656"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308955104"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126308955552"}, "name": "write"}, {"kind": "Variable", "name": "read", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125972788864"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["fileno", "flush", "read", "seek", "tell", "write"]}, "140126308953760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308954208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}], "returnType": {"nodeId": "140126119710384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308954656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126308955104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126308955552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125972788864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014944112"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010284000": {"type": "Concrete", "module": "numpy", "simpleName": "ModuleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119604432"}], "isAbstract": false}, "140126119604432": {"type": "Concrete", "module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119603760": {"type": "Concrete", "module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119324896": {"type": "Concrete", "module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119323552"}], "isAbstract": false}, "140126010284336": {"type": "Concrete", "module": "numpy", "simpleName": "VisibleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119604096"}], "isAbstract": false}, "140126119604096": {"type": "Concrete", "module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126010284672": {"type": "Concrete", "module": "numpy", "simpleName": "ComplexWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119605104"}], "isAbstract": false}, "140126119605104": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126010285008": {"type": "Concrete", "module": "numpy", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119604096"}], "isAbstract": false}, "140126010285344": {"type": "Concrete", "module": "numpy", "simpleName": "TooHardError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119329264"}], "isAbstract": false}, "140126119329264": {"type": "Concrete", "module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126010285680": {"type": "Concrete", "module": "numpy", "simpleName": "AxisError", "members": [{"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006190240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006279216"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994020960"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119593344"}, {"nodeId": "140126119595024"}], "isAbstract": false}, "140126006190240": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126006279216": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140125994020960": {"type": "Overloaded", "items": [{"nodeId": "140126275023392"}, {"nodeId": "140126275023840"}]}, "140126275023392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010285680"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}, "140126275023840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010285680"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994023088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}, "140125994023088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126119593344": {"type": "Concrete", "module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119595024": {"type": "Concrete", "module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119327920"}], "isAbstract": false}, "140126119327920": {"type": "Concrete", "module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126010286016": {"type": "Concrete", "module": "numpy", "simpleName": "errstate", "members": [{"kind": "Variable", "name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010286016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010476128"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "divide", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "over", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "under", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "invalid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275024288"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275024736"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275025184"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126010286016"}], "bases": [{"nodeId": "140126115885936"}], "isAbstract": false}, ".1.140126010286016": {"type": "TypeVar", "varName": "_CallType", "values": [], "upperBound": {"nodeId": "140126010475904"}, "def": "140126010286016", "variance": "INVARIANT"}, "140126010475904": {"type": "Union", "items": [{"nodeId": "140126010475792"}, {"nodeId": "140126014944448", "args": [{"nodeId": "140126119317840"}]}]}, "140126010475792": {"type": "TypeAlias", "target": {"nodeId": "140126090537312"}}, "140126090537312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126010476128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126275024288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286016", "args": [{"nodeId": ".1.140126010286016"}]}, {"nodeId": ".1.140126010286016"}, {"nodeId": "140125994023312"}, {"nodeId": "140125994023536"}, {"nodeId": "140125994023760"}, {"nodeId": "140125994023984"}, {"nodeId": "140125994024208"}], "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"]}, "140125994023312": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994023200"}]}, "140125994023200": {"type": "TypeAlias", "target": {"nodeId": "140126015139600"}}, "140126015139600": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125994023536": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994023424"}]}, "140125994023424": {"type": "TypeAlias", "target": {"nodeId": "140126015139600"}}, "140125994023760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994023648"}]}, "140125994023648": {"type": "TypeAlias", "target": {"nodeId": "140126015139600"}}, "140125994023984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994023872"}]}, "140125994023872": {"type": "TypeAlias", "target": {"nodeId": "140126015139600"}}, "140125994024208": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994024096"}]}, "140125994024096": {"type": "TypeAlias", "target": {"nodeId": "140126015139600"}}, "140126275024736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286016", "args": [{"nodeId": ".1.140126010286016"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126275025184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286016", "args": [{"nodeId": ".1.140126010286016"}]}, {"nodeId": "140125994024320"}, {"nodeId": "140125994024432"}, {"nodeId": "140125994024544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140125994024320": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140125994024432": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119323552"}]}, "140125994024544": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120025376"}]}, "140126115885936": {"type": "Concrete", "module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199487776"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126199487776": {"type": "Function", "typeVars": [".-1.140126199487776"], "argTypes": [{"nodeId": "140126115885936"}, {"nodeId": ".-1.140126199487776"}], "returnType": {"nodeId": ".-1.140126199487776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140126199487776": {"type": "TypeVar", "varName": "_F", "values": [], "upperBound": {"nodeId": "140126128631680"}, "def": "140126199487776", "variance": "INVARIANT"}, "140126128631680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126010703008": {"type": "Concrete", "module": "numpy", "simpleName": "ndenumerate", "members": [{"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010702672", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994021856"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125993970464"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275358496"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140126010703008"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125994021856": {"type": "Overloaded", "items": [{"nodeId": "140126275354912"}, {"nodeId": "140126275355360"}, {"nodeId": "140126275355808"}, {"nodeId": "140126275356256"}, {"nodeId": "140126275356704"}, {"nodeId": "140126275357152"}, {"nodeId": "140126275357600"}]}, "140126275354912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": ".1.140126010703008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, ".1.140126010703008": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126010703008", "variance": "INVARIANT"}, "140126275355360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156096"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140126010282992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156096": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126119317840"}]}]}, "140126275355808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156208"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140126010282656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156208": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126119716096"}]}]}, "140126275356256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156320"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140126010277952"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156320": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126325562992"}]}]}, "140126275356704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156432"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140125994156544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156432": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126119316160"}]}]}, "140125994156544": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126275357152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156656"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140125994156768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156656": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126119316496"}]}]}, "140125994156768": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237344"}]}}, "140126275357600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994156880"}], "returnType": {"nodeId": "140126010703008", "args": [{"nodeId": "140125994156992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140125994156880": {"type": "Union", "items": [{"nodeId": "140126119316832"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126119316832"}]}]}, "140125994156992": {"type": "TypeAlias", "target": {"nodeId": "140126010281312", "args": [{"nodeId": "140126015238240"}, {"nodeId": "140126015239024"}]}}, "140125993970464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010703008", "args": [{"nodeId": ".1.140126010703008"}]}], "returnType": {"nodeId": "140125994157328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994157328": {"type": "Tuple", "items": [{"nodeId": "140125994157104"}, {"nodeId": ".1.140126010703008"}]}, "140125994157104": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140126275358496": {"type": "Function", "typeVars": [".-1.140126275358496"], "argTypes": [{"nodeId": ".-1.140126275358496"}], "returnType": {"nodeId": ".-1.140126275358496"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126275358496": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126275358496", "variance": "INVARIANT"}, "140126010286352": {"type": "Concrete", "module": "numpy", "simpleName": "ndindex", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994022976"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275359840"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275360288"}, "name": "__next__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125994022976": {"type": "Overloaded", "items": [{"nodeId": "140126275358944"}, {"nodeId": "140126275359392"}]}, "140126275358944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286352"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119710384"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126275359392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286352"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "shape"]}, "140126275359840": {"type": "Function", "typeVars": [".-1.140126275359840"], "argTypes": [{"nodeId": ".-1.140126275359840"}], "returnType": {"nodeId": ".-1.140126275359840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126275359840": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126275359840", "variance": "INVARIANT"}, "140126275360288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286352"}], "returnType": {"nodeId": "140125994157552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994157552": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140126010286688": {"type": "Concrete", "module": "numpy", "simpleName": "DataSource", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "destpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275360736"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275361184"}, "name": "__del__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275361632"}, "name": "abspath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275362080"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275362528"}, "name": "open"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126275360736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286688"}, {"nodeId": "140125994157664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "destpath"]}, "140125994157664": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}]}, "140126275361184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126275361632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286688"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126275362080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286688"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126275362528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010286688"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140125994157776"}, {"nodeId": "140125994157888"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "mode", "encoding", "newline"]}, "140125994157776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125994157888": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126119713072": {"type": "Concrete", "module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090540224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090541344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090542240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090707008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090707680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090708352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090709024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090709696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090710368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090711040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090711712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090712384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090713056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090713728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090714400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090715072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090715744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090716416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090717088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090717760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090718656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090719776"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126119713072"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119713072"}]}], "isAbstract": true}, "140126090540224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119713072": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119713072", "variance": "INVARIANT"}, "140126090541344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090542240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090707008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090707680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090708352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090709024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090709696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126119713072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126090710368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090711040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126119713072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126090711712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".1.140126119713072"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126090712384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126090713056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090713728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090714400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126106771840"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126106771840": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126090715072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090715744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": ".1.140126119713072"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126090716416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126090717088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": ".1.140126119713072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090717760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119713072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126090718656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126090719776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126119713072"}]}, {"nodeId": "140126106771952"}, {"nodeId": "140126106772064"}, {"nodeId": "140126106772176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126106771952": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126106772064": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126106772176": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126010287024": {"type": "Concrete", "module": "numpy", "simpleName": "broadcast", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275362976"}, "name": "__new__"}, {"kind": "Variable", "name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964323520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iters", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964324192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964324416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964324640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "numiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964324864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964325088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964325312"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275366560"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275367008"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275367456"}, "name": "reset"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126275362976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994158112"}], "returnType": {"nodeId": "140126010287024"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "140125994158112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125964323520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964324192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126010702672", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964324416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964324640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964324864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964325088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140125994157440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994157440": {"type": "TypeAlias", "target": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}}, "140125964325312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126275366560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126275367008": {"type": "Function", "typeVars": [".-1.140126275367008"], "argTypes": [{"nodeId": ".-1.140126275367008"}], "returnType": {"nodeId": ".-1.140126275367008"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126275367008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126275367008", "variance": "INVARIANT"}, "140126275367456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010287360": {"type": "Concrete", "module": "numpy", "simpleName": "busdaycalendar", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weekmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "holidays", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126275367904"}, "name": "__new__"}, {"kind": "Variable", "name": "weekmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964325984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "holidays", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964326656"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126275367904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994158560"}, {"nodeId": "140125994158784"}], "returnType": {"nodeId": "140126010287360"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "weekmask", "holidays"]}, "140125994158560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994158784": {"type": "Union", "items": [{"nodeId": "140125994158672"}, {"nodeId": "140126023539664"}, {"nodeId": "140126023538320", "args": [{"nodeId": "140126023539664"}]}]}, "140125994158672": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126023539664": {"type": "Concrete", "module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023539664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023539664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203755456"}, "name": "__new__"}, {"kind": "Variable", "name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031585216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031586336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031586560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031586784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031587456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031587008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031587904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031588128"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190652544"}, "name": "ctime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190653440"}, "name": "strftime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190653888"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190654336"}, "name": "isoformat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190654784"}, "name": "timetuple"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190655232"}, "name": "toordinal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190655680"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190656128"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190656576"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190657024"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190657472"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190657920"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190658368"}, "name": "__radd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031342032"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190662400"}, "name": "weekday"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190662848"}, "name": "isoweekday"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190663296"}, "name": "isocalendar"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126203755456": {"type": "Function", "typeVars": [".-1.140126203755456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126203755456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}, ".-1.140126203755456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126203755456", "variance": "INVARIANT"}, "140126031585216": {"type": "Function", "typeVars": [".-1.140126031585216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": ".-1.140126031585216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126031585216": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031585216", "variance": "INVARIANT"}, "140126031586336": {"type": "Function", "typeVars": [".-1.140126031586336"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126031586336"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126031586336": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031586336", "variance": "INVARIANT"}, "140126031586560": {"type": "Function", "typeVars": [".-1.140126031586560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126031586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126031586560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031586560", "variance": "INVARIANT"}, "140126031586784": {"type": "Function", "typeVars": [".-1.140126031586784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126031586784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126031586784": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031586784", "variance": "INVARIANT"}, "140126031587456": {"type": "Function", "typeVars": [".-1.140126031587456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126031587456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}, ".-1.140126031587456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031587456", "variance": "INVARIANT"}, "140126031587008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031587904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031588128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190652544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190653440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126190653888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126190654336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190654784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126031344608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031344608": {"type": "TypeAlias", "target": {"nodeId": "140126035581904"}}, "140126035581904": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126190655232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190655680": {"type": "Function", "typeVars": [".-1.140126190655680"], "argTypes": [{"nodeId": ".-1.140126190655680"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126190655680"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}, ".-1.140126190655680": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190655680", "variance": "INVARIANT"}, "140126190656128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190656576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190657024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190657472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190657920": {"type": "Function", "typeVars": [".-1.140126190657920"], "argTypes": [{"nodeId": ".-1.140126190657920"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": ".-1.140126190657920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126190657920": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190657920", "variance": "INVARIANT"}, "140126190658368": {"type": "Function", "typeVars": [".-1.140126190658368"], "argTypes": [{"nodeId": ".-1.140126190658368"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": ".-1.140126190658368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126190658368": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190658368", "variance": "INVARIANT"}, "140126031342032": {"type": "Overloaded", "items": [{"nodeId": "140126190658816"}, {"nodeId": "140126190659264"}, {"nodeId": "140126190659712"}]}, "140126190658816": {"type": "Function", "typeVars": [".-1.140126190658816"], "argTypes": [{"nodeId": ".-1.140126190658816"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": ".-1.140126190658816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126190658816": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190658816", "variance": "INVARIANT"}, "140126190659264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126023540672": {"type": "Concrete", "module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540672"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190788096"}, "name": "__new__"}, {"kind": "Variable", "name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031718528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031719200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031719424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031719648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031719872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031720096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031720768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031720992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031722560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031722112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031722784"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190937344"}, "name": "timestamp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190937792"}, "name": "utctimetuple"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190938240"}, "name": "date"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190938688"}, "name": "time"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190939136"}, "name": "timetz"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126031579168"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126031579392"}, "name": "astimezone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190940928"}, "name": "isoformat"}, {"kind": "Variable", "name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031724128"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190941824"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190942272"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190942720"}, "name": "dst"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190943168"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190943616"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191042624"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191043072"}, "name": "__gt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031345616"}, "items": [{"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__sub__"}], "typeVars": [], "bases": [{"nodeId": "140126023539664"}], "isAbstract": false}, "140126190788096": {"type": "Function", "typeVars": [".-1.140126190788096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126031346064"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126190788096"}, "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"]}, "140126031346064": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126023538656": {"type": "Concrete", "module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031581184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031581632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031581856"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203753216"}, "name": "fromutc"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126031581184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538656"}, {"nodeId": "140126031343152"}], "returnType": {"nodeId": "140126031343264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031343152": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126031343264": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126031581632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538656"}, {"nodeId": "140126031343376"}], "returnType": {"nodeId": "140126031343488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031343376": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126031343488": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126031581856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538656"}, {"nodeId": "140126031343600"}], "returnType": {"nodeId": "140126031343712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031343600": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126031343712": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126203753216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538656"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126023540672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126190788096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190788096", "variance": "INVARIANT"}, "140126031718528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031719200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031719424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031719648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031719872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126031346176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031346176": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126031720096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031720768": {"type": "Function", "typeVars": [".-1.140126031720768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316496"}, {"nodeId": "140126031346288"}], "returnType": {"nodeId": ".-1.140126031720768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}, "140126031346288": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, ".-1.140126031720768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031720768", "variance": "INVARIANT"}, "140126031720992": {"type": "Function", "typeVars": [".-1.140126031720992"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": ".-1.140126031720992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126031720992": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031720992", "variance": "INVARIANT"}, "140126031722560": {"type": "Function", "typeVars": [".-1.140126031722560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126031346400"}], "returnType": {"nodeId": ".-1.140126031722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}, "140126031346400": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, ".-1.140126031722560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031722560", "variance": "INVARIANT"}, "140126031722112": {"type": "Function", "typeVars": [".-1.140126031722112"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126031722112"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126031722112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031722112", "variance": "INVARIANT"}, "140126031722784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126023539664"}, {"nodeId": "140126023540000"}, {"nodeId": "140126031346512"}], "returnType": {"nodeId": "140126023540672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}, "140126023540000": {"type": "Concrete", "module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023540336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126031405664"}, "name": "__new__"}, {"kind": "Variable", "name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031591040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031708896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031709344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031709568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031709792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031710016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190782272"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190782720"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190783168"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190783616"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190784064"}, "name": "isoformat"}, {"kind": "Variable", "name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031710240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190785408"}, "name": "strftime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190785856"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190786304"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190786752"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190787200"}, "name": "dst"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126190784512"}, "name": "replace"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126031405664": {"type": "Function", "typeVars": [".-1.140126031405664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126031344944"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126031405664"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}, "140126031344944": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, ".-1.140126031405664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031405664", "variance": "INVARIANT"}, "140126031591040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031708896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031709344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031709568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031709792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126031345056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031345056": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126031710016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190782272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190782720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190783168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190783616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190784064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}, "140126031710240": {"type": "Function", "typeVars": [".-1.140126031710240"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126031710240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".-1.140126031710240": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031710240", "variance": "INVARIANT"}, "140126190785408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126190785856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126190786304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126031345168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031345168": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126190786752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126031345280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031345280": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126190787200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540000"}], "returnType": {"nodeId": "140126031345392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031345392": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126190784512": {"type": "Function", "typeVars": [".-1.140126190784512"], "argTypes": [{"nodeId": ".-1.140126190784512"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126031345504"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126190784512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}, ".-1.140126190784512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126190784512", "variance": "INVARIANT"}, "140126031345504": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126031346512": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126190937344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190937792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126031346624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031346624": {"type": "TypeAlias", "target": {"nodeId": "140126035581904"}}, "140126190938240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126023539664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190938688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126023540000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190939136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126023540000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031579168": {"type": "Function", "typeVars": [".-1.140126031579168"], "argTypes": [{"nodeId": ".-1.140126031579168"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126031346736"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126031579168"}, "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"]}, ".-1.140126031579168": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031579168", "variance": "INVARIANT"}, "140126031346736": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126031579392": {"type": "Function", "typeVars": [".-1.140126031579392"], "argTypes": [{"nodeId": ".-1.140126031579392"}, {"nodeId": "140126031346848"}], "returnType": {"nodeId": ".-1.140126031579392"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}, ".-1.140126031579392": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126031579392", "variance": "INVARIANT"}, "140126031346848": {"type": "Union", "items": [{"nodeId": "140126023538656"}, {"nodeId": "N"}]}, "140126190940928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}, "140126031724128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126023540672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}, "140126190941824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126031346960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031346960": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126190942272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126031347072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031347072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126190942720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126031347184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031347184": {"type": "Union", "items": [{"nodeId": "140126023540336"}, {"nodeId": "N"}]}, "140126190943168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126190943616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126191042624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126191043072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023540672"}, {"nodeId": "140126023540672"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126031345616": {"type": "Overloaded", "items": [{"nodeId": "140126191043520"}, {"nodeId": "140126191043968"}]}, "140126191043520": {"type": "Function", "typeVars": [".-1.140126191043520"], "argTypes": [{"nodeId": ".-1.140126191043520"}, {"nodeId": "140126023540336"}], "returnType": {"nodeId": ".-1.140126191043520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191043520": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191043520", "variance": "INVARIANT"}, "140126191043968": {"type": "Function", "typeVars": [".-1.140126191043968"], "argTypes": [{"nodeId": ".-1.140126191043968"}, {"nodeId": ".-1.140126191043968"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191043968": {"type": "TypeVar", "varName": "_D", "values": [], "upperBound": {"nodeId": "140126023539664"}, "def": "140126191043968", "variance": "INVARIANT"}, "140126190659712": {"type": "Function", "typeVars": [".-1.140126190659712"], "argTypes": [{"nodeId": ".-1.140126190659712"}, {"nodeId": ".-1.140126190659712"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126190659712": {"type": "TypeVar", "varName": "_D", "values": [], "upperBound": {"nodeId": "140126023539664"}, "def": "140126190659712", "variance": "INVARIANT"}, "140126190662400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190662848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126190663296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023539664"}], "returnType": {"nodeId": "140126031344832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031344832": {"type": "TypeAlias", "target": {"nodeId": "140126031342256"}}, "140126031342256": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140125964325984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964326656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010703344": {"type": "Concrete", "module": "numpy", "simpleName": "finfo", "members": [{"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010703344"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "eps", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epsneg", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "machep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maxexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "negep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nmant", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "precision", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "smallest_subnormal", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126010703344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "smallest_normal", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964327552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tiny", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964328448"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994024656"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}], "typeVars": [{"nodeId": ".1.140126010703344"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126010703344": {"type": "TypeVar", "varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140126010280976", "args": [{"nodeId": "A"}]}, "def": "140126010703344", "variance": "INVARIANT"}, "140125964327552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010703344", "args": [{"nodeId": ".1.140126010703344"}]}], "returnType": {"nodeId": ".1.140126010703344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964328448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010703344", "args": [{"nodeId": ".1.140126010703344"}]}], "returnType": {"nodeId": ".1.140126010703344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994024656": {"type": "Overloaded", "items": [{"nodeId": "140126275370144"}, {"nodeId": "140126275370592"}, {"nodeId": "140126270259488"}]}, "140126275370144": {"type": "Function", "typeVars": [".-1.140126275370144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994159344"}], "returnType": {"nodeId": "140126010703344", "args": [{"nodeId": "140126010280976", "args": [{"nodeId": ".-1.140126275370144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140125994159344": {"type": "Union", "items": [{"nodeId": "140126010280640", "args": [{"nodeId": ".-1.140126275370144"}]}, {"nodeId": "0"}]}, ".-1.140126275370144": {"type": "TypeVar", "varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140126014478976"}, "def": "140126275370144", "variance": "INVARIANT"}, "140126275370592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994159456"}], "returnType": {"nodeId": "140126010703344", "args": [{"nodeId": "140125994159568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140125994159456": {"type": "Union", "items": [{"nodeId": "140126119316832"}, {"nodeId": "140126119316496"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125994159568": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126015237344"}]}}, "140126270259488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010703344", "args": [{"nodeId": "140126010280976", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140126010287696": {"type": "Concrete", "module": "numpy", "simpleName": "iinfo", "members": [{"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010702336", "args": [{"nodeId": ".1.140126010287696"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964329120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964329568"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994158896"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}], "typeVars": [{"nodeId": ".1.140126010287696"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126010287696": {"type": "TypeVar", "varName": "_IntType", "values": [], "upperBound": {"nodeId": "140126010279296", "args": [{"nodeId": "A"}]}, "def": "140126010287696", "variance": "INVARIANT"}, "140125964329120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287696", "args": [{"nodeId": ".1.140126010287696"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964329568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010287696", "args": [{"nodeId": ".1.140126010287696"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994158896": {"type": "Overloaded", "items": [{"nodeId": "140126270260832"}, {"nodeId": "140126270261280"}, {"nodeId": "140126270261728"}]}, "140126270260832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994160016"}], "returnType": {"nodeId": "140126010287696", "args": [{"nodeId": ".1.140126010287696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140125994160016": {"type": "Union", "items": [{"nodeId": ".1.140126010287696"}, {"nodeId": "0"}]}, "140126270261280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994160128"}], "returnType": {"nodeId": "140126010287696", "args": [{"nodeId": "140125994160240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140125994160128": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "0"}]}, "140125994160240": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126270261728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010287696", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}, "140126010288032": {"type": "Concrete", "module": "numpy", "simpleName": "format_parser", "members": [{"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270262176"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126270262176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288032"}, {"nodeId": "140125994160464"}, {"nodeId": "140125994160576"}, {"nodeId": "140125994160688"}, {"nodeId": "140126325562992"}, {"nodeId": "140125994160912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "formats", "names", "titles", "aligned", "byteorder"]}, "140125994160464": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994160576": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125994160688": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125994160912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994160800"}]}, "140125994160800": {"type": "TypeAlias", "target": {"nodeId": "140126015230624"}}, "140126010288368": {"type": "Concrete", "module": "numpy", "simpleName": "recarray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994159120"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270263520"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270263968"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270264416"}, "name": "__setattr__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994161472"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994163376"}, "items": [{"kind": "Variable", "name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "field"}], "typeVars": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}], "isAbstract": false}, "140125994159120": {"type": "Overloaded", "items": [{"nodeId": "140126270262624"}, {"nodeId": "140126270263072"}]}, "140126270262624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994161696"}, {"nodeId": "N"}, {"nodeId": "140125994161024"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994159792"}, {"nodeId": "140125994161136"}, {"nodeId": "140125994162032"}, {"nodeId": "140125994162592"}, {"nodeId": "140125994161248"}, {"nodeId": "140126325562992"}, {"nodeId": "140125994162256"}], "returnType": {"nodeId": "140126010288368", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010288704"}]}]}, "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"]}, "140125994161696": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994161024": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994161920"}]}, "140125994161920": {"type": "TypeAlias", "target": {"nodeId": "140126006131760"}}, "140125994159792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994162480"}]}, "140125994162480": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994161136": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994162032": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125994162592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140125994161248": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994162368"}]}, "140125994162368": {"type": "TypeAlias", "target": {"nodeId": "140126015230624"}}, "140125994162256": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126010288704": {"type": "Concrete", "module": "numpy", "simpleName": "record", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270268000"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270268448"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270268896"}, "name": "pprint"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994165840"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126010281984"}], "isAbstract": false}, "140126270268000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270268448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288704"}, {"nodeId": "140126119317840"}, {"nodeId": "140125994165728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}, "140125994165728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270268896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994165840": {"type": "Overloaded", "items": [{"nodeId": "140126270269344"}, {"nodeId": "140126270269792"}]}, "140126270269344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288704"}, {"nodeId": "140125994166512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994166512": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119710384"}]}, "140126270269792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288704"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126010288704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270263072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994161584"}, {"nodeId": "140125994163040"}, {"nodeId": "140125994163488"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994163264"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140125994162928"}], "returnType": {"nodeId": "140126010288368", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "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"]}, "140125994161584": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994163040": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994163488": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994162704"}]}, "140125994162704": {"type": "TypeAlias", "target": {"nodeId": "140126006131760"}}, "140125994163264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994163712"}]}, "140125994163712": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994162928": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126270263520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".1.140126010288368": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010288368", "variance": "INVARIANT"}, ".2.140126010288368": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010288368", "variance": "COVARIANT"}, "140126270263968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270264416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140125994163152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}, "140125994163152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994161472": {"type": "Overloaded", "items": [{"nodeId": "140126270264864"}, {"nodeId": "140126270265312"}, {"nodeId": "140126270265760"}, {"nodeId": "140126270266208"}, {"nodeId": "140126270266656"}]}, "140126270264864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140125994164720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994164720": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140125994164384"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125994162144"}]}]}, "140125994164384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994162144": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140125994162816"}]}, "140125994162816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270265312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}]}, {"nodeId": "140125994164832"}], "returnType": {"nodeId": "140126010288368", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010288368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994164832": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994164496"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125994164272"}]}]}, "140125994164496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994164272": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125994164048"}, {"nodeId": "140126119710384"}]}, "140125994164048": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270265760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140125994165504"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010288368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994165504": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994165392"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125994165168"}]}]}, "140125994165392": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994165168": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125994164944"}, {"nodeId": "140126119710384"}]}, "140125994164944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270266208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270266656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010288704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994163376": {"type": "Overloaded", "items": [{"nodeId": "140126270267104"}, {"nodeId": "140126270267552"}]}, "140126270267104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140125994166064"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "attr", "val"]}, "140125994166064": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126270267552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010288368", "args": [{"nodeId": ".1.140126010288368"}, {"nodeId": ".2.140126010288368"}]}, {"nodeId": "140125994166288"}, {"nodeId": "140125994166400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}, "140125994166288": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140125994166400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010289040": {"type": "Concrete", "module": "numpy", "simpleName": "nditer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "op_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "op_dtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "casting", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "op_axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "itershape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffersize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270270240"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270270688"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270271136"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270271584"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270272032"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270272480"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270272928"}, "name": "__copy__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994166736"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270274272"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270274720"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270275168"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270456096"}, "name": "debug_print"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270456544"}, "name": "enable_external_loop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270456992"}, "name": "iternext"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270457440"}, "name": "remove_axis"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270457888"}, "name": "remove_multi_index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270458336"}, "name": "reset"}, {"kind": "Variable", "name": "dtypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964400032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finished", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964400480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_delayed_bufalloc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964400704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964400928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964401152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964401376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterationneedsapi", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964401600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964401824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterrange", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964402048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itersize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964402272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "itviews", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964550208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964550432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964550656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964550880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "operands", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964551104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964551328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964551552"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126270270240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994167296"}, {"nodeId": "140125994167520"}, {"nodeId": "140125994167744"}, {"nodeId": "140125994168080"}, {"nodeId": "140125994168192"}, {"nodeId": "140125994168304"}, {"nodeId": "140125994168416"}, {"nodeId": "140125994168640"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "140126010289040"}, "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"]}, "140125994167296": {"type": "Union", "items": [{"nodeId": "140125994167072"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140125994167184"}]}]}, "140125994167072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994167184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994167520": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140125994167408"}]}]}, "140125994167408": {"type": "TypeAlias", "target": {"nodeId": "140126010479376"}}, "140126010479376": {"type": "Union", "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"}]}, "140125994167744": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126325570384", "args": [{"nodeId": "140125994167632"}]}]}]}, "140125994167632": {"type": "TypeAlias", "target": {"nodeId": "140126010481280"}}, "140126010481280": {"type": "Union", "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"}]}, "140125994168080": {"type": "Union", "items": [{"nodeId": "140125994167856"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140125994167968"}]}]}, "140125994167856": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994167968": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994168192": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125994168304": {"type": "TypeAlias", "target": {"nodeId": "140126015234544"}}, "140125994168416": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119710384"}]}]}]}, "140125994168640": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994168528"}]}, "140125994168528": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270270688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126010289040"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270271136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}, {"nodeId": "140125994168752"}, {"nodeId": "140125994168864"}, {"nodeId": "140125994169984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140125994168752": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140125994168864": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119323552"}]}, "140125994169984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120025376"}]}, "140126270271584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126010289040"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270272032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270272480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270272928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126010289040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994166736": {"type": "Overloaded", "items": [{"nodeId": "140126270273376"}, {"nodeId": "140126270273824"}]}, "140126270273376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270273824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270274272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}, {"nodeId": "140125994168976"}, {"nodeId": "140125994170208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140125994168976": {"type": "Union", "items": [{"nodeId": "140126119318512"}, {"nodeId": "140126119710384"}]}, "140125994170208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270274720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270275168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126010289040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270456096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270456544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270456992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270457440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}, {"nodeId": "140126119710384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270457888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270458336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964400032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964400480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964400704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964400928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964401152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964401376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964401600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964401824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964402048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964402272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964550208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964550432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964550656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964550880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964551104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964551328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964551552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289040"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010289376": {"type": "Concrete", "module": "numpy", "simpleName": "memmap", "members": [{"kind": "Variable", "name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006279328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994166848"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270467744"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270468192"}, "name": "__array_wrap__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270468640"}, "name": "flush"}], "typeVars": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}]}], "isAbstract": false}, "140126006279328": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140125994166848": {"type": "Overloaded", "items": [{"nodeId": "140126270466400"}, {"nodeId": "140126270466848"}, {"nodeId": "140126270467296"}]}, "140126270466400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994170992"}, {"nodeId": "0"}, {"nodeId": "140125994171104"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994171216"}, {"nodeId": "140125994171328"}], "returnType": {"nodeId": "140126010289376", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125994171552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}, "140125994170992": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126014944112"}]}, "140125994171104": {"type": "TypeAlias", "target": {"nodeId": "140126010481504"}}, "140126010481504": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140125994171216": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}]}, "140125994171328": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125994171552": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126270466848": {"type": "Function", "typeVars": [".-1.140126270466848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994172000"}, {"nodeId": "0"}, {"nodeId": "140125994171664"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994171776"}, {"nodeId": "140125994172112"}], "returnType": {"nodeId": "140126010289376", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": ".-1.140126270466848"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}, "140125994172000": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126014944112"}]}, "140125994171664": {"type": "TypeAlias", "target": {"nodeId": "140126010481504"}}, "140125994171776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}]}, "140125994172112": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, ".-1.140126270466848": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140126270466848", "variance": "INVARIANT"}, "140126270467296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994287168"}, {"nodeId": "140125994287280"}, {"nodeId": "140125994287392"}, {"nodeId": "140126119316160"}, {"nodeId": "140125994287504"}, {"nodeId": "140125994287616"}], "returnType": {"nodeId": "140126010289376", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "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"]}, "140125994287168": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126014944112"}]}, "140125994287280": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994287392": {"type": "TypeAlias", "target": {"nodeId": "140126010481504"}}, "140125994287504": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}]}, "140125994287616": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126270467744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289376", "args": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".1.140126010289376": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010289376", "variance": "INVARIANT"}, ".2.140126010289376": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010289376", "variance": "COVARIANT"}, "140126270468192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289376", "args": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}]}, {"nodeId": "140126010289376", "args": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}]}, {"nodeId": "140125994288176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "array", "context"]}, "140125994288176": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994288624"}]}, "140125994288624": {"type": "Tuple", "items": [{"nodeId": "140126010283328"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140126270468640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289376", "args": [{"nodeId": ".1.140126010289376"}, {"nodeId": ".2.140126010289376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010289712": {"type": "Concrete", "module": "numpy", "simpleName": "vectorize", "members": [{"kind": "Variable", "name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019518048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006279552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010476016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716768", "args": [{"nodeId": "140126010477024"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010476688"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270469088"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270469536"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126019518048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126006279552": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126010476016": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126010477024": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126010476688": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126270469088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289712"}, {"nodeId": "140125994303552"}, {"nodeId": "140125994288960"}, {"nodeId": "140125994287952"}, {"nodeId": "140125994289184"}, {"nodeId": "140126325562992"}, {"nodeId": "140125994288736"}], "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"]}, "140125994303552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140125994288960": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140125994288288"}]}]}, "140125994288288": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140125994287952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125994289184": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140125994289072"}]}]}, "140125994289072": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140125994288736": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126270469536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010289712"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126010290048": {"type": "Concrete", "module": "numpy", "simpleName": "poly1d", "members": [{"kind": "Variable", "name": "variable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964555584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "order", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964556032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "o", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964556256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "roots", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964556480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "r", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964556704"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994169872"}, "items": [{"kind": "Variable", "name": "coeffs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964556928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "coeffs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "coeffs"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125993827824"}, "items": [{"kind": "Variable", "name": "c", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964557152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "c"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994289632"}, "items": [{"kind": "Variable", "name": "coef", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964557376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "coef"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994290640"}, "items": [{"kind": "Variable", "name": "coefficients", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125964557600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "coefficients", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "coefficients"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994291312"}, "items": [{"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__array__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994291872"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "c_or_r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "variable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270592992"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270593440"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270593888"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270594336"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270594784"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270595232"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270595680"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270596128"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270596576"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270597024"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270597472"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270597920"}, "name": "__div__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270598368"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270598816"}, "name": "__rdiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270599264"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270599712"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270600160"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270600608"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270601056"}, "name": "deriv"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270601504"}, "name": "integ"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140125964555584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964556032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964556256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964556480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964556704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994169872": {"type": "Overloaded", "items": [{"nodeId": "140126270587168"}]}, "140126270587168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964556928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125993827824": {"type": "Overloaded", "items": [{"nodeId": "140126270588064"}]}, "140126270588064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964557152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994289632": {"type": "Overloaded", "items": [{"nodeId": "140126270588960"}]}, "140126270588960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964557376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994290640": {"type": "Overloaded", "items": [{"nodeId": "140126270589856"}]}, "140126270589856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125964557600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125994291312": {"type": "Overloaded", "items": [{"nodeId": "140126270590752"}, {"nodeId": "140126270591200"}]}, "140126270590752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "t"]}, "140126270591200": {"type": "Function", "typeVars": [".-1.140126270591200"], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": ".-1.140126270591200"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126270591200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "t"]}, ".-1.140126270591200": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126270591200", "variance": "INVARIANT"}, "140125994291872": {"type": "Overloaded", "items": [{"nodeId": "140126270591648"}, {"nodeId": "140126270592096"}, {"nodeId": "140126270592544"}]}, "140126270591648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994292992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}, "140125994292992": {"type": "TypeAlias", "target": {"nodeId": "140126010931376"}}, "140126270592096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}, "140126270592544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994293216"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}, "140125994293216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270592992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994293664"}, {"nodeId": "140126325562992"}, {"nodeId": "140125994292880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "c_or_r", "r", "variable"]}, "140125994293664": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994292880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126270593440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270593888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270594336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270594784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994293888"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994293888": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270595232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294000"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270595680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294112"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270596128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294224"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294224": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270596576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294336"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294336": {"type": "TypeAlias", "target": {"nodeId": "140126010931264"}}, "140126270597024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994293552"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994293552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270597472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294560"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270597920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294672"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140125994294672": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270598368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294784"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270598816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994294896"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994294896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270599264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994295008"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994295008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270599712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270600160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140126119316160"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126270600608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126270601056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994295344"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, "140125994295344": {"type": "Union", "items": [{"nodeId": "140126119709040"}, {"nodeId": "140126119710384"}]}, "140126270601504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290048"}, {"nodeId": "140125994295456"}, {"nodeId": "140125994295792"}], "returnType": {"nodeId": "140126010290048"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k"]}, "140125994295456": {"type": "Union", "items": [{"nodeId": "140126119709040"}, {"nodeId": "140126119710384"}]}, "140125994295792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994295568"}, {"nodeId": "140125994295680"}]}, "140125994295568": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994295680": {"type": "TypeAlias", "target": {"nodeId": "140126011183328"}}, "140126010290384": {"type": "Concrete", "module": "numpy", "simpleName": "matrix", "members": [{"kind": "Variable", "name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "subtype", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270601952"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270602400"}, "name": "__array_finalize__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994292432"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270719584"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270720032"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270720480"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270720928"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270721376"}, "name": "__ipow__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994297136"}, "items": [{"kind": "Variable", "name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sum"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994298368"}, "items": [{"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "mean"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994300608"}, "items": [{"kind": "Variable", "name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "std"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994301504"}, "items": [{"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "var"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994301616"}, "items": [{"kind": "Variable", "name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "prod"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994171888"}, "items": [{"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "any"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994403312"}, "items": [{"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "all"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994402080"}, "items": [{"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "max"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994404656"}, "items": [{"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "min"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994404544"}, "items": [{"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "argmax"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994405104"}, "items": [{"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "argmin"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994405776"}, "items": [{"kind": "Variable", "name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "ptp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270967584"}, "name": "squeeze"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270968032"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270968480"}, "name": "ravel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270968928"}, "name": "flatten"}, {"kind": "Variable", "name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125960519264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "I", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125960661792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "A", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125960662688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "A1", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125960662912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "H", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125960663136"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270971616"}, "name": "getT"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270972064"}, "name": "getI"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270972512"}, "name": "getA"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270972960"}, "name": "getA1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270973408"}, "name": "getH"}], "typeVars": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "isAbstract": false}, "140126270601952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994296128"}, {"nodeId": "140125994293776"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "data", "dtype", "copy"]}, "140125994296128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994293776": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270602400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".1.140126010290384": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010290384", "variance": "INVARIANT"}, ".2.140126010290384": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010290384", "variance": "COVARIANT"}, "140125994292432": {"type": "Overloaded", "items": [{"nodeId": "140126270602848"}, {"nodeId": "140126270718240"}, {"nodeId": "140126270718688"}, {"nodeId": "140126270719136"}]}, "140126270602848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994296464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994296464": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140125994297024"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125994297696"}]}]}, "140125994297024": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994297696": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140125994296688"}]}, "140125994296688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270718240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994296016"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994296016": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994296800"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140125994297472"}]}]}, "140125994296800": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994297472": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119318512"}, {"nodeId": "140126119323216"}, {"nodeId": "140125994296352"}, {"nodeId": "140126119710384"}]}, "140125994296352": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270718688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270719136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010281984"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126270719584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994298032"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994298032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270720032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994298480"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994298480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270720480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994298816"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994298816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270720928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994298928"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994298928": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270721376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994299264"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994299264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994297136": {"type": "Overloaded", "items": [{"nodeId": "140126270721824"}, {"nodeId": "140126270722272"}, {"nodeId": "140126270722720"}]}, "140126270721824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "140125994299152"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994299152": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270722272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994299936"}, {"nodeId": "140125994300272"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994299936": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994300272": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270722720": {"type": "Function", "typeVars": [".-1.140126270722720"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994300720"}, {"nodeId": "140125994300832"}, {"nodeId": ".-1.140126270722720"}], "returnType": {"nodeId": ".-1.140126270722720"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994300720": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994299824"}]}, "140125994299824": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994300832": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126270722720": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270722720", "variance": "INVARIANT"}, "140125994298368": {"type": "Overloaded", "items": [{"nodeId": "140126270723168"}, {"nodeId": "140126270723616"}, {"nodeId": "140126270724064"}]}, "140126270723168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "140125994299376"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994299376": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270723616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994300160"}, {"nodeId": "140125994300048"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994300160": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994300048": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270724064": {"type": "Function", "typeVars": [".-1.140126270724064"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994301952"}, {"nodeId": "140125994301840"}, {"nodeId": ".-1.140126270724064"}], "returnType": {"nodeId": ".-1.140126270724064"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994301952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994301728"}]}, "140125994301728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994301840": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126270724064": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270724064", "variance": "INVARIANT"}, "140125994300608": {"type": "Overloaded", "items": [{"nodeId": "140126270724512"}, {"nodeId": "140126270724960"}, {"nodeId": "140126270725408"}]}, "140126270724512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "140125994299712"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994299712": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270724960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994301392"}, {"nodeId": "140125994301056"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994301392": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994301056": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270725408": {"type": "Function", "typeVars": [".-1.140126270725408"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994303072"}, {"nodeId": "140125994302960"}, {"nodeId": ".-1.140126270725408"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": ".-1.140126270725408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994303072": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994302848"}]}, "140125994302848": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994302960": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126270725408": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270725408", "variance": "INVARIANT"}, "140125994301504": {"type": "Overloaded", "items": [{"nodeId": "140126270725856"}, {"nodeId": "140126270726304"}, {"nodeId": "140126270726752"}]}, "140126270725856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "140125994302624"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994302624": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270726304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994302736"}, {"nodeId": "140125994302176"}, {"nodeId": "N"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994302736": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994302176": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270726752": {"type": "Function", "typeVars": [".-1.140126270726752"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994402752"}, {"nodeId": "140125994402640"}, {"nodeId": ".-1.140126270726752"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": ".-1.140126270726752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}, "140125994402752": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994401856"}]}, "140125994401856": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994402640": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126270726752": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270726752", "variance": "INVARIANT"}, "140125994301616": {"type": "Overloaded", "items": [{"nodeId": "140126270727200"}, {"nodeId": "140126270727648"}, {"nodeId": "140126270728096"}]}, "140126270727200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "140125994402528"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994402528": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270727648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994402416"}, {"nodeId": "140125994401968"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994402416": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994401968": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126270728096": {"type": "Function", "typeVars": [".-1.140126270728096"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994403760"}, {"nodeId": "140125994403648"}, {"nodeId": ".-1.140126270728096"}], "returnType": {"nodeId": ".-1.140126270728096"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140125994403760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994403536"}]}, "140125994403536": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994403648": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, ".-1.140126270728096": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270728096", "variance": "INVARIANT"}, "140125994171888": {"type": "Overloaded", "items": [{"nodeId": "140126270728544"}, {"nodeId": "140126270728992"}, {"nodeId": "140126270729440"}]}, "140126270728544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140126270728992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994402192"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994402192": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270729440": {"type": "Function", "typeVars": [".-1.140126270729440"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994403424"}, {"nodeId": ".-1.140126270729440"}], "returnType": {"nodeId": ".-1.140126270729440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994403424": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994404096"}]}, "140125994404096": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270729440": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270729440", "variance": "INVARIANT"}, "140125994403312": {"type": "Overloaded", "items": [{"nodeId": "140126270729888"}, {"nodeId": "140126270730336"}, {"nodeId": "140126270730784"}]}, "140126270729888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010277952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140126270730336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994403200"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994403200": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270730784": {"type": "Function", "typeVars": [".-1.140126270730784"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994402864"}, {"nodeId": ".-1.140126270730784"}], "returnType": {"nodeId": ".-1.140126270730784"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994402864": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994404320"}]}, "140125994404320": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270730784": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270730784", "variance": "INVARIANT"}, "140125994402080": {"type": "Overloaded", "items": [{"nodeId": "140125994311168"}, {"nodeId": "140126270731680"}, {"nodeId": "140126270732128"}]}, "140125994311168": {"type": "Function", "typeVars": [".-1.140125994311168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140125994311168"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, ".-1.140125994311168": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125994311168", "variance": "INVARIANT"}, "140126270731680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994404432"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994404432": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270732128": {"type": "Function", "typeVars": [".-1.140126270732128"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994404992"}, {"nodeId": ".-1.140126270732128"}], "returnType": {"nodeId": ".-1.140126270732128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994404992": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994404768"}]}, "140125994404768": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270732128": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270732128", "variance": "INVARIANT"}, "140125994404656": {"type": "Overloaded", "items": [{"nodeId": "140125994311616"}, {"nodeId": "140126270733024"}, {"nodeId": "140126270733472"}]}, "140125994311616": {"type": "Function", "typeVars": [".-1.140125994311616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140125994311616"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, ".-1.140125994311616": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125994311616", "variance": "INVARIANT"}, "140126270733024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994405328"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994405328": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270733472": {"type": "Function", "typeVars": [".-1.140126270733472"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994405664"}, {"nodeId": ".-1.140126270733472"}], "returnType": {"nodeId": ".-1.140126270733472"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994405664": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994405552"}]}, "140125994405552": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270733472": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270733472", "variance": "INVARIANT"}, "140125994404544": {"type": "Overloaded", "items": [{"nodeId": "140125994312064"}, {"nodeId": "140126270964000"}, {"nodeId": "140126270964448"}]}, "140125994312064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140125994406000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994406000": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126270964000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994406112"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125994406336"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994406112": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994406336": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126270964448": {"type": "Function", "typeVars": [".-1.140126270964448"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994406560"}, {"nodeId": ".-1.140126270964448"}], "returnType": {"nodeId": ".-1.140126270964448"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994406560": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994406448"}]}, "140125994406448": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270964448": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270964448", "variance": "INVARIANT"}, "140125994405104": {"type": "Overloaded", "items": [{"nodeId": "140125994312288"}, {"nodeId": "140126270965344"}, {"nodeId": "140126270965792"}]}, "140125994312288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140125994406896"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994406896": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126270965344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994407008"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125994407232"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994407008": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994407232": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235440"}]}}, "140126270965792": {"type": "Function", "typeVars": [".-1.140126270965792"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994407456"}, {"nodeId": ".-1.140126270965792"}], "returnType": {"nodeId": ".-1.140126270965792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994407456": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994407344"}]}, "140125994407344": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270965792": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270965792", "variance": "INVARIANT"}, "140125994405776": {"type": "Overloaded", "items": [{"nodeId": "140125994312512"}, {"nodeId": "140126270966688"}, {"nodeId": "140126270967136"}]}, "140125994312512": {"type": "Function", "typeVars": [".-1.140125994312512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140125994312512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, ".-1.140125994312512": {"type": "TypeVar", "varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140126014946464"}, "def": "140125994312512", "variance": "INVARIANT"}, "140126270966688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994407792"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994407792": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270967136": {"type": "Function", "typeVars": [".-1.140126270967136"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994408128"}, {"nodeId": ".-1.140126270967136"}], "returnType": {"nodeId": ".-1.140126270967136"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}, "140125994408128": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994408016"}]}, "140125994408016": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, ".-1.140126270967136": {"type": "TypeVar", "varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126270967136", "variance": "INVARIANT"}, "140126270967584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994408352"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}, "140125994408352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125994408240"}]}, "140125994408240": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126270968032": {"type": "Function", "typeVars": [".-1.140126270968032"], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126014945120", "args": [{"nodeId": ".-1.140126270968032"}]}]}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140126270968032"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126270968032": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126270968032", "variance": "INVARIANT"}, "140126270968480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994408688"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140125994408688": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126270968928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, {"nodeId": "140125994409248"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140125994409248": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140125960519264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125960661792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125960662688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125960662912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125960663136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270971616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270972064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270972512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270972960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126270973408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290384", "args": [{"nodeId": ".1.140126010290384"}, {"nodeId": ".2.140126010290384"}]}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010290720": {"type": "Concrete", "module": "numpy", "simpleName": "chararray", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994406672"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270974752"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270975200"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270975648"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126270976096"}, "name": "__mod__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994409360"}, "items": [{"kind": "Variable", "name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__eq__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994412496"}, "items": [{"kind": "Variable", "name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ne__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994411936"}, "items": [{"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ge__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994413392"}, "items": [{"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__le__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994414176"}, "items": [{"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__gt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994414960"}, "items": [{"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__lt__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994415744"}, "items": [{"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__add__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994416528"}, "items": [{"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__radd__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994302288"}, "items": [{"kind": "Variable", "name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "center"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989257280"}, "items": [{"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125994316320"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125994316768"}, "name": "encode"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989258064"}, "items": [{"kind": "Variable", "name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "endswith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271085856"}, "name": "expandtabs"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989260864"}, "items": [{"kind": "Variable", "name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "find"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989263440"}, "items": [{"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "index"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989265120"}, "items": [{"kind": "Variable", "name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "join"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989266800"}, "items": [{"kind": "Variable", "name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "ljust"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989266688"}, "items": [{"kind": "Variable", "name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "lstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989267472"}, "items": [{"kind": "Variable", "name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "partition"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989268592"}, "items": [{"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "replace"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989269488"}, "items": [{"kind": "Variable", "name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rfind"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989271840"}, "items": [{"kind": "Variable", "name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rindex"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989272736"}, "items": [{"kind": "Variable", "name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rjust"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125994417312"}, "items": [{"kind": "Variable", "name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rpartition"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989308112"}, "items": [{"kind": "Variable", "name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rsplit"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989309120"}, "items": [{"kind": "Variable", "name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rstrip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989311360"}, "items": [{"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271262944"}, "name": "splitlines"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989311248"}, "items": [{"kind": "Variable", "name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "startswith"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989313824"}, "items": [{"kind": "Variable", "name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "strip"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989315616"}, "items": [{"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "translate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271266080"}, "name": "zfill"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271266528"}, "name": "capitalize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271266976"}, "name": "title"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271267424"}, "name": "swapcase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271267872"}, "name": "lower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271268320"}, "name": "upper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271268768"}, "name": "isalnum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271269216"}, "name": "isalpha"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271269664"}, "name": "isdigit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271270112"}, "name": "islower"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271270560"}, "name": "isspace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271271008"}, "name": "istitle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271271456"}, "name": "isupper"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271271904"}, "name": "isnumeric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271272352"}, "name": "isdecimal"}], "typeVars": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "isAbstract": false}, "140125994406672": {"type": "Overloaded", "items": [{"nodeId": "140126270973856"}, {"nodeId": "140126270974304"}]}, "140126270973856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994410368"}, {"nodeId": "140125994410480"}, {"nodeId": "0"}, {"nodeId": "140125994410704"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994410816"}, {"nodeId": "140125994410928"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282656"}]}]}, "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"]}, "140125994410368": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994410480": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140126119709040"}]}, "140125994410704": {"type": "TypeAlias", "target": {"nodeId": "140126006131760"}}, "140125994410816": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994410928": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126270974304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994411488"}, {"nodeId": "140125994411600"}, {"nodeId": "0"}, {"nodeId": "140125994411264"}, {"nodeId": "140126119710384"}, {"nodeId": "140125994411376"}, {"nodeId": "140125994411712"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282992"}]}]}, "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"]}, "140125994411488": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994411600": {"type": "Union", "items": [{"nodeId": "140126119710384"}, {"nodeId": "140126119709040"}]}, "140125994411264": {"type": "TypeAlias", "target": {"nodeId": "140126006131760"}}, "140125994411376": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125994411712": {"type": "TypeAlias", "target": {"nodeId": "140126015229840"}}, "140126270974752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".1.140126010290720": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010290720", "variance": "INVARIANT"}, ".2.140126010290720": {"type": "TypeVar", "varName": "_CharDType", "values": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010282992"}]}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010282656"}]}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126010290720", "variance": "INVARIANT"}, "140126270975200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140125994412272"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994412272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270975648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140125994412160"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994412160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270976096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994409360": {"type": "Overloaded", "items": [{"nodeId": "140125994313856"}, {"nodeId": "140126270976992"}]}, "140125994313856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994412832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994412832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270976992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994413168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994413168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994412496": {"type": "Overloaded", "items": [{"nodeId": "140125994314304"}, {"nodeId": "140126270977888"}]}, "140125994314304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994413616"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994413616": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270977888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994413952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994413952": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994411936": {"type": "Overloaded", "items": [{"nodeId": "140125994314528"}, {"nodeId": "140126270978784"}]}, "140125994314528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994414400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994414400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270978784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994414736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994414736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994413392": {"type": "Overloaded", "items": [{"nodeId": "140125994314752"}, {"nodeId": "140126270979680"}]}, "140125994314752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994415184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994415184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126270979680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994415520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994415520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994414176": {"type": "Overloaded", "items": [{"nodeId": "140125994314976"}, {"nodeId": "140126271079136"}]}, "140125994314976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994415968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994415968": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271079136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994416304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994416304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994414960": {"type": "Overloaded", "items": [{"nodeId": "140125994315200"}, {"nodeId": "140126271080032"}]}, "140125994315200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994416752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994416752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271080032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994417088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994417088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994415744": {"type": "Overloaded", "items": [{"nodeId": "140125994315424"}, {"nodeId": "140126271080928"}]}, "140125994315424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994417536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994417536": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271080928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125994417872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125994417872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994416528": {"type": "Overloaded", "items": [{"nodeId": "140125994315648"}, {"nodeId": "140126271081824"}]}, "140125994315648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989257504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125989257504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271081824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989257840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140125989257840": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994302288": {"type": "Overloaded", "items": [{"nodeId": "140125994315872"}, {"nodeId": "140126271082720"}]}, "140125994315872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989258288"}, {"nodeId": "140125989258400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989258288": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989258400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271082720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989258848"}, {"nodeId": "140125989258624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989258848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989258624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989257280": {"type": "Overloaded", "items": [{"nodeId": "140125994316096"}, {"nodeId": "140126271083616"}]}, "140125994316096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989259072"}, {"nodeId": "140125989259408"}, {"nodeId": "140125989259632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989259072": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989259408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989259632": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989259520"}]}, "140125989259520": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271083616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989260192"}, {"nodeId": "140125989259184"}, {"nodeId": "140125989260416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989260192": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989259184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989260416": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989260304"}]}, "140125989260304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994316320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989260976"}, {"nodeId": "140125989260080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140125989260976": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125989260080": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125994316768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989261312"}, {"nodeId": "140125989261424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140125989261312": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125989261424": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140125989258064": {"type": "Overloaded", "items": [{"nodeId": "140125994316992"}, {"nodeId": "140126271085408"}]}, "140125994316992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989261872"}, {"nodeId": "140125989261984"}, {"nodeId": "140125989262208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "140125989261872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989261984": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989262208": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989262096"}]}, "140125989262096": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271085408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989262656"}, {"nodeId": "140125989261648"}, {"nodeId": "140125989262880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}, "140125989262656": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989261648": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989262880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989262768"}]}, "140125989262768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271085856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140125989263104"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}, "140125989263104": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989260864": {"type": "Overloaded", "items": [{"nodeId": "140125994317440"}, {"nodeId": "140126271086752"}]}, "140125994317440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989262544"}, {"nodeId": "140125989263664"}, {"nodeId": "140125989263888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989262544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989263664": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989263888": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989263776"}]}, "140125989263776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271086752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989264448"}, {"nodeId": "140125989263552"}, {"nodeId": "140125989264672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989264448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989263552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989264672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989264560"}]}, "140125989264560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989263440": {"type": "Overloaded", "items": [{"nodeId": "140125994313632"}, {"nodeId": "140126271087648"}]}, "140125994313632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989264336"}, {"nodeId": "140125989265344"}, {"nodeId": "140125989265568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989264336": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989265344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989265568": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989265456"}]}, "140125989265456": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271087648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989266128"}, {"nodeId": "140125989265008"}, {"nodeId": "140125989266352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989266128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989265008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989266352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989266240"}]}, "140125989266240": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989265120": {"type": "Overloaded", "items": [{"nodeId": "140125994317664"}, {"nodeId": "140126271088544"}]}, "140125994317664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989266016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140125989266016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271088544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989267248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}, "140125989267248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989266800": {"type": "Overloaded", "items": [{"nodeId": "140125994317888"}, {"nodeId": "140126271089440"}]}, "140125994317888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989267696"}, {"nodeId": "140125989267808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989267696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989267808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271089440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989268256"}, {"nodeId": "140125989268032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989268256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989268032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989266688": {"type": "Overloaded", "items": [{"nodeId": "140125994318112"}, {"nodeId": "140126271090336"}]}, "140125994318112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989268816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989268816": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989268480"}]}, "140125989268480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271090336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989269264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989269264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989269152"}]}, "140125989269152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989267472": {"type": "Overloaded", "items": [{"nodeId": "140125994318336"}, {"nodeId": "140126271091232"}]}, "140125994318336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989269712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140125989269712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271091232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989270048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140125989270048": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989268592": {"type": "Overloaded", "items": [{"nodeId": "140125994318560"}, {"nodeId": "140126271092128"}]}, "140125994318560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989270496"}, {"nodeId": "140125989270608"}, {"nodeId": "140125989270832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}, "140125989270496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989270608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989270832": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989270720"}]}, "140125989270720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271092128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989271280"}, {"nodeId": "140125989270272"}, {"nodeId": "140125989271504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}, "140125989271280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989270272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989271504": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989271392"}]}, "140125989271392": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989269488": {"type": "Overloaded", "items": [{"nodeId": "140125994318784"}, {"nodeId": "140126271093024"}]}, "140125994318784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989271168"}, {"nodeId": "140125989272064"}, {"nodeId": "140125989272288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989271168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989272064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989272288": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989272176"}]}, "140125989272176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271093024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989272848"}, {"nodeId": "140125989271728"}, {"nodeId": "140125989273072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989272848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989271728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989273072": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989272960"}]}, "140125989272960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989271840": {"type": "Overloaded", "items": [{"nodeId": "140125994319008"}, {"nodeId": "140126271093920"}]}, "140125994319008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989306544"}, {"nodeId": "140125989306656"}, {"nodeId": "140125989306880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989306544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989306656": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989306880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989306768"}]}, "140125989306768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271093920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989307440"}, {"nodeId": "140125989307216"}, {"nodeId": "140125989307664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}, "140125989307440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989307216": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989307664": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989307552"}]}, "140125989307552": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989272736": {"type": "Overloaded", "items": [{"nodeId": "140125994319232"}, {"nodeId": "140125994317216"}]}, "140125994319232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989308000"}, {"nodeId": "140125989308336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989308000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989308336": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994317216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989308784"}, {"nodeId": "140125989308560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}, "140125989308784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989308560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994417312": {"type": "Overloaded", "items": [{"nodeId": "140126271258912"}, {"nodeId": "140125994319456"}]}, "140126271258912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989309008"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140125989309008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125994319456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989309568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}, "140125989309568": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989308112": {"type": "Overloaded", "items": [{"nodeId": "140126271259808"}, {"nodeId": "140126271260704"}]}, "140126271259808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989310128"}, {"nodeId": "140125989310352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140125989310128": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989310016"}]}, "140125989310016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989310352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989310240"}]}, "140125989310240": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271260704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989309792"}, {"nodeId": "140125989311024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140125989309792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989310800"}]}, "140125989310800": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989311024": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989310912"}]}, "140125989310912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989309120": {"type": "Overloaded", "items": [{"nodeId": "140125989339200"}, {"nodeId": "140126271261600"}]}, "140125989339200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989311584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989311584": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989310688"}]}, "140125989310688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271261600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989312032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989312032": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989311920"}]}, "140125989311920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989311360": {"type": "Overloaded", "items": [{"nodeId": "140125989339648"}, {"nodeId": "140126271262496"}]}, "140125989339648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989312592"}, {"nodeId": "140125989312816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140125989312592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989312480"}]}, "140125989312480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989312816": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989312704"}]}, "140125989312704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271262496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989312256"}, {"nodeId": "140125989313488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}, "140125989312256": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989313264"}]}, "140125989313264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989313488": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989313376"}]}, "140125989313376": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271262944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140125989313936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}, "140125989313936": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989313712"}]}, "140125989313712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989311248": {"type": "Overloaded", "items": [{"nodeId": "140125989340320"}, {"nodeId": "140126271263840"}]}, "140125989340320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989314272"}, {"nodeId": "140125989314384"}, {"nodeId": "140125989314608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "140125989314272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989314384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989314608": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989314496"}]}, "140125989314496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271263840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989315056"}, {"nodeId": "140125989314048"}, {"nodeId": "140125989315280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}, "140125989315056": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989314048": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989315280": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989315168"}]}, "140125989315168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989313824": {"type": "Overloaded", "items": [{"nodeId": "140125989339424"}, {"nodeId": "140126271264736"}]}, "140125989339424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989315840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989315840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989314944"}]}, "140125989314944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271264736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989316288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}, "140125989316288": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989316176"}]}, "140125989316176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989315616": {"type": "Overloaded", "items": [{"nodeId": "140125989340544"}, {"nodeId": "140126271265632"}]}, "140125989340544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989316736"}, {"nodeId": "140125989316960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}, "140125989316736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989316960": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989316848"}]}, "140125989316848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271265632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140125989317296"}, {"nodeId": "140125989317520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}, "140125989317296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125989317520": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989317408"}]}, "140125989317408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271266080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, {"nodeId": "140125989317744"}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": "A"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}, "140125989317744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126271266528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271266976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271267424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271267872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271268320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271268768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271269216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271269664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271270112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271270560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271271008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271271456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271271904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126271272352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010290720", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": ".2.140126010290720"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010290720"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010291056": {"type": "Protocol", "module": "numpy", "simpleName": "_SupportsDLPack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271272800"}, "name": "__dlpack__"}], "typeVars": [{"nodeId": ".1.140126010291056"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__dlpack__"]}, "140126271272800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010291056", "args": [{"nodeId": ".1.140126010291056"}]}, {"nodeId": "140125989318192"}], "returnType": {"nodeId": "140125989316512"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}, ".1.140126010291056": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126010291056", "variance": "CONTRAVARIANT"}, "140125989318192": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": ".1.140126010291056"}]}, "140125989316512": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126120018992": {"type": "Concrete", "module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119814400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119814624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262586144"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126095090944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126095092064"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126119814400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126119814624": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126262586144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018992"}, {"nodeId": "140126119317840"}, {"nodeId": "140126111813408"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126111813072"}], "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"]}, "140126111813408": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140126119317840"}]}, "140126111813072": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126095090944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018992"}], "returnType": {"nodeId": "140126325564336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325564336": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325565008"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291711296"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126325565008": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119810256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291712192"}, "name": "__init__"}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090151520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090151968"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291714432"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291714880"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126119810256": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126291712192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565008"}, {"nodeId": "140126119317840"}, {"nodeId": "140126111814752"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}, "140126111814752": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126090151520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565008"}], "returnType": {"nodeId": "140126325564336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090151968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565008"}], "returnType": {"nodeId": "140126325564672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325564672": {"type": "Concrete", "module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "name": "__origin__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325565008"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291711744"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126291711744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325564672"}, {"nodeId": "140126325565008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140126291714432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565008"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325564000": {"type": "Concrete", "module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291707264"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291707712"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291708160"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126291707264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325564000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291707712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325564000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291708160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325564000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291714880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565008"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291711296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325564336"}, {"nodeId": "140126325565008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}, "140126095092064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018992"}], "returnType": {"nodeId": "140126325564672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325563664": {"type": "Concrete", "module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128533488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126271274368"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291705920"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291706368"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128533488": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126271274368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563664"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}, {"nodeId": "140126111814864"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "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"]}, "140126111814864": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126291705920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563664"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291706368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563664"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325565344": {"type": "Concrete", "module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291715328"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291715776"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291716224"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291716672"}, "name": "__ror__"}, {"kind": "Variable", "name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119315488"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126291715328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565344"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}, "140126291715776": {"type": "Function", "typeVars": [".-1.140126291715776"], "argTypes": [{"nodeId": "140126325565344"}, {"nodeId": ".-1.140126291715776"}], "returnType": {"nodeId": ".-1.140126291715776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, ".-1.140126291715776": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126291715776", "variance": "INVARIANT"}, "140126291716224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565344"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126291716672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565344"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325564000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325565680": {"type": "Concrete", "module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291718464"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126291718464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325565680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126119708704": {"type": "Concrete", "module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119607792"}], "isAbstract": false}, "140126119607792": {"type": "Concrete", "module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199480832"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199481280"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199481728"}, "name": "__subclasscheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199482176"}, "name": "_dump_registry"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199482624"}, "name": "register"}], "typeVars": [], "bases": [{"nodeId": "140126119315488"}], "isAbstract": false}, "140126119717104": {"type": "Concrete", "module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094512128"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250304896"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250305344"}, "name": "difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250305792"}, "name": "intersection"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250306240"}, "name": "isdisjoint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250306688"}, "name": "issubset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250307136"}, "name": "issuperset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250307584"}, "name": "symmetric_difference"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250308032"}, "name": "union"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250308480"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250308928"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250309376"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250309824"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250310272"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250310720"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250311168"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250311616"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250312064"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250312512"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250312960"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250313408"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119717104"}], "bases": [{"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119717104"}]}], "isAbstract": false}, "140126094512128": {"type": "Overloaded", "items": [{"nodeId": "140126250304000"}, {"nodeId": "140126250304448"}]}, "140126250304000": {"type": "Function", "typeVars": [".-1.140126250304000"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126250304000"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126250304000": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250304000", "variance": "INVARIANT"}, "140126250304448": {"type": "Function", "typeVars": [".-1.140126250304448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": ".-1.140126250304448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, ".1.140126119717104": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119717104", "variance": "COVARIANT"}, ".-1.140126250304448": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250304448", "variance": "INVARIANT"}, "140126250304896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126250305344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250305792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, "140126250306240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250306688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250307136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250307584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250308032": {"type": "Function", "typeVars": [".-1.140126250308032"], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126250308032"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": "140126094514032"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}, ".-1.140126250308032": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250308032", "variance": "INVARIANT"}, "140126094514032": {"type": "Union", "items": [{"nodeId": ".1.140126119717104"}, {"nodeId": ".-1.140126250308032"}]}, "140126250308480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250308928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250309376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250309824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250310272": {"type": "Function", "typeVars": [".-1.140126250310272"], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126250310272"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": "140126094514144"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250310272": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250310272", "variance": "INVARIANT"}, "140126094514144": {"type": "Union", "items": [{"nodeId": ".1.140126119717104"}, {"nodeId": ".-1.140126250310272"}]}, "140126250310720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".1.140126119717104"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250311168": {"type": "Function", "typeVars": [".-1.140126250311168"], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": ".-1.140126250311168"}]}], "returnType": {"nodeId": "140126119717104", "args": [{"nodeId": "140126094514256"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126250311168": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250311168", "variance": "INVARIANT"}, "140126094514256": {"type": "Union", "items": [{"nodeId": ".1.140126119717104"}, {"nodeId": ".-1.140126250311168"}]}, "140126250311616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250312064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250312512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250312960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717104", "args": [{"nodeId": ".1.140126119717104"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126250313408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126199480832": {"type": "Function", "typeVars": [".-1.140126199480832"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126199480832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}, ".-1.140126199480832": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126199480832", "variance": "INVARIANT"}, "140126199481280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119607792"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}, "140126199481728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119607792"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140126199482176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119607792"}, {"nodeId": "140126098813584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}, "140126098813584": {"type": "Union", "items": [{"nodeId": "140126110990400", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126199482624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119607792"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}, "140126325566352": {"type": "Protocol", "module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111641024"}, "items": [{"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__round__"}], "typeVars": [{"nodeId": ".1.140126325566352"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__round__"]}, "140126111641024": {"type": "Overloaded", "items": [{"nodeId": "140126295834688"}, {"nodeId": "140126295835136"}]}, "140126295834688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566352", "args": [{"nodeId": ".1.140126325566352"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325566352": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325566352", "variance": "COVARIANT"}, "140126295835136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566352", "args": [{"nodeId": ".1.140126325566352"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126325566352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126119711056": {"type": "Protocol", "module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090233664"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__hash__"]}, "140126090233664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119711056"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325568032": {"type": "Protocol", "module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090245312"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325568032"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__await__"]}, "140126090245312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325568032"}]}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140126325568032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325568032": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325568032", "variance": "COVARIANT"}, "140126325568368": {"type": "Concrete", "module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090247776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090346560"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090346784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090347008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090347232"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111824832"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}, {"kind": "Variable", "name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090347456"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}], "bases": [{"nodeId": "140126325568032", "args": [{"nodeId": ".3.140126325568368"}]}], "isAbstract": true}, "140126090247776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}], "returnType": {"nodeId": "140126106763552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325568368": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325568368", "variance": "COVARIANT"}, ".2.140126325568368": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325568368", "variance": "CONTRAVARIANT"}, ".3.140126325568368": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325568368", "variance": "COVARIANT"}, "140126106763552": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126090346560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}], "returnType": {"nodeId": "140126120020336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090346784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}], "returnType": {"nodeId": "140126120025712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090347008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090347232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}, {"nodeId": ".2.140126325568368"}], "returnType": {"nodeId": ".1.140126325568368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126111824832": {"type": "Overloaded", "items": [{"nodeId": "140126295845440"}, {"nodeId": "140126295845888"}]}, "140126295845440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}, {"nodeId": "0"}, {"nodeId": "140126106763776"}, {"nodeId": "140126106763888"}], "returnType": {"nodeId": ".1.140126325568368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126106763776": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126106763888": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126295845888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126106764000"}], "returnType": {"nodeId": ".1.140126325568368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126106764000": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126090347456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126325568368"}, {"nodeId": ".2.140126325568368"}, {"nodeId": ".3.140126325568368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119711392": {"type": "Concrete", "module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140126119711392"}, {"nodeId": ".2.140126119711392"}, {"nodeId": ".3.140126119711392"}, {"nodeId": ".4.140126119711392"}], "bases": [{"nodeId": "140126325568032", "args": [{"nodeId": ".3.140126119711392"}]}, {"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126119711392"}, {"nodeId": ".2.140126119711392"}, {"nodeId": ".3.140126119711392"}]}], "isAbstract": true}, ".1.140126119711392": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119711392", "variance": "COVARIANT"}, ".2.140126119711392": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119711392", "variance": "CONTRAVARIANT"}, ".3.140126119711392": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119711392", "variance": "COVARIANT"}, ".4.140126119711392": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119711392", "variance": "INVARIANT"}, "140126325568704": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090349024"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325568704"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__aiter__"]}, "140126090349024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325568704", "args": [{"nodeId": ".1.140126325568704"}]}], "returnType": {"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126325568704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325568704": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325568704", "variance": "COVARIANT"}, "140126325569040": {"type": "Protocol", "module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090351712"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295847680"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140126325569040"}], "bases": [{"nodeId": "140126325568704", "args": [{"nodeId": ".1.140126325569040"}]}], "protocolMembers": ["__aiter__", "__anext__"]}, "140126090351712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126325569040"}]}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325569040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325569040": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325569040", "variance": "COVARIANT"}, "140126295847680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126325569040"}]}], "returnType": {"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126325569040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126325569376": {"type": "Concrete", "module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295848128"}, "name": "__anext__"}, {"kind": "Variable", "name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090353952"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111824944"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126295849920"}, "name": "aclose"}, {"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090353504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090354848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090355072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090355296"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}], "bases": [{"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126325569376"}]}], "isAbstract": true}, "140126295848128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325569376"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126325569376": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325569376", "variance": "COVARIANT"}, ".2.140126325569376": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126325569376", "variance": "CONTRAVARIANT"}, "140126090353952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}, {"nodeId": ".2.140126325569376"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325569376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126111824944": {"type": "Overloaded", "items": [{"nodeId": "140126295849024"}, {"nodeId": "140126295849472"}]}, "140126295849024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}, {"nodeId": "0"}, {"nodeId": "140126106764224"}, {"nodeId": "140126106764336"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325569376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126106764224": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126106764336": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126295849472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126106764448"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126325569376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126106764448": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126295849920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090353504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090354848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "140126120020336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090355072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "140126120025712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090355296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126325569376"}, {"nodeId": ".2.140126325569376"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119713408": {"type": "Concrete", "module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090721120"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}], "isAbstract": true}, "140126090721120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713408"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126119713744": {"type": "Concrete", "module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090722688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090854464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090854688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090854912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090855136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090855360"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119713072", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": true}, "140126090722688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090854464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090854688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "140126106772288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126106772288": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126090854912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090855136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090855360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}], "returnType": {"nodeId": "140126119713744"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126119714416": {"type": "Concrete", "module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106771504"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090858048"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261802624"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261803520"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140126106771504": {"type": "Overloaded", "items": [{"nodeId": "140126261801280"}, {"nodeId": "140126261801728"}]}, "140126261801280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714416"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126106774752"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140126106774752": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126261801728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714416"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140126090858048": {"type": "Function", "typeVars": [".-1.140126090858048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140126090858048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140126090858048": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126090858048", "variance": "INVARIANT"}, "140126261802624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714416"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261803520": {"type": "Function", "typeVars": [".-1.140126261803520"], "argTypes": [{"nodeId": ".-1.140126261803520"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126261803520"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140126261803520": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261803520", "variance": "INVARIANT"}, "140126119714752": {"type": "Concrete", "module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261803968"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261804416"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261936192"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261936640"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261937088"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261937536"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261937984"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261938432"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261938880"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261939328"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}], "isAbstract": true}, "140126261803968": {"type": "Function", "typeVars": [".-1.140126261803968"], "argTypes": [{"nodeId": ".-1.140126261803968"}], "returnType": {"nodeId": ".-1.140126261803968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126261803968": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261803968", "variance": "INVARIANT"}, "140126261804416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714752"}, {"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140126261936192": {"type": "Function", "typeVars": [".-1.140126261936192"], "argTypes": [{"nodeId": "140126119714752"}, {"nodeId": "0"}, {"nodeId": ".-1.140126261936192"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140126261936192": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261936192", "variance": "INVARIANT"}, "140126261936640": {"type": "Function", "typeVars": [".-1.140126261936640"], "argTypes": [{"nodeId": ".-1.140126261936640"}, {"nodeId": ".-1.140126261936640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126261936640": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261936640", "variance": "INVARIANT"}, "140126261937088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714752"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126261937536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714752"}], "returnType": {"nodeId": "140126119715760", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261937984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714752"}], "returnType": {"nodeId": "140126119715088", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261938432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119714752"}], "returnType": {"nodeId": "140126119715424", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126261938880": {"type": "Function", "typeVars": [".-1.140126261938880"], "argTypes": [{"nodeId": ".-1.140126261938880"}, {"nodeId": ".-1.140126261938880"}], "returnType": {"nodeId": ".-1.140126261938880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126261938880": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261938880", "variance": "INVARIANT"}, "140126261939328": {"type": "Function", "typeVars": [".-1.140126261939328"], "argTypes": [{"nodeId": ".-1.140126261939328"}, {"nodeId": ".-1.140126261939328"}], "returnType": {"nodeId": ".-1.140126261939328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126261939328": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126261939328", "variance": "INVARIANT"}, "140126119314480": {"type": "Concrete", "module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120020336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128528000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128527440"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261939776"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261940672"}, "name": "_evaluate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126261941568"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128528000": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126128527440": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126261939776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314480"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126106775424"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}, "140126106775424": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126261940672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314480"}, {"nodeId": "140126106775648"}, {"nodeId": "140126106775872"}, {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126106776096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}, "140126106775648": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126106775872": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126106776096": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126261941568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314480"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126325563328": {"type": "Concrete", "module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048386656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120020336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128536960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048469280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048469952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126249932992"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126048386656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563328"}], "returnType": {"nodeId": "140126094327504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094327504": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126120019664"}]}, {"nodeId": "N"}]}, "140126120019664": {"type": "Concrete", "module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262589504"}, "name": "__init__"}, {"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126262589504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120019664"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126128536960": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126048469280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563328"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048469952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563328"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126249932992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325563328"}, {"nodeId": "140126094508208"}, {"nodeId": "140126094508320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140126094508208": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "N"}]}, "140126094508320": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "N"}]}, "140126119314816": {"type": "Concrete", "module": "builtins", "simpleName": "staticmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053011680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053011456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291773248"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291773696"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053010784"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291774592"}, "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126119314816"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126053011680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}], "returnType": {"nodeId": "140126098302432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119314816": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119314816", "variance": "COVARIANT"}, "140126098302432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119314816"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126053011456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126291773248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}, {"nodeId": "140126098301984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098301984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119314816"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126291773696": {"type": "Function", "typeVars": [".-1.140126291773696"], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}, {"nodeId": ".-1.140126291773696"}, {"nodeId": "140126099126448"}], "returnType": {"nodeId": "140126098307808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140126291773696": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126291773696", "variance": "INVARIANT"}, "140126099126448": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098307808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119314816"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126053010784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}], "returnType": {"nodeId": "140126098307584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098307584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119314816"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126291774592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119314816"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119314816"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126119315152": {"type": "Concrete", "module": "builtins", "simpleName": "classmethod", "members": [{"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053010336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053009888"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098308480"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291776384"}, "name": "__get__"}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__wrapped__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126053009216"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126119315152"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126053010336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119315152"}]}], "returnType": {"nodeId": "140126098308256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119315152": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119315152", "variance": "COVARIANT"}, "140126098308256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119315152"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126053009888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119315152"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098308480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119315152"}]}, {"nodeId": "140126098308032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126098308032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119315152"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126291776384": {"type": "Function", "typeVars": [".-1.140126291776384"], "argTypes": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119315152"}]}, {"nodeId": ".-1.140126291776384"}, {"nodeId": "140126099127232"}], "returnType": {"nodeId": "140126099308608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, ".-1.140126291776384": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126291776384", "variance": "INVARIANT"}, "140126099127232": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126099308608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119315152"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126053009216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119315152"}]}], "returnType": {"nodeId": "140126099308832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126099308832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119315152"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126119315824": {"type": "Concrete", "module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126099127792"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126099127792": {"type": "Overloaded", "items": [{"nodeId": "140126291786688"}, {"nodeId": "140126291787136"}, {"nodeId": "140126262247488"}]}, "140126291786688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126291787136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315824"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126262247488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119315824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119717440": {"type": "Concrete", "module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250313856"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250314304"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250314752"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250315200"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126119717440"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": "140126110984768"}]}], "isAbstract": false}, "140126250313856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717440", "args": [{"nodeId": ".1.140126119717440"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119717440"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}, ".1.140126119717440": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119717440", "variance": "INVARIANT"}, "140126250314304": {"type": "Function", "typeVars": [".-1.140126250314304"], "argTypes": [{"nodeId": ".-1.140126250314304"}], "returnType": {"nodeId": ".-1.140126250314304"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126250314304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126250314304", "variance": "INVARIANT"}, "140126250314752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717440", "args": [{"nodeId": ".1.140126119717440"}]}], "returnType": {"nodeId": "140126094514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094514592": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": ".1.140126119717440"}]}, "140126250315200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126110984768": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": ".1.140126119717440"}]}, "140126119319856": {"type": "Concrete", "module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048830176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048830624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048830848"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094512464"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250317888"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250318336"}, "name": "index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250318784"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126250319232"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245175360"}, "name": "__iter__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094513920"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245176704"}, "name": "__reversed__"}], "typeVars": [], "bases": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126048830176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048830624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126048830848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126094512464": {"type": "Overloaded", "items": [{"nodeId": "140126250316992"}, {"nodeId": "140126250317440"}]}, "140126250316992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250317440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126250317888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250318336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126250318784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126250319232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126245175360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094513920": {"type": "Overloaded", "items": [{"nodeId": "140126245175808"}, {"nodeId": "140126245176256"}]}, "140126245175808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126120017984"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126245176256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": "140126119319856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126245176704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319856"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126119320192": {"type": "Concrete", "module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111395600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111398176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119807344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245177152"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245177600"}, "name": "getter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245178048"}, "name": "setter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245178496"}, "name": "deleter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245178944"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245179392"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245179840"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111395600": {"type": "Union", "items": [{"nodeId": "140126128562784"}, {"nodeId": "N"}]}, "140126128562784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126111398176": {"type": "Union", "items": [{"nodeId": "140126128555168"}, {"nodeId": "N"}]}, "140126128555168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126119807344": {"type": "Union", "items": [{"nodeId": "140126128629440"}, {"nodeId": "N"}]}, "140126128629440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126245177152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "140126094515040"}, {"nodeId": "140126094515376"}, {"nodeId": "140126094515712"}, {"nodeId": "140126094515936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}, "140126094515040": {"type": "Union", "items": [{"nodeId": "140126099322720"}, {"nodeId": "N"}]}, "140126099322720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094515376": {"type": "Union", "items": [{"nodeId": "140126099323168"}, {"nodeId": "N"}]}, "140126099323168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126094515712": {"type": "Union", "items": [{"nodeId": "140126099323392"}, {"nodeId": "N"}]}, "140126099323392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126094515936": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126245177600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "140126099322944"}], "returnType": {"nodeId": "140126119320192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099322944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126245178048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "140126099322496"}], "returnType": {"nodeId": "140126119320192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099322496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126245178496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "140126099323616"}], "returnType": {"nodeId": "140126119320192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126099323616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126245178944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "A"}, {"nodeId": "140126094516720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126094516720": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "N"}]}, "140126245179392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126245179840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320192"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126119320528": {"type": "Concrete", "module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111293712": {"type": "Protocol", "module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245183872"}, "name": "__fspath__"}], "typeVars": [{"nodeId": ".1.140126111293712"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__fspath__"]}, "140126245183872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111293712", "args": [{"nodeId": ".1.140126111293712"}]}], "returnType": {"nodeId": ".1.140126111293712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126111293712": {"type": "TypeVar", "varName": "AnyStr_co", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126111293712", "variance": "COVARIANT"}, "140126119320864": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245184768"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140126119320864"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__anext__"]}, "140126245184768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119320864", "args": [{"nodeId": ".1.140126119320864"}]}], "returnType": {"nodeId": ".1.140126119320864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119320864": {"type": "TypeVar", "varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140126325568032", "args": [{"nodeId": "A"}]}, "def": "140126119320864", "variance": "COVARIANT"}, "140126119717776": {"type": "Concrete", "module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094517952"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245356928"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245357376"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140126119717776"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119717776"}]}], "isAbstract": false}, "140126094517952": {"type": "Overloaded", "items": [{"nodeId": "140126245355584"}, {"nodeId": "140126245356032"}, {"nodeId": "140126245356480"}]}, "140126245355584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717776", "args": [{"nodeId": ".1.140126119717776"}]}, {"nodeId": "N"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126094520304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140126119717776": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119717776", "variance": "INVARIANT"}, "140126094520304": {"type": "Union", "items": [{"nodeId": ".1.140126119717776"}, {"nodeId": "N"}]}, "140126245356032": {"type": "Function", "typeVars": [".-1.140126245356032"], "argTypes": [{"nodeId": "140126119717776", "args": [{"nodeId": ".1.140126119717776"}]}, {"nodeId": "140126094754080"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245356032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126094754080": {"type": "Function", "typeVars": [".-1.140126094754080"], "argTypes": [{"nodeId": ".-1.140126094754080"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126094754080": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094754080", "variance": "INVARIANT"}, ".-1.140126245356032": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245356032", "variance": "INVARIANT"}, "140126245356480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717776", "args": [{"nodeId": ".1.140126119717776"}]}, {"nodeId": "140126094753856"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126119717776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126094753856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": ".1.140126119717776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126245356928": {"type": "Function", "typeVars": [".-1.140126245356928"], "argTypes": [{"nodeId": ".-1.140126245356928"}], "returnType": {"nodeId": ".-1.140126245356928"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126245356928": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245356928", "variance": "INVARIANT"}, "140126245357376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119717776", "args": [{"nodeId": ".1.140126119717776"}]}], "returnType": {"nodeId": ".1.140126119717776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119321200": {"type": "Protocol", "module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245364096"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126119321200"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__"]}, "140126245364096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119321200", "args": [{"nodeId": ".1.140126119321200"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126119321200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126119321200": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119321200", "variance": "COVARIANT"}, "140126119718112": {"type": "Concrete", "module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094520416"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245371264"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245470272"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140126119718112"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119718112"}]}], "isAbstract": false}, "140126094520416": {"type": "Overloaded", "items": [{"nodeId": "140126245368576"}, {"nodeId": "140126245369024"}, {"nodeId": "140126245369472"}, {"nodeId": "140126245369920"}, {"nodeId": "140126245370368"}, {"nodeId": "140126245370816"}]}, "140126245368576": {"type": "Function", "typeVars": [".-1.140126245368576"], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094755872"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245368576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, ".1.140126119718112": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119718112", "variance": "INVARIANT"}, "140126094755872": {"type": "Function", "typeVars": [".-1.140126094755872"], "argTypes": [{"nodeId": ".-1.140126094755872"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126094755872": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755872", "variance": "INVARIANT"}, ".-1.140126245368576": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245368576", "variance": "INVARIANT"}, "140126245369024": {"type": "Function", "typeVars": [".-1.140126245369024", ".-2.140126245369024"], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094755200"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245369024"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245369024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140126094755200": {"type": "Function", "typeVars": [".-1.140126094755200", ".-2.140126094755200"], "argTypes": [{"nodeId": ".-1.140126094755200"}, {"nodeId": ".-2.140126094755200"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126094755200": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755200", "variance": "INVARIANT"}, ".-2.140126094755200": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755200", "variance": "INVARIANT"}, ".-1.140126245369024": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369024", "variance": "INVARIANT"}, ".-2.140126245369024": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369024", "variance": "INVARIANT"}, "140126245369472": {"type": "Function", "typeVars": [".-1.140126245369472", ".-2.140126245369472", ".-3.140126245369472"], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094755424"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245369472"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245369472"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245369472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140126094755424": {"type": "Function", "typeVars": [".-1.140126094755424", ".-2.140126094755424", ".-3.140126094755424"], "argTypes": [{"nodeId": ".-1.140126094755424"}, {"nodeId": ".-2.140126094755424"}, {"nodeId": ".-3.140126094755424"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".-1.140126094755424": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755424", "variance": "INVARIANT"}, ".-2.140126094755424": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755424", "variance": "INVARIANT"}, ".-3.140126094755424": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094755424", "variance": "INVARIANT"}, ".-1.140126245369472": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369472", "variance": "INVARIANT"}, ".-2.140126245369472": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369472", "variance": "INVARIANT"}, ".-3.140126245369472": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369472", "variance": "INVARIANT"}, "140126245369920": {"type": "Function", "typeVars": [".-1.140126245369920", ".-2.140126245369920", ".-3.140126245369920", ".-4.140126245369920"], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094756096"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245369920"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245369920"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245369920"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-4.140126245369920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140126094756096": {"type": "Function", "typeVars": [".-1.140126094756096", ".-2.140126094756096", ".-3.140126094756096", ".-4.140126094756096"], "argTypes": [{"nodeId": ".-1.140126094756096"}, {"nodeId": ".-2.140126094756096"}, {"nodeId": ".-3.140126094756096"}, {"nodeId": ".-4.140126094756096"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, ".-1.140126094756096": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756096", "variance": "INVARIANT"}, ".-2.140126094756096": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756096", "variance": "INVARIANT"}, ".-3.140126094756096": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756096", "variance": "INVARIANT"}, ".-4.140126094756096": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756096", "variance": "INVARIANT"}, ".-1.140126245369920": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369920", "variance": "INVARIANT"}, ".-2.140126245369920": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369920", "variance": "INVARIANT"}, ".-3.140126245369920": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369920", "variance": "INVARIANT"}, ".-4.140126245369920": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245369920", "variance": "INVARIANT"}, "140126245370368": {"type": "Function", "typeVars": [".-1.140126245370368", ".-2.140126245370368", ".-3.140126245370368", ".-4.140126245370368", ".-5.140126245370368"], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094756320"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245370368"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245370368"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245370368"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-4.140126245370368"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-5.140126245370368"}]}], "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]}, "140126094756320": {"type": "Function", "typeVars": [".-1.140126094756320", ".-2.140126094756320", ".-3.140126094756320", ".-4.140126094756320", ".-5.140126094756320"], "argTypes": [{"nodeId": ".-1.140126094756320"}, {"nodeId": ".-2.140126094756320"}, {"nodeId": ".-3.140126094756320"}, {"nodeId": ".-4.140126094756320"}, {"nodeId": ".-5.140126094756320"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}, ".-1.140126094756320": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756320", "variance": "INVARIANT"}, ".-2.140126094756320": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756320", "variance": "INVARIANT"}, ".-3.140126094756320": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756320", "variance": "INVARIANT"}, ".-4.140126094756320": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756320", "variance": "INVARIANT"}, ".-5.140126094756320": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126094756320", "variance": "INVARIANT"}, ".-1.140126245370368": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245370368", "variance": "INVARIANT"}, ".-2.140126245370368": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245370368", "variance": "INVARIANT"}, ".-3.140126245370368": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245370368", "variance": "INVARIANT"}, ".-4.140126245370368": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245370368", "variance": "INVARIANT"}, ".-5.140126245370368": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245370368", "variance": "INVARIANT"}, "140126245370816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}, {"nodeId": "140126094756544"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "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"]}, "140126094756544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126245371264": {"type": "Function", "typeVars": [".-1.140126245371264"], "argTypes": [{"nodeId": ".-1.140126245371264"}], "returnType": {"nodeId": ".-1.140126245371264"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126245371264": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245371264", "variance": "INVARIANT"}, "140126245470272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718112", "args": [{"nodeId": ".1.140126119718112"}]}], "returnType": {"nodeId": ".1.140126119718112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111294048": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245481024"}, "name": "flush"}], "typeVars": [{"nodeId": ".1.140126111294048"}], "bases": [{"nodeId": "140126110990400", "args": [{"nodeId": ".1.140126111294048"}]}], "protocolMembers": ["flush", "write"]}, "140126245481024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111294048", "args": [{"nodeId": ".1.140126111294048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126111294048": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126111294048", "variance": "CONTRAVARIANT"}, "140126119321536": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245482368"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140126119321536"}, {"nodeId": ".2.140126119321536"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__pow__"]}, "140126245482368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119321536", "args": [{"nodeId": ".1.140126119321536"}, {"nodeId": ".2.140126119321536"}]}, {"nodeId": ".1.140126119321536"}], "returnType": {"nodeId": ".2.140126119321536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126119321536": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119321536", "variance": "CONTRAVARIANT"}, ".2.140126119321536": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119321536", "variance": "COVARIANT"}, "140126119321872": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245482816"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140126119321872"}, {"nodeId": ".2.140126119321872"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__pow__"]}, "140126245482816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119321872", "args": [{"nodeId": ".1.140126119321872"}, {"nodeId": ".2.140126119321872"}]}, {"nodeId": ".1.140126119321872"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140126119321872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, ".1.140126119321872": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119321872", "variance": "CONTRAVARIANT"}, ".2.140126119321872": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119321872", "variance": "COVARIANT"}, "140126119322208": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245483264"}, "name": "__pow__"}], "typeVars": [{"nodeId": ".1.140126119322208"}, {"nodeId": ".2.140126119322208"}, {"nodeId": ".3.140126119322208"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__pow__"]}, "140126245483264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119322208", "args": [{"nodeId": ".1.140126119322208"}, {"nodeId": ".2.140126119322208"}, {"nodeId": ".3.140126119322208"}]}, {"nodeId": ".1.140126119322208"}, {"nodeId": ".2.140126119322208"}], "returnType": {"nodeId": ".3.140126119322208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140126119322208": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119322208", "variance": "CONTRAVARIANT"}, ".2.140126119322208": {"type": "TypeVar", "varName": "_M", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119322208", "variance": "CONTRAVARIANT"}, ".3.140126119322208": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119322208", "variance": "COVARIANT"}, "140126119718448": {"type": "Concrete", "module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094843616"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245695360"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245695808"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245696256"}, "name": "__length_hint__"}], "typeVars": [{"nodeId": ".1.140126119718448"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119718448"}]}], "isAbstract": false}, "140126094843616": {"type": "Overloaded", "items": [{"nodeId": "140126245694464"}, {"nodeId": "140126245694912"}]}, "140126245694464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718448", "args": [{"nodeId": ".1.140126119718448"}]}, {"nodeId": "140126325567360", "args": [{"nodeId": ".1.140126119718448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140126119718448": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119718448", "variance": "INVARIANT"}, "140126245694912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718448", "args": [{"nodeId": ".1.140126119718448"}]}, {"nodeId": "140126116049440", "args": [{"nodeId": ".1.140126119718448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126116049440": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253712768"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253713216"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126116049440"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__", "__len__"]}, "140126253712768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116049440", "args": [{"nodeId": ".1.140126116049440"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126116049440": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116049440", "variance": "COVARIANT"}, "140126253713216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116049440", "args": [{"nodeId": ".1.140126116049440"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126116049440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126245695360": {"type": "Function", "typeVars": [".-1.140126245695360"], "argTypes": [{"nodeId": ".-1.140126245695360"}], "returnType": {"nodeId": ".-1.140126245695360"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126245695360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245695360", "variance": "INVARIANT"}, "140126245695808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718448", "args": [{"nodeId": ".1.140126119718448"}]}], "returnType": {"nodeId": ".1.140126119718448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126245696256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718448", "args": [{"nodeId": ".1.140126119718448"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119322544": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245697152"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140126119322544"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__round__"]}, "140126245697152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119322544", "args": [{"nodeId": ".1.140126119322544"}]}], "returnType": {"nodeId": ".1.140126119322544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119322544": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119322544", "variance": "COVARIANT"}, "140126119322880": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245697600"}, "name": "__round__"}], "typeVars": [{"nodeId": ".1.140126119322880"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__round__"]}, "140126245697600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119322880", "args": [{"nodeId": ".1.140126119322880"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126119322880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140126119322880": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119322880", "variance": "COVARIANT"}, "140126111294384": {"type": "Protocol", "module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140126116046752", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140126116047088", "args": [{"nodeId": "140126119316160"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}, "140126116046752": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253627008"}, "name": "__add__"}], "typeVars": [{"nodeId": ".1.140126116046752"}, {"nodeId": ".2.140126116046752"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__add__"]}, "140126253627008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116046752", "args": [{"nodeId": ".1.140126116046752"}, {"nodeId": ".2.140126116046752"}]}, {"nodeId": ".1.140126116046752"}], "returnType": {"nodeId": ".2.140126116046752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116046752": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116046752", "variance": "CONTRAVARIANT"}, ".2.140126116046752": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116046752", "variance": "COVARIANT"}, "140126116047088": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253627456"}, "name": "__radd__"}], "typeVars": [{"nodeId": ".1.140126116047088"}, {"nodeId": ".2.140126116047088"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__radd__"]}, "140126253627456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116047088", "args": [{"nodeId": ".1.140126116047088"}, {"nodeId": ".2.140126116047088"}]}, {"nodeId": ".1.140126116047088"}], "returnType": {"nodeId": ".2.140126116047088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116047088": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047088", "variance": "CONTRAVARIANT"}, ".2.140126116047088": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047088", "variance": "COVARIANT"}, "140126119718784": {"type": "Concrete", "module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126094845744"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245807360"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245807808"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140126119718784"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126119718784"}]}], "isAbstract": false}, "140126094845744": {"type": "Overloaded", "items": [{"nodeId": "140126245801984"}, {"nodeId": "140126245802432"}, {"nodeId": "140126245802880"}, {"nodeId": "140126245803328"}, {"nodeId": "140126245803776"}, {"nodeId": "140126245804224"}]}, "140126245801984": {"type": "Function", "typeVars": [".-1.140126245801984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245801984"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126094847872"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}, ".-1.140126245801984": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245801984", "variance": "INVARIANT"}, "140126094847872": {"type": "Tuple", "items": [{"nodeId": ".-1.140126245801984"}]}, "140126245802432": {"type": "Function", "typeVars": [".-1.140126245802432", ".-2.140126245802432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245802432"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245802432"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126094848096"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}, ".-1.140126245802432": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245802432", "variance": "INVARIANT"}, ".-2.140126245802432": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245802432", "variance": "INVARIANT"}, "140126094848096": {"type": "Tuple", "items": [{"nodeId": ".-1.140126245802432"}, {"nodeId": ".-2.140126245802432"}]}, "140126245802880": {"type": "Function", "typeVars": [".-1.140126245802880", ".-2.140126245802880", ".-3.140126245802880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245802880"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245802880"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245802880"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126094848320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}, ".-1.140126245802880": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245802880", "variance": "INVARIANT"}, ".-2.140126245802880": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245802880", "variance": "INVARIANT"}, ".-3.140126245802880": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245802880", "variance": "INVARIANT"}, "140126094848320": {"type": "Tuple", "items": [{"nodeId": ".-1.140126245802880"}, {"nodeId": ".-2.140126245802880"}, {"nodeId": ".-3.140126245802880"}]}, "140126245803328": {"type": "Function", "typeVars": [".-1.140126245803328", ".-2.140126245803328", ".-3.140126245803328", ".-4.140126245803328"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245803328"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245803328"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245803328"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-4.140126245803328"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126094848544"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}, ".-1.140126245803328": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803328", "variance": "INVARIANT"}, ".-2.140126245803328": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803328", "variance": "INVARIANT"}, ".-3.140126245803328": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803328", "variance": "INVARIANT"}, ".-4.140126245803328": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803328", "variance": "INVARIANT"}, "140126094848544": {"type": "Tuple", "items": [{"nodeId": ".-1.140126245803328"}, {"nodeId": ".-2.140126245803328"}, {"nodeId": ".-3.140126245803328"}, {"nodeId": ".-4.140126245803328"}]}, "140126245803776": {"type": "Function", "typeVars": [".-1.140126245803776", ".-2.140126245803776", ".-3.140126245803776", ".-4.140126245803776", ".-5.140126245803776"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-1.140126245803776"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-2.140126245803776"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-3.140126245803776"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-4.140126245803776"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": ".-5.140126245803776"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126094848768"}]}, "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.140126245803776": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803776", "variance": "INVARIANT"}, ".-2.140126245803776": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803776", "variance": "INVARIANT"}, ".-3.140126245803776": {"type": "TypeVar", "varName": "_T3", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803776", "variance": "INVARIANT"}, ".-4.140126245803776": {"type": "TypeVar", "varName": "_T4", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803776", "variance": "INVARIANT"}, ".-5.140126245803776": {"type": "TypeVar", "varName": "_T5", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245803776", "variance": "INVARIANT"}, "140126094848768": {"type": "Tuple", "items": [{"nodeId": ".-1.140126245803776"}, {"nodeId": ".-2.140126245803776"}, {"nodeId": ".-3.140126245803776"}, {"nodeId": ".-4.140126245803776"}, {"nodeId": ".-5.140126245803776"}]}, "140126245804224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119718784", "args": [{"nodeId": "140126119318848", "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"]}, "140126245807360": {"type": "Function", "typeVars": [".-1.140126245807360"], "argTypes": [{"nodeId": ".-1.140126245807360"}], "returnType": {"nodeId": ".-1.140126245807360"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126245807360": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126245807360", "variance": "INVARIANT"}, "140126245807808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119718784", "args": [{"nodeId": ".1.140126119718784"}]}], "returnType": {"nodeId": ".1.140126119718784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126119718784": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119718784", "variance": "COVARIANT"}, "140126119323888": {"type": "Concrete", "module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119323552"}], "isAbstract": false}, "140126119324224": {"type": "Concrete", "module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119323552"}], "isAbstract": false}, "140126119324560": {"type": "Concrete", "module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111384288"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119323552"}], "isAbstract": false}, "140126111384288": {"type": "TypeAlias", "target": {"nodeId": "140126119817536"}}, "140126119817536": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126119325232": {"type": "Concrete", "module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119325568": {"type": "Concrete", "module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119325904": {"type": "Concrete", "module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119326240": {"type": "Concrete", "module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119326576": {"type": "Concrete", "module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245810944"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325561984"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126245810944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119326576"}, {"nodeId": "140126325561984"}, {"nodeId": "140126094851008"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}, "140126094851008": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126119326912": {"type": "Concrete", "module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119327248": {"type": "Concrete", "module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119327584": {"type": "Concrete", "module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245811392"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128530576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128530352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126245811392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119327584"}, {"nodeId": "140126325561984"}, {"nodeId": "140126094851120"}, {"nodeId": "140126094851232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}, "140126094851120": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126094851232": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128530576": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128530352": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126119328256": {"type": "Concrete", "module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119328592": {"type": "Concrete", "module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119328928": {"type": "Concrete", "module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119592000": {"type": "Concrete", "module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119592336": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119809360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128530800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128531696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128528784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128531808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128533040"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119809360": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126128530800": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126128531696": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128528784": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128531808": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126128533040": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126119592672": {"type": "Concrete", "module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119593008": {"type": "Concrete", "module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126119593680": {"type": "Concrete", "module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325904"}], "isAbstract": false}, "140126119594016": {"type": "Concrete", "module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325904"}], "isAbstract": false}, "140126119594352": {"type": "Concrete", "module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325904"}], "isAbstract": false}, "140126119594688": {"type": "Concrete", "module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119327584"}], "isAbstract": false}, "140126119595360": {"type": "Concrete", "module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119327920"}], "isAbstract": false}, "140126119595696": {"type": "Concrete", "module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119328592"}], "isAbstract": false}, "140126119596032": {"type": "Concrete", "module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119596368": {"type": "Concrete", "module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119596704": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119597040": {"type": "Concrete", "module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119596704"}], "isAbstract": false}, "140126119597376": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119596704"}], "isAbstract": false}, "140126119597712": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119596704"}], "isAbstract": false}, "140126119598048": {"type": "Concrete", "module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119596704"}], "isAbstract": false}, "140126119598384": {"type": "Concrete", "module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119598720": {"type": "Concrete", "module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119599056": {"type": "Concrete", "module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119599392": {"type": "Concrete", "module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119599728": {"type": "Concrete", "module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119600064": {"type": "Concrete", "module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119600400": {"type": "Concrete", "module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119600736": {"type": "Concrete", "module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}], "isAbstract": false}, "140126119601072": {"type": "Concrete", "module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119329264"}], "isAbstract": false}, "140126119601408": {"type": "Concrete", "module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119329264"}], "isAbstract": false}, "140126119601744": {"type": "Concrete", "module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119592336"}], "isAbstract": false}, "140126119602080": {"type": "Concrete", "module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119601744"}], "isAbstract": false}, "140126119602416": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119593344"}], "isAbstract": false}, "140126119602752": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245811840"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119602416"}], "isAbstract": false}, "140126245811840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119602752"}, {"nodeId": "140126119317840"}, {"nodeId": "140126094851344"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140126094851344": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126119603088": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245812288"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119602416"}], "isAbstract": false}, "140126245812288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119603088"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}, "140126119603424": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126245812736"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119602416"}], "isAbstract": false}, "140126245812736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119603424"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}, "140126119604768": {"type": "Concrete", "module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119605440": {"type": "Concrete", "module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119605776": {"type": "Concrete", "module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119606112": {"type": "Concrete", "module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119606448": {"type": "Concrete", "module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119606784": {"type": "Concrete", "module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119607120": {"type": "Concrete", "module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126119607456": {"type": "Concrete", "module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119603760"}], "isAbstract": false}, "140126120027728": {"type": "Protocol", "module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126246133920"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["find_spec"]}, "140126246133920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120027728"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107085600"}, {"nodeId": "140126107085712"}], "returnType": {"nodeId": "140126107085824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140126107085600": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126107085712": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126120021680": {"type": "Concrete", "module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119815744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086040704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119816304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119816528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325570720", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119816640"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257830528"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257830976"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126119815744": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126086040704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126119816304": {"type": "Union", "items": [{"nodeId": "140126120021344"}, {"nodeId": "N"}]}, "140126120021344": {"type": "Protocol", "module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257829632"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["load_module"]}, "140126257829632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021344"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126119816528": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126119816640": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126115194784": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182466816"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111493792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111494016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115228000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115228112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126065025408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182467712"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126182466816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194784"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102974672"}, {"nodeId": "140126102974784"}, {"nodeId": "A"}, {"nodeId": "140126102975008"}], "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"]}, "140126102974672": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126115195792": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182327904"}, "name": "load_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182328352"}, "name": "module_repr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182328800"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182329248"}, "name": "exec_module"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126182327904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115195792"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126182328352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115195792"}, {"nodeId": "140126120021680"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140126182328800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115195792"}, {"nodeId": "140126115194784"}], "returnType": {"nodeId": "140126103224496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140126103224496": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126182329248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115195792"}, {"nodeId": "140126120021680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140126102974784": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102975008": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126111493792": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126111494016": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115228000": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126115228112": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126065025408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194784"}], "returnType": {"nodeId": "140126102975120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102975120": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182467712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194784"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126257830528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126106779008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}, "140126106779008": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126257830976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126107085824": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126111294720": {"type": "Concrete", "module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086493376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086494496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086494720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086494944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086495168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086495392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086495616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086495840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086512704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086512928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086513152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086513376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086513600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086513824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086514048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086514720"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126086493376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086048"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086048": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086494496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086160": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086494720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086272"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086272": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086494944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086384"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086384": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086495168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086496": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086495392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086608"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086608": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086495616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086720"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086720": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086495840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086832"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086832": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086512704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107086944"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107086944": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086512928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087056"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087056": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086513152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087168"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087168": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086513376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087280"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087280": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086513600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087392": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086513824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087504"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087504": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086514048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087616"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087616": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086514720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087728"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087728": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126110990736": {"type": "Concrete", "module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253719936"}, "name": "__new__"}], "typeVars": [{"nodeId": ".1.140126110990736"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126253719936": {"type": "Function", "typeVars": [".-1.140126253719936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": ".1.140126110990736"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140126253719936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}, ".1.140126110990736": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126110990736", "variance": "COVARIANT"}, ".-1.140126253719936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253719936", "variance": "INVARIANT"}, "140126111295056": {"type": "Concrete", "module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086515840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086516288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086516512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086516736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086516960"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086517184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086517408"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086517632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086517856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086518080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086518304"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316496"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}], "isAbstract": false}, "140126086515840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087840"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087840": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086516288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107087952"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107087952": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086516512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088064"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088064": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086516736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088176"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088176": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086516960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088288"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088288": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086517184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088400"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088400": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086517408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088512"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088512": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086517632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088624": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086517856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088736"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088736": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086518080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088848"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088848": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086518304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107088960"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107088960": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111295392": {"type": "Concrete", "module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086519648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086519872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086520096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086520320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086520544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086520768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086520992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086521216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086521440"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126111392128"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}], "isAbstract": false}, "140126086519648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089072"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089072": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086519872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089184"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089184": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086520096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089296"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089296": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086520320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089408"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089408": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086520544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089520"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089520": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086520768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089632"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089632": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086520992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089744"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089744": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086521216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089856"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089856": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086521440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107089968"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107089968": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111392128": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "140126119316160"}]}, "140126120028064": {"type": "Concrete", "module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111390896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126291911712"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111390896": {"type": "TypeAlias", "target": {"nodeId": "140126111736080"}}, "140126111736080": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126291911712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120028064"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126111295728": {"type": "Concrete", "module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086523456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086523680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086523904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086524128"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126086523456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090192"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090192": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086523680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090304"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090304": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086523904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090416"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090416": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126086524128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090528"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090528": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111296064": {"type": "Concrete", "module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086524352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086525472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086525696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086525920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086526144"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}], "isAbstract": false}, "140126086524352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090640"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090640": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126086525472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107090752"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107090752": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126086525696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107254848"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107254848": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126086525920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107254960"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107254960": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126086526144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107255072"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107255072": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126120028400": {"type": "Concrete", "module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111739104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111396608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111396832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119820448"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111739104": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126111396608": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126111396832": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126119820448": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "N"}]}, "140126111296400": {"type": "Concrete", "module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086627616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086628064"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119820672"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126111490880"}]}], "isAbstract": false}, "140126086627616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107257648"}], "returnType": {"nodeId": "140126107257760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107257648": {"type": "Tuple", "items": [{"nodeId": "140126111386192"}, {"nodeId": "140126111393584"}]}, "140126111386192": {"type": "TypeAlias", "target": {"nodeId": "140126120215040"}}, "140126120215040": {"type": "Union", "items": [{"nodeId": "140126128610592"}, {"nodeId": "N"}]}, "140126128610592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126111393584": {"type": "TypeAlias", "target": {"nodeId": "140126120215040"}}, "140126107257760": {"type": "TypeAlias", "target": {"nodeId": "140126120215040"}}, "140126086628064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107257872"}], "returnType": {"nodeId": "140126107257984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107257872": {"type": "Tuple", "items": [{"nodeId": "140126111386192"}, {"nodeId": "140126111393584"}]}, "140126107257984": {"type": "TypeAlias", "target": {"nodeId": "140126120215040"}}, "140126119820672": {"type": "TypeAlias", "target": {"nodeId": "140126120215040"}}, "140126111490880": {"type": "Union", "items": [{"nodeId": "140126094762592"}, {"nodeId": "N"}]}, "140126094762592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325569376", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126116044064": {"type": "Protocol", "module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253623872"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126253623872": {"type": "Function", "typeVars": [".-1.140126253623872"], "argTypes": [{"nodeId": "140126116044064"}, {"nodeId": ".-1.140126253623872"}], "returnType": {"nodeId": ".-1.140126253623872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126253623872": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253623872", "variance": "INVARIANT"}, "140126116044400": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253624320"}, "name": "__next__"}], "typeVars": [{"nodeId": ".1.140126116044400"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__next__"]}, "140126253624320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116044400", "args": [{"nodeId": ".1.140126116044400"}]}], "returnType": {"nodeId": ".1.140126116044400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116044400": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116044400", "variance": "COVARIANT"}, "140126116044736": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253624768"}, "name": "__anext__"}], "typeVars": [{"nodeId": ".1.140126116044736"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__anext__"]}, "140126253624768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116044736", "args": [{"nodeId": ".1.140126116044736"}]}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".1.140126116044736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116044736": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116044736", "variance": "COVARIANT"}, "140126116045744": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253626112"}, "name": "__le__"}], "typeVars": [{"nodeId": ".1.140126116045744"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__le__"]}, "140126253626112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116045744", "args": [{"nodeId": ".1.140126116045744"}]}, {"nodeId": ".1.140126116045744"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116045744": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116045744", "variance": "CONTRAVARIANT"}, "140126116046080": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253626560"}, "name": "__ge__"}], "typeVars": [{"nodeId": ".1.140126116046080"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__ge__"]}, "140126253626560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116046080", "args": [{"nodeId": ".1.140126116046080"}]}, {"nodeId": ".1.140126116046080"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116046080": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116046080", "variance": "CONTRAVARIANT"}, "140126116046416": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140126116045072", "args": [{"nodeId": "A"}]}, {"nodeId": "140126116045408", "args": [{"nodeId": "A"}]}, {"nodeId": "140126116045744", "args": [{"nodeId": "A"}]}, {"nodeId": "140126116046080", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}, "140126116047424": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253627904"}, "name": "__sub__"}], "typeVars": [{"nodeId": ".1.140126116047424"}, {"nodeId": ".2.140126116047424"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__sub__"]}, "140126253627904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116047424", "args": [{"nodeId": ".1.140126116047424"}, {"nodeId": ".2.140126116047424"}]}, {"nodeId": ".1.140126116047424"}], "returnType": {"nodeId": ".2.140126116047424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116047424": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047424", "variance": "CONTRAVARIANT"}, ".2.140126116047424": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047424", "variance": "COVARIANT"}, "140126116047760": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253628352"}, "name": "__rsub__"}], "typeVars": [{"nodeId": ".1.140126116047760"}, {"nodeId": ".2.140126116047760"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__rsub__"]}, "140126253628352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116047760", "args": [{"nodeId": ".1.140126116047760"}, {"nodeId": ".2.140126116047760"}]}, {"nodeId": ".1.140126116047760"}], "returnType": {"nodeId": ".2.140126116047760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116047760": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047760", "variance": "CONTRAVARIANT"}, ".2.140126116047760": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116047760", "variance": "COVARIANT"}, "140126116048096": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253628800"}, "name": "__divmod__"}], "typeVars": [{"nodeId": ".1.140126116048096"}, {"nodeId": ".2.140126116048096"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__divmod__"]}, "140126253628800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116048096", "args": [{"nodeId": ".1.140126116048096"}, {"nodeId": ".2.140126116048096"}]}, {"nodeId": ".1.140126116048096"}], "returnType": {"nodeId": ".2.140126116048096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116048096": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116048096", "variance": "CONTRAVARIANT"}, ".2.140126116048096": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116048096", "variance": "COVARIANT"}, "140126116048432": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253711424"}, "name": "__rdivmod__"}], "typeVars": [{"nodeId": ".1.140126116048432"}, {"nodeId": ".2.140126116048432"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__rdivmod__"]}, "140126253711424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116048432", "args": [{"nodeId": ".1.140126116048432"}, {"nodeId": ".2.140126116048432"}]}, {"nodeId": ".1.140126116048432"}], "returnType": {"nodeId": ".2.140126116048432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".1.140126116048432": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116048432", "variance": "CONTRAVARIANT"}, ".2.140126116048432": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116048432", "variance": "COVARIANT"}, "140126116048768": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253711872"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140126116048768"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__iter__"]}, "140126253711872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116048768", "args": [{"nodeId": ".1.140126116048768"}]}], "returnType": {"nodeId": ".1.140126116048768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126116048768": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116048768", "variance": "COVARIANT"}, "140126116049104": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253712320"}, "name": "__aiter__"}], "typeVars": [{"nodeId": ".1.140126116049104"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__aiter__"]}, "140126253712320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116049104", "args": [{"nodeId": ".1.140126116049104"}]}], "returnType": {"nodeId": ".1.140126116049104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116049104": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116049104", "variance": "COVARIANT"}, "140126116050112": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253714112"}, "name": "items"}], "typeVars": [{"nodeId": ".1.140126116050112"}, {"nodeId": ".2.140126116050112"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["items"]}, "140126253714112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050112", "args": [{"nodeId": ".1.140126116050112"}, {"nodeId": ".2.140126116050112"}]}], "returnType": {"nodeId": "140126325571056", "args": [{"nodeId": "140126098814032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116050112": {"type": "TypeVar", "varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050112", "variance": "COVARIANT"}, ".2.140126116050112": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050112", "variance": "COVARIANT"}, "140126098814032": {"type": "Tuple", "items": [{"nodeId": ".1.140126116050112"}, {"nodeId": ".2.140126116050112"}]}, "140126116050784": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253715456"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253715904"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126116050784"}, {"nodeId": ".2.140126116050784"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__contains__", "__getitem__"]}, "140126253715456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050784", "args": [{"nodeId": ".1.140126116050784"}, {"nodeId": ".2.140126116050784"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126116050784": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050784", "variance": "CONTRAVARIANT"}, ".2.140126116050784": {"type": "TypeVar", "varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116050784", "variance": "COVARIANT"}, "140126253715904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050784", "args": [{"nodeId": ".1.140126116050784"}, {"nodeId": ".2.140126116050784"}]}, {"nodeId": ".1.140126116050784"}], "returnType": {"nodeId": ".2.140126116050784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126116051120": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253716352"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253716800"}, "name": "__delitem__"}], "typeVars": [{"nodeId": ".1.140126116051120"}, {"nodeId": ".2.140126116051120"}], "bases": [{"nodeId": "140126116050784", "args": [{"nodeId": ".1.140126116051120"}, {"nodeId": ".2.140126116051120"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}, "140126253716352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116051120", "args": [{"nodeId": ".1.140126116051120"}, {"nodeId": ".2.140126116051120"}]}, {"nodeId": ".1.140126116051120"}, {"nodeId": ".2.140126116051120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, ".1.140126116051120": {"type": "TypeVar", "varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116051120", "variance": "CONTRAVARIANT"}, ".2.140126116051120": {"type": "TypeVar", "varName": "_VT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116051120", "variance": "INVARIANT"}, "140126253716800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116051120", "args": [{"nodeId": ".1.140126116051120"}, {"nodeId": ".2.140126116051120"}]}, {"nodeId": ".1.140126116051120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126116051456": {"type": "Protocol", "module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253717248"}, "name": "fileno"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["fileno"]}, "140126253717248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116051456"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126116052128": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253718144"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140126116052128"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["readline"]}, "140126253718144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116052128", "args": [{"nodeId": ".1.140126116052128"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126116052128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, ".1.140126116052128": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116052128", "variance": "COVARIANT"}, "140126116052464": {"type": "Protocol", "module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253718592"}, "name": "readline"}], "typeVars": [{"nodeId": ".1.140126116052464"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["readline"]}, "140126253718592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116052464", "args": [{"nodeId": ".1.140126116052464"}]}], "returnType": {"nodeId": ".1.140126116052464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126116052464": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116052464", "variance": "COVARIANT"}, "140126119722144": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253721056"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253721504"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253721952"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126253721056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253721504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119722144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253721952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119722144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126119722480": {"type": "Concrete", "module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253723744"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253724192"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253724640"}, "name": "pop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253725088"}, "name": "update"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253725536"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253725984"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253726432"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253726880"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126253727328"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262575392"}, "name": "__ior__"}], "typeVars": [], "bases": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}], "isAbstract": true}, "140126253723744": {"type": "Function", "typeVars": [".-1.140126253723744"], "argTypes": [{"nodeId": ".-1.140126253723744"}], "returnType": {"nodeId": ".-1.140126253723744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126253723744": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253723744", "variance": "INVARIANT"}, "140126253724192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722480"}, {"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}, "140126253724640": {"type": "Function", "typeVars": [".-1.140126253724640"], "argTypes": [{"nodeId": "140126119722480"}, {"nodeId": "0"}, {"nodeId": ".-1.140126253724640"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}, ".-1.140126253724640": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253724640", "variance": "INVARIANT"}, "140126253725088": {"type": "Function", "typeVars": [".-1.140126253725088"], "argTypes": [{"nodeId": ".-1.140126253725088"}, {"nodeId": ".-1.140126253725088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, ".-1.140126253725088": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253725088", "variance": "INVARIANT"}, "140126253725536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722480"}], "returnType": {"nodeId": "140126119715760", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253725984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722480"}], "returnType": {"nodeId": "140126119715088", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253726432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722480"}], "returnType": {"nodeId": "140126119715424", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126253726880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119722480"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126253727328": {"type": "Function", "typeVars": [".-1.140126253727328"], "argTypes": [{"nodeId": ".-1.140126253727328"}, {"nodeId": ".-1.140126253727328"}], "returnType": {"nodeId": ".-1.140126253727328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126253727328": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126253727328", "variance": "INVARIANT"}, "140126262575392": {"type": "Function", "typeVars": [".-1.140126262575392"], "argTypes": [{"nodeId": ".-1.140126262575392"}, {"nodeId": ".-1.140126262575392"}], "returnType": {"nodeId": ".-1.140126262575392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126262575392": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126262575392", "variance": "INVARIANT"}, "140126120018320": {"type": "Concrete", "module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111643712"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126095088704"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262583008"}, "name": "_asdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262583904"}, "name": "_replace"}], "typeVars": [], "bases": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140126111643712": {"type": "Overloaded", "items": [{"nodeId": "140126262581664"}, {"nodeId": "140126262582112"}]}, "140126262581664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018320"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126111824272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}, "140126111824272": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126262582112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018320"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}, "140126095088704": {"type": "Function", "typeVars": [".-1.140126095088704"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140126095088704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}, ".-1.140126095088704": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126095088704", "variance": "INVARIANT"}, "140126262583008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018320"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126262583904": {"type": "Function", "typeVars": [".-1.140126262583904"], "argTypes": [{"nodeId": ".-1.140126262583904"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126262583904"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, ".-1.140126262583904": {"type": "TypeVar", "varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126262583904", "variance": "INVARIANT"}, "140126120018656": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__bound__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119813280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__constraints__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__covariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__contravariant__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119814064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262584352"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262584800"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262585248"}, "name": "__ror__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126119813280": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126119814064": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126262584352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018656"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}, {"nodeId": "140126111815984"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126111820128"}, {"nodeId": "140126325562992"}], "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"]}, "140126111815984": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126111820128": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126262584800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018656"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119722144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126262585248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120018656"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119722144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126120019328": {"type": "Concrete", "module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__default__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119814848"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262587488"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126262587936"}, "name": "__iter__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126119814848": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126262587488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120019328"}, {"nodeId": "140126119317840"}, {"nodeId": "140126111820912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}, "140126111820912": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126262587936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120019328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126120020000": {"type": "Concrete", "module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090165184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120020336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128536400"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090864544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090539776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258004032"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258004480"}, "name": "__call__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106773744"}, "items": [{"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126090165184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}], "returnType": {"nodeId": "140126106776208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126106776208": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126120019664"}]}, {"nodeId": "N"}]}, "140126128536400": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126090864544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126090539776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258004032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}, {"nodeId": "140126120020336"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "140126106776656"}, {"nodeId": "140126106776768"}, {"nodeId": "140126106776880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}, "140126106776656": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126106776768": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126106776880": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126120019664"}]}, {"nodeId": "N"}]}, "140126258004480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126106773744": {"type": "Overloaded", "items": [{"nodeId": "140126258004928"}, {"nodeId": "140126258005376"}]}, "140126258004928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}, {"nodeId": "N"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "140126120020000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140126258005376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120020000"}, {"nodeId": "140126325561984"}, {"nodeId": "140126106777440"}], "returnType": {"nodeId": "140126120023360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140126106777440": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "N"}]}, "140126120023360": {"type": "Concrete", "module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086052576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086053024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086053248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086053472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086185024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086185248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258287040"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258287488"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086052576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126107077760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107077760": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126120019664"}]}, {"nodeId": "N"}]}, "140126086053024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126107077984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107077984": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126086053248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126120023024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126120023024": {"type": "Concrete", "module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258283904"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126258283904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023024"}, {"nodeId": "140126107077536"}, {"nodeId": "140126107077648"}], "returnType": {"nodeId": "140126120020000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}, "140126107077536": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "N"}]}, "140126107077648": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "N"}]}, "140126086053472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086185024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086185248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258287040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}, {"nodeId": "140126128622720"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126128622720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126258287488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023360"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126120021008": {"type": "Concrete", "module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257827840"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257828288"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257828736"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257829184"}, "name": "__delattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126257827840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021008"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}, "140126257828288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021008"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126257828736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021008"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126257829184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021008"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126120022016": {"type": "Concrete", "module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086041824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257832320"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257832768"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257833216"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106774416"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}], "bases": [{"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}], "isAbstract": false}, "140126086041824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}], "returnType": {"nodeId": "140126106779344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126120022016": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022016", "variance": "COVARIANT"}, ".2.140126120022016": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022016", "variance": "CONTRAVARIANT"}, ".3.140126120022016": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022016", "variance": "COVARIANT"}, "140126106779344": {"type": "Union", "items": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126257832320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}], "returnType": {"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126257832768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}], "returnType": {"nodeId": ".1.140126120022016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257833216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}, {"nodeId": ".2.140126120022016"}], "returnType": {"nodeId": ".1.140126120022016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126106774416": {"type": "Overloaded", "items": [{"nodeId": "140126257833664"}, {"nodeId": "140126257834112"}]}, "140126257833664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}, {"nodeId": "0"}, {"nodeId": "140126107074624"}, {"nodeId": "140126107074736"}], "returnType": {"nodeId": ".1.140126120022016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107074624": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126107074736": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126257834112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022016", "args": [{"nodeId": ".1.140126120022016"}, {"nodeId": ".2.140126120022016"}, {"nodeId": ".3.140126120022016"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126107074848"}], "returnType": {"nodeId": ".1.140126120022016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107074848": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126120022352": {"type": "Concrete", "module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086045856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257835008"}, "name": "__aiter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257835456"}, "name": "__anext__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257835904"}, "name": "asend"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126106777328"}, "items": [{"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "athrow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257837248"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257837696"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}], "bases": [{"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}], "isAbstract": false}, "140126086045856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}], "returnType": {"nodeId": "140126107075072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126120022352": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022352", "variance": "COVARIANT"}, ".2.140126120022352": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022352", "variance": "CONTRAVARIANT"}, "140126107075072": {"type": "Union", "items": [{"nodeId": "140126325568032", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126257835008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}], "returnType": {"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257835456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126120022352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257835904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}, {"nodeId": ".2.140126120022352"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126120022352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126106777328": {"type": "Overloaded", "items": [{"nodeId": "140126128622272"}, {"nodeId": "140126257836352"}]}, "140126128622272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}, {"nodeId": "0"}, {"nodeId": "140126107075744"}, {"nodeId": "140126107075856"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126120022352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107075744": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126107075856": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126257836352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126107076080"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126120022352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107076080": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126257837248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022352", "args": [{"nodeId": ".1.140126120022352"}, {"nodeId": ".2.140126120022352"}]}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257837696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}, "140126120022688": {"type": "Concrete", "module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086049216"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257839040"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126257839488"}, "name": "__await__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258282560"}, "name": "send"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107075968"}, "items": [{"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "throw"}], "typeVars": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}], "bases": [{"nodeId": "140126325568368", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}], "isAbstract": false}, "140126086049216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}], "returnType": {"nodeId": "140126107076864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126120022688": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022688", "variance": "COVARIANT"}, ".2.140126120022688": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022688", "variance": "CONTRAVARIANT"}, ".3.140126120022688": {"type": "TypeVar", "varName": "_V_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120022688", "variance": "COVARIANT"}, "140126107076864": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126107076752"}]}, {"nodeId": "N"}]}, "140126107076752": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126257839040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126257839488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140126120022688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258282560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}, {"nodeId": ".2.140126120022688"}], "returnType": {"nodeId": ".1.140126120022688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126107075968": {"type": "Overloaded", "items": [{"nodeId": "140126258283008"}, {"nodeId": "140126258283456"}]}, "140126258283008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}, {"nodeId": "0"}, {"nodeId": "140126107077200"}, {"nodeId": "140126107077312"}], "returnType": {"nodeId": ".1.140126120022688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107077200": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "140126325561984"}]}, "140126107077312": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126258283456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120022688", "args": [{"nodeId": ".1.140126120022688"}, {"nodeId": ".2.140126120022688"}, {"nodeId": ".3.140126120022688"}]}, {"nodeId": "140126119323552"}, {"nodeId": "N"}, {"nodeId": "140126107077424"}], "returnType": {"nodeId": ".1.140126120022688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}, "140126107077424": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126120023696": {"type": "Concrete", "module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086186368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086186816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086187040"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258289280"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086186368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023696"}], "returnType": {"nodeId": "140126107078656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107078656": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "140126120021680"}]}, "140126086186816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023696"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086187040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023696"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258289280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120023696"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126120024032": {"type": "Concrete", "module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086188160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086188832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086189056"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258291072"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258291520"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086188160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024032"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086188832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024032"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086189056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024032"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258291072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024032"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126258291520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024032"}, {"nodeId": "A"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126120024368": {"type": "Concrete", "module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086190176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086190624"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086190848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086191072"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258293760"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258294208"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258294656"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086190176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086190624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086190848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086191072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258293760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126258294208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126258294656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024368"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126120024704": {"type": "Concrete", "module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086193088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086193536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086193760"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258296448"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258296896"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086193088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086193536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086193760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024704"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258296448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126258296896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120024704"}, {"nodeId": "A"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140126120025040": {"type": "Concrete", "module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086194880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086195328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086195552"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258380864"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258381312"}, "name": "__get__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086194880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025040"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086195328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025040"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086195552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025040"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258380864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025040"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126258381312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120025040"}, {"nodeId": "A"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "type"]}, "140126120026048": {"type": "Concrete", "module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126090165632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086300160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086300384"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258388480"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258388928"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258389376"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126090165632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086300160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086300384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258388480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}, {"nodeId": "A"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126258388928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126258389376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026048"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126120026384": {"type": "Concrete", "module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086301504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086301952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126086302176"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258391168"}, "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258391616"}, "name": "__set__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258392064"}, "name": "__delete__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126086301504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086301952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126086302176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126258391168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}, {"nodeId": "A"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126258391616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126258392064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120026384"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126120027056": {"type": "Concrete", "module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126258529664"}, "name": "__bool__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126258529664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120027056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010691920": {"type": "Protocol", "module": "numpy.core.records", "simpleName": "_SupportsReadInto", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126241484896"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126241485344"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126241485792"}, "name": "readinto"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["readinto", "seek", "tell"]}, "140126241484896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691920"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126241485344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691920"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126241485792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691920"}, {"nodeId": "140126119318176"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126014933696": {"type": "Protocol", "module": "numpy.core.multiarray", "simpleName": "_SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126232513440"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126232513888"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126014933696"}, {"nodeId": ".2.140126014933696"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__", "__len__"]}, "140126232513440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014933696", "args": [{"nodeId": ".1.140126014933696"}, {"nodeId": ".2.140126014933696"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126014933696": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014933696", "variance": "CONTRAVARIANT"}, ".2.140126014933696": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014933696", "variance": "COVARIANT"}, "140126232513888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014933696", "args": [{"nodeId": ".1.140126014933696"}, {"nodeId": ".2.140126014933696"}]}, {"nodeId": ".1.140126014933696"}], "returnType": {"nodeId": ".2.140126014933696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126014933024": {"type": "Protocol", "module": "numpy.core.numerictypes", "simpleName": "_CastFunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224371264"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126224371264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014933024"}, {"nodeId": "140126002196128"}, {"nodeId": "140126002194224"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "k"]}, "140126002196128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126002194224": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126010701328": {"type": "Concrete", "module": "numpy.core.numerictypes", "simpleName": "_typedict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224371712"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126010701328"}], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": "0"}, {"nodeId": ".1.140126010701328"}]}], "isAbstract": false}, "140126224371712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010701328", "args": [{"nodeId": ".1.140126010701328"}]}, {"nodeId": "140126002196016"}], "returnType": {"nodeId": ".1.140126010701328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126010701328": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126010701328", "variance": "INVARIANT"}, "140126002196016": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126014932688": {"type": "Protocol", "module": "numpy.lib.arraypad", "simpleName": "_ModeFunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "vector", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iaxis_pad_width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "iaxis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126228387808"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126228387808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932688"}, {"nodeId": "0"}, {"nodeId": "140126002149776"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}, "140126002149776": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126014932016": {"type": "Protocol", "module": "numpy.lib.function_base", "simpleName": "_TrimZerosSequence", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224739552"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224740000"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224740448"}, "name": "__iter__"}], "typeVars": [{"nodeId": ".1.140126014932016"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__", "__iter__", "__len__"]}, "140126224739552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932016", "args": [{"nodeId": ".1.140126014932016"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126014932016": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014932016", "variance": "COVARIANT"}, "140126224740000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932016", "args": [{"nodeId": ".1.140126014932016"}]}, {"nodeId": "140126119318512"}], "returnType": {"nodeId": ".1.140126014932016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126224740448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932016", "args": [{"nodeId": ".1.140126014932016"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126014932352": {"type": "Protocol", "module": "numpy.lib.function_base", "simpleName": "_SupportsWriteFlush", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224740896"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224741344"}, "name": "flush"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["flush", "write"]}, "140126224740896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932352"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126224741344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014932352"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014487040": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "nd_grid", "members": [{"kind": "Variable", "name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126014487040"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220299040"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126001839264"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126014487040"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126014487040": {"type": "TypeVar", "varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014487040", "variance": "INVARIANT"}, "140126220299040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014487040", "args": [{"nodeId": ".1.140126014487040"}]}, {"nodeId": ".1.140126014487040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sparse"]}, "140126001839264": {"type": "Overloaded", "items": [{"nodeId": "140126006974208"}, {"nodeId": "140126220299936"}]}, "140126006974208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014487040", "args": [{"nodeId": "0"}]}, {"nodeId": "140126001890912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126001890912": {"type": "Union", "items": [{"nodeId": "140126119318512"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119318512"}]}]}, "140126220299936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014487040", "args": [{"nodeId": "0"}]}, {"nodeId": "140126001891360"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126001891360": {"type": "Union", "items": [{"nodeId": "140126119318512"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119318512"}]}]}, "140126014487376": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "MGridClass", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220300384"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126014487040", "args": [{"nodeId": "0"}]}], "isAbstract": false}, "140126220300384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014487376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014487712": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "OGridClass", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220300832"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126014487040", "args": [{"nodeId": "0"}]}], "isAbstract": false}, "140126220300832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014487712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014488048": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "AxisConcatenator", "members": [{"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220301280"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126001839152"}, "items": [{"kind": "Variable", "name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "concatenate"}, {"kind": "Variable", "name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125980962016"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220303072"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126220301280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014488048"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "matrix", "ndmin", "trans1d"]}, "140126001839152": {"type": "Overloaded", "items": [{"nodeId": "140126006972640"}, {"nodeId": "140126220302176"}]}, "140126006972640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126001892032"}, {"nodeId": "140126119710384"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}, "140126001892032": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126220302176": {"type": "Function", "typeVars": [".-1.140126220302176"], "argTypes": [{"nodeId": "140126001892592"}, {"nodeId": "140126119710384"}, {"nodeId": ".-1.140126220302176"}], "returnType": {"nodeId": ".-1.140126220302176"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}, "140126001892592": {"type": "TypeAlias", "target": {"nodeId": "0"}}, ".-1.140126220302176": {"type": "TypeVar", "varName": "_ArrayType", "values": [], "upperBound": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126220302176", "variance": "INVARIANT"}, "140125980962016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126001891920"}, {"nodeId": "140126001892704"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126010290384", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["data", "dtype", "copy"]}, "140126001891920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126001892704": {"type": "TypeAlias", "target": {"nodeId": "140126006328368"}}, "140126220303072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014488048"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126014931008": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "RClass", "members": [{"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220303520"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126014488048"}], "isAbstract": false}, "140126220303520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014931008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014931344": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "CClass", "members": [{"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220303968"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126014488048"}], "isAbstract": false}, "140126220303968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014931344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014931680": {"type": "Concrete", "module": "numpy.lib.index_tricks", "simpleName": "IndexExpression", "members": [{"kind": "Variable", "name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126014931680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224957728"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126014899136"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126014931680"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126014931680": {"type": "TypeVar", "varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014931680", "variance": "INVARIANT"}, "140126224957728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014931680", "args": [{"nodeId": ".1.140126014931680"}]}, {"nodeId": ".1.140126014931680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "maketuple"]}, "140126014899136": {"type": "Overloaded", "items": [{"nodeId": "140126224958176"}, {"nodeId": "140126224958624"}, {"nodeId": "140126224959072"}]}, "140126224958176": {"type": "Function", "typeVars": [".-1.140126224958176"], "argTypes": [{"nodeId": "140126014931680", "args": [{"nodeId": ".1.140126014931680"}]}, {"nodeId": ".-1.140126224958176"}], "returnType": {"nodeId": ".-1.140126224958176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126224958176": {"type": "TypeVar", "varName": "_TupType", "values": [], "upperBound": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "def": "140126224958176", "variance": "INVARIANT"}, "140126224958624": {"type": "Function", "typeVars": [".-1.140126224958624"], "argTypes": [{"nodeId": "140126014931680", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.140126224958624"}], "returnType": {"nodeId": "140126001892816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126224958624": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126224958624", "variance": "INVARIANT"}, "140126001892816": {"type": "Tuple", "items": [{"nodeId": ".-1.140126224958624"}]}, "140126224959072": {"type": "Function", "typeVars": [".-1.140126224959072"], "argTypes": [{"nodeId": "140126014931680", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.140126224959072"}], "returnType": {"nodeId": ".-1.140126224959072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126224959072": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126224959072", "variance": "INVARIANT"}, "140126014485024": {"type": "Protocol", "module": "numpy.lib.npyio", "simpleName": "_SupportsGetItem", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224962208"}, "name": "__getitem__"}], "typeVars": [{"nodeId": ".1.140126014485024"}, {"nodeId": ".2.140126014485024"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__getitem__"]}, "140126224962208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014485024", "args": [{"nodeId": ".1.140126014485024"}, {"nodeId": ".2.140126014485024"}]}, {"nodeId": ".1.140126014485024"}], "returnType": {"nodeId": ".2.140126014485024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014485024": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014485024", "variance": "CONTRAVARIANT"}, ".2.140126014485024": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014485024", "variance": "COVARIANT"}, "140126014485360": {"type": "Protocol", "module": "numpy.lib.npyio", "simpleName": "_SupportsRead", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224962656"}, "name": "read"}], "typeVars": [{"nodeId": ".1.140126014485360"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read"]}, "140126224962656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014485360", "args": [{"nodeId": ".1.140126014485360"}]}], "returnType": {"nodeId": ".1.140126014485360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014485360": {"type": "TypeVar", "varName": "_CharType_co", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014485360", "variance": "COVARIANT"}, "140126014485696": {"type": "Protocol", "module": "numpy.lib.npyio", "simpleName": "_SupportsReadSeek", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224963104"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224963552"}, "name": "seek"}], "typeVars": [{"nodeId": ".1.140126014485696"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read", "seek"]}, "140126224963104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014485696", "args": [{"nodeId": ".1.140126014485696"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".1.140126014485696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014485696": {"type": "TypeVar", "varName": "_CharType_co", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014485696", "variance": "COVARIANT"}, "140126224963552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014485696", "args": [{"nodeId": ".1.140126014485696"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126014486032": {"type": "Protocol", "module": "numpy.lib.npyio", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224964000"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140126014486032"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["write"]}, "140126224964000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486032", "args": [{"nodeId": ".1.140126014486032"}]}, {"nodeId": ".1.140126014486032"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014486032": {"type": "TypeVar", "varName": "_CharType_contra", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014486032", "variance": "CONTRAVARIANT"}, "140126014486368": {"type": "Concrete", "module": "numpy.lib.npyio", "simpleName": "BagObj", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224964448"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224964896"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224965344"}, "name": "__dir__"}], "typeVars": [{"nodeId": ".1.140126014486368"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126224964448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486368", "args": [{"nodeId": ".1.140126014486368"}]}, {"nodeId": "140126014485024", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".1.140126014486368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, ".1.140126014486368": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014486368", "variance": "COVARIANT"}, "140126224964896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486368", "args": [{"nodeId": ".1.140126014486368"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".1.140126014486368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126224965344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486368", "args": [{"nodeId": ".1.140126014486368"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014486704": {"type": "Concrete", "module": "numpy.lib.npyio", "simpleName": "NpzFile", "members": [{"kind": "Variable", "name": "zip", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039830736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006052672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014666816"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006992048"}, "items": [{"kind": "Variable", "name": "f", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125985903488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "f"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "own_fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224966688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224967136"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224967584"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224968032"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224968480"}, "name": "__del__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224968928"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224969376"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126224969824"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}], "isAbstract": false}, "140126039830736": {"type": "Concrete", "module": "zipfile", "simpleName": "ZipFile", "members": [{"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027240768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126039831408"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027241888"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "NameToInfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027242000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027242112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027242336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict_timestamps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178299456"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173944896"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178300800"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178301248"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178301696"}, "name": "getinfo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178302144"}, "name": "infolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178302592"}, "name": "namelist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "force_zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178303040"}, "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178303488"}, "name": "extract"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "members", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178303936"}, "name": "extractall"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178304384"}, "name": "printdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178304832"}, "name": "setpassword"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178305280"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178305728"}, "name": "testzip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178306176"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "zinfo_or_arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178306624"}, "name": "writestr"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027240768": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126039831408": {"type": "Concrete", "module": "zipfile", "simpleName": "ZipInfo", "members": [{"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027242672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_system", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "extract_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reserved", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flag_bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "volume", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "internal_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "external_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "CRC", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "compress_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "file_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orig_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178308416"}, "name": "__init__"}, {"kind": "Variable", "name": "from_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027404384"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178309760"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178310208"}, "name": "FileHeader"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027242672": {"type": "TypeAlias", "target": {"nodeId": "140126027134480"}}, "140126027134480": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126178308416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831408"}, {"nodeId": "140126119317840"}, {"nodeId": "140126027249392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "date_time"]}, "140126027249392": {"type": "TypeAlias", "target": {"nodeId": "140126027134480"}}, "140126027404384": {"type": "Function", "typeVars": [".-1.140126027404384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126027249504"}, {"nodeId": "140126027249952"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126027404384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "filename", "arcname", "strict_timestamps"]}, "140126027249504": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126116103104": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}]}, "140126027249952": {"type": "Union", "items": [{"nodeId": "140126027249616"}, {"nodeId": "N"}]}, "140126027249616": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, ".-1.140126027404384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126027404384", "variance": "INVARIANT"}, "140126178309760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831408"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178310208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831408"}, {"nodeId": "140126027250064"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "zip64"]}, "140126027250064": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126027241888": {"type": "Union", "items": [{"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "N"}]}, "140126027242000": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126027242112": {"type": "TypeAlias", "target": {"nodeId": "140126027241776"}}, "140126027241776": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126027242336": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178299456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027245696"}, {"nodeId": "140126027245808"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126027245920"}, {"nodeId": "140126325562992"}], "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"]}, "140126027245696": {"type": "Union", "items": [{"nodeId": "140126027245584"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}]}, "140126027245584": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126027245808": {"type": "TypeAlias", "target": {"nodeId": "140126027241776"}}, "140126027245920": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126173944896": {"type": "Function", "typeVars": [".-1.140126173944896"], "argTypes": [{"nodeId": ".-1.140126173944896"}], "returnType": {"nodeId": ".-1.140126173944896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126173944896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126173944896", "variance": "INVARIANT"}, "140126178300800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027246368"}, {"nodeId": "140126027245360"}, {"nodeId": "140126027246032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126027246368": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126027245360": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126027246032": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126178301248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178301696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126039831408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126178302144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126039831408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178302592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178303040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027246144"}, {"nodeId": "140126027246480"}, {"nodeId": "140126027246592"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "mode", "pwd", "force_zip64"]}, "140126027246144": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "140126027246480": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027240432": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126027246592": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178303488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027246816"}, {"nodeId": "140126027246928"}, {"nodeId": "140126027247040"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "member", "path", "pwd"]}, "140126027246816": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "140126027246928": {"type": "Union", "items": [{"nodeId": "140126027246256"}, {"nodeId": "N"}]}, "140126027246256": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126027247040": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178303936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027247264"}, {"nodeId": "140126027247488"}, {"nodeId": "140126027247600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "members", "pwd"]}, "140126027247264": {"type": "Union", "items": [{"nodeId": "140126027247152"}, {"nodeId": "N"}]}, "140126027247152": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126027247488": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126027247376"}]}, {"nodeId": "N"}]}, "140126027247376": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "140126027247600": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178304384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027247712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "file"]}, "140126027247712": {"type": "Union", "items": [{"nodeId": "140126039830400"}, {"nodeId": "N"}]}, "140126039830400": {"type": "Protocol", "module": "zipfile", "simpleName": "_Writer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178298112"}, "name": "write"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["write"]}, "140126178298112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830400"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126178304832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pwd"]}, "140126178305280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027247824"}, {"nodeId": "140126027247936"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "pwd"]}, "140126027247824": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "140126027247936": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178305728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}], "returnType": {"nodeId": "140126027248048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027248048": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126178306176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027248160"}, {"nodeId": "140126027248384"}, {"nodeId": "140126027248496"}, {"nodeId": "140126027248608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "arcname", "compress_type", "compresslevel"]}, "140126027248160": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126027248384": {"type": "Union", "items": [{"nodeId": "140126027248272"}, {"nodeId": "N"}]}, "140126027248272": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126027248496": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126027248608": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126178306624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830736"}, {"nodeId": "140126027248720"}, {"nodeId": "140126027248944"}, {"nodeId": "140126027249056"}, {"nodeId": "140126027249168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "zinfo_or_arcname", "data", "compress_type", "compresslevel"]}, "140126027248720": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039831408"}]}, "140126027248944": {"type": "Union", "items": [{"nodeId": "140126027248832"}, {"nodeId": "140126119317840"}]}, "140126027248832": {"type": "TypeAlias", "target": {"nodeId": "140126110977712"}}, "140126110977712": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126027249056": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126027249168": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126006052672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119317840"}]}]}, "140126014666816": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126006992048": {"type": "Overloaded", "items": [{"nodeId": "140126224965792"}]}, "140126224965792": {"type": "Function", "typeVars": [".-1.140126224965792"], "argTypes": [{"nodeId": ".-1.140126224965792"}], "returnType": {"nodeId": "140126014486368", "args": [{"nodeId": ".-1.140126224965792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126224965792": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126224965792", "variance": "INVARIANT"}, "140125985903488": {"type": "Function", "typeVars": [".-1.140125985903488"], "argTypes": [{"nodeId": ".-1.140125985903488"}], "returnType": {"nodeId": "140126014486368", "args": [{"nodeId": ".-1.140125985903488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140125985903488": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140125985903488", "variance": "INVARIANT"}, "140126224966688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126006995296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "own_fid", "allow_pickle", "pickle_kwargs"]}, "140126006995296": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126224967136": {"type": "Function", "typeVars": [".-1.140126224967136"], "argTypes": [{"nodeId": ".-1.140126224967136"}], "returnType": {"nodeId": ".-1.140126224967136"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126224967136": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126224967136", "variance": "INVARIANT"}, "140126224967584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}, {"nodeId": "140126006995408"}, {"nodeId": "140126006995520"}, {"nodeId": "140126006995632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126006995408": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126006995520": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119323552"}]}, "140126006995632": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120025376"}]}, "140126224968032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126224968480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126224968928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126224969376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126224969824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014486704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126014483680": {"type": "Protocol", "module": "numpy.lib.shape_base", "simpleName": "_ArrayWrap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220821088"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126220821088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014483680"}, {"nodeId": "0"}, {"nodeId": "140126006904640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126006904640": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126006904528"}]}, "140126006904528": {"type": "Tuple", "items": [{"nodeId": "140126010283328"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140126014484016": {"type": "Protocol", "module": "numpy.lib.shape_base", "simpleName": "_ArrayPrepare", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220821536"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126220821536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014484016"}, {"nodeId": "0"}, {"nodeId": "140126006905424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126006905424": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126006905312"}]}, "140126006905312": {"type": "Tuple", "items": [{"nodeId": "140126010283328"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119316160"}]}, "140126014484352": {"type": "Protocol", "module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayWrap", "members": [{"kind": "Variable", "name": "__array_wrap__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125985715840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__array_wrap__"]}, "140125985715840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014484352"}], "returnType": {"nodeId": "140126014483680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014484688": {"type": "Protocol", "module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayPrepare", "members": [{"kind": "Variable", "name": "__array_prepare__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125985737408"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__array_prepare__"]}, "140125985737408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014484688"}], "returnType": {"nodeId": "140126014484016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126014483344": {"type": "Concrete", "module": "numpy.lib.stride_tricks", "simpleName": "DummyArray", "members": [{"kind": "Variable", "name": "__array_interface__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126011192512"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "interface", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126220970112"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126011192512": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126220970112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014483344"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "140126006867136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "interface", "base"]}, "140126006867136": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126014482672": {"type": "Protocol", "module": "numpy.lib.type_check", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125985559424"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014482672"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["real"]}, "140125985559424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014482672", "args": [{"nodeId": ".1.140126014482672"}]}], "returnType": {"nodeId": ".1.140126014482672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014482672": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014482672", "variance": "COVARIANT"}, "140126014483008": {"type": "Protocol", "module": "numpy.lib.type_check", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125985557856"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014483008"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["imag"]}, "140125985557856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014483008", "args": [{"nodeId": ".1.140126014483008"}]}], "returnType": {"nodeId": ".1.140126014483008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126014483008": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014483008", "variance": "COVARIANT"}, "140126014482000": {"type": "Protocol", "module": "numpy.lib.utils", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216234240"}, "name": "write"}], "typeVars": [{"nodeId": ".1.140126014482000"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["write"]}, "140126216234240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014482000", "args": [{"nodeId": ".1.140126014482000"}]}, {"nodeId": ".1.140126014482000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".1.140126014482000": {"type": "TypeVar", "varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126014482000", "variance": "CONTRAVARIANT"}, "140126014482336": {"type": "Concrete", "module": "numpy.lib.utils", "simpleName": "_Deprecate", "members": [{"kind": "Variable", "name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014664912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014662000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014662112"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216234688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126216235136"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126014664912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126014662000": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126014662112": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126216234688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014482336"}, {"nodeId": "140126006696800"}, {"nodeId": "140126006696912"}, {"nodeId": "140126006697024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "old_name", "new_name", "message"]}, "140126006696800": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126006696912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126006697024": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}]}, "140126216235136": {"type": "Function", "typeVars": [".-1.140126216235136"], "argTypes": [{"nodeId": "140126014482336"}, {"nodeId": ".-1.140126216235136"}], "returnType": {"nodeId": ".-1.140126216235136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140126216235136": {"type": "TypeVar", "varName": "_FuncType", "values": [], "upperBound": {"nodeId": "140126019604480"}, "def": "140126216235136", "variance": "INVARIANT"}, "140126019604480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126014477632": {"type": "Protocol", "module": "numpy._typing._array_like", "simpleName": "_SupportsArrayFunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173950944"}, "name": "__array_function__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__array_function__"]}, "140126173950944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014477632"}, {"nodeId": "140126006642496"}, {"nodeId": "140126325570048", "args": [{"nodeId": "0"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}, "140126006642496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126023547056": {"type": "Concrete", "module": "numpy._typing._generic_alias", "simpleName": "_GenericAlias", "members": [{"kind": "Variable", "name": "__slots__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126153751936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031407456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031404992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031398944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__unpacked__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031398272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__typing_unpacked_tuple_args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031397824"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182799424"}, "name": "__init__"}, {"kind": "Variable", "name": "__call__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126031396928"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182800320"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182800768"}, "name": "__mro_entries__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183080000"}, "name": "__dir__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183080448"}, "name": "__hash__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183080896"}, "name": "__instancecheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183081344"}, "name": "__subclasscheck__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183081792"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183082240"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183082688"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183083136"}, "name": "__iter__"}, {"kind": "Variable", "name": "_ATTR_EXCEPTIONS", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119717104", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183083584"}, "name": "__getattribute__"}, {"kind": "Variable", "name": "_origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119315488"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126145187616"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126325563664"}]}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126153751936": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126031407456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119315488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031404992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031398944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126325563664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031398272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126031397824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126006540576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006540576": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126182799424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126119315488"}, {"nodeId": "140126006540688"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "origin", "args", "starred"]}, "140126006540688": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}]}, "140126031396928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182800320": {"type": "Function", "typeVars": [".-1.140126182800320"], "argTypes": [{"nodeId": ".-1.140126182800320"}], "returnType": {"nodeId": "140126006541808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126182800320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126023547056"}, "def": "140126182800320", "variance": "INVARIANT"}, "140126006541808": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126006541584"}]}, "140126006541584": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "140126325562992"}]}, "140126182800768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325561984"}]}], "returnType": {"nodeId": "140126006542144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bases"]}, "140126006542144": {"type": "Tuple", "items": [{"nodeId": "0"}]}, "140126183080000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183080448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183080896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126183081344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126119315488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}, "140126183081792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126183082240": {"type": "Function", "typeVars": [".-1.140126183082240"], "argTypes": [{"nodeId": ".-1.140126183082240"}, {"nodeId": "140126006608048"}], "returnType": {"nodeId": ".-1.140126183082240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126183082240": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126023547056"}, "def": "140126183082240", "variance": "INVARIANT"}, "140126006608048": {"type": "Union", "items": [{"nodeId": "140126325561984"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}]}, "140126183082688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183083136": {"type": "Function", "typeVars": [".-1.140126183083136"], "argTypes": [{"nodeId": ".-1.140126183083136"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140126183083136"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126183083136": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126023547056"}, "def": "140126183083136", "variance": "INVARIANT"}, "140126183083584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023547056"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126145187616": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}]}, "140126014478304": {"type": "Concrete", "module": "numpy.ctypeslib", "simpleName": "_ndptr", "members": [{"kind": "Variable", "name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126014478304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_ndim_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126006050880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126011194976"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006613872"}, "items": [{"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "from_param"}], "typeVars": [{"nodeId": ".1.140126014478304"}], "bases": [{"nodeId": "140126115881232"}], "isAbstract": false}, ".1.140126014478304": {"type": "TypeVar", "varName": "_DTypeOptional", "values": [], "upperBound": {"nodeId": "140126011188592"}, "def": "140126014478304", "variance": "INVARIANT"}, "140126011188592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}]}, "140126006050880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126011194976": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126014661552"}]}]}, "140126014661552": {"type": "TypeAlias", "target": {"nodeId": "140126014664464"}}, "140126014664464": {"type": "Union", "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"}]}, "140126006613872": {"type": "Overloaded", "items": [{"nodeId": "140126216391584"}, {"nodeId": "140126216392032"}]}, "140126216391584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140126014943440", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, "140126216392032": {"type": "Function", "typeVars": [".-1.140126216392032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140126216392032"}]}], "returnType": {"nodeId": "140126014943440", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}, ".-1.140126216392032": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126216392032", "variance": "INVARIANT"}, "140126014478640": {"type": "Concrete", "module": "numpy.ctypeslib", "simpleName": "_concrete_ndptr", "members": [{"kind": "Variable", "name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126014478640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048374112"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126014478640"}], "bases": [{"nodeId": "140126014478304", "args": [{"nodeId": ".1.140126014478640"}]}], "isAbstract": false}, ".1.140126014478640": {"type": "TypeVar", "varName": "_DType", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126014478640", "variance": "INVARIANT"}, "140126048374112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014478640", "args": [{"nodeId": ".1.140126014478640"}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": ".1.140126014478640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039823008": {"type": "Concrete", "module": "numpy.lib._version", "simpleName": "NumpyVersion", "members": [{"kind": "Variable", "name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "major", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "minor", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bugfix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pre_release", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_devversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169731296"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169731744"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169732192"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169732640"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169733088"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169733536"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169733984"}, "name": "__ge__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126169731296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "vstring"]}, "140126169731744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036102608"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036102608": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126169732192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036103504"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036103504": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126169732640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036103616"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036103616": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126169733088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036103728"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036103728": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126169733536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036103840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036103840": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126169733984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823008"}, {"nodeId": "140126036103952"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126036103952": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039823008"}]}, "140126010691584": {"type": "Concrete", "module": "numpy.linalg", "simpleName": "LinAlgError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126014472256": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MAError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126014472592": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MaskError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126014472256"}], "isAbstract": false}, "140126010699312": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MaskedArray", "members": [{"kind": "Variable", "name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165812352"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165812624"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165812896"}, "name": "__array_wrap__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165813168"}, "name": "view"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165813440"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165813712"}, "name": "__setitem__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006610624"}, "items": [{"kind": "Variable", "name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126036158144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "dtype"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006610512"}, "items": [{"kind": "Variable", "name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126036295968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "shape"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165815072"}, "name": "__setmask__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006611184"}, "items": [{"kind": "Variable", "name": "mask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126036303136"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "mask"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006610736"}, "items": [{"kind": "Variable", "name": "recordmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126027518176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "recordmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "recordmask"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165816432"}, "name": "harden_mask"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165816704"}, "name": "soften_mask"}, {"kind": "Variable", "name": "hardmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035482368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165817248"}, "name": "unshare_mask"}, {"kind": "Variable", "name": "sharedmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126036296192"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165817792"}, "name": "shrink_mask"}, {"kind": "Variable", "name": "baseclass", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126182795840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006611296"}, "items": [{"kind": "Variable", "name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126019502368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "flat"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126006611520"}, "items": [{"kind": "Variable", "name": "fill_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035491776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fill_value"}, {"kind": "Variable", "name": "get_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "set_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165819424"}, "name": "filled"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165819696"}, "name": "compressed"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "condition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165819968"}, "name": "compress"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165820240"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165820512"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165820784"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165821056"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165821328"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165821600"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165821872"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165822144"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165822416"}, "name": "__div__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165822688"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165822960"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165823232"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165823504"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165823776"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165824048"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165824320"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165824592"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165824864"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165825136"}, "name": "__idiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165825408"}, "name": "__ifloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165825680"}, "name": "__itruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165825952"}, "name": "__ipow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165826224"}, "name": "__float__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165826496"}, "name": "__int__"}, {"kind": "Variable", "name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126048991296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035948736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165827312"}, "name": "count"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165958720"}, "name": "ravel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165958992"}, "name": "reshape"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "refcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165959264"}, "name": "resize"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165959536"}, "name": "put"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165959808"}, "name": "ids"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165960080"}, "name": "iscontiguous"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165960352"}, "name": "all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165960624"}, "name": "any"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165960896"}, "name": "nonzero"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165961168"}, "name": "trace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165961440"}, "name": "dot"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165961712"}, "name": "sum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165961984"}, "name": "cumsum"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165962256"}, "name": "prod"}, {"kind": "Variable", "name": "product", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165962528"}, "name": "cumprod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165962800"}, "name": "mean"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165963072"}, "name": "anom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165963344"}, "name": "var"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165963616"}, "name": "std"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decimals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165963888"}, "name": "round"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165964160"}, "name": "argsort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165964432"}, "name": "argmin"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165964704"}, "name": "argmax"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165964976"}, "name": "sort"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165965248"}, "name": "min"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165965520"}, "name": "max"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165965792"}, "name": "ptp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165966064"}, "name": "partition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165966336"}, "name": "argpartition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165966608"}, "name": "take"}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "diagonal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flatten", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "repeat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "squeeze", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "swapaxes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165966880"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165967152"}, "name": "tobytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165967424"}, "name": "tofile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165967696"}, "name": "toflex"}, {"kind": "Variable", "name": "torecords", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165967968"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165968240"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}], "bases": [{"nodeId": "140126014946128", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "isAbstract": false}, "140126165812352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165812624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126165812896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}, "140126165813168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type", "fill_value"]}, "140126165813440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165813712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126006610624": {"type": "Overloaded", "items": [{"nodeId": "140126019511776"}]}, "140126019511776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010699312": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010699312", "variance": "INVARIANT"}, ".2.140126010699312": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010699312", "variance": "COVARIANT"}, "140126036158144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006610512": {"type": "Overloaded", "items": [{"nodeId": "140126019512896"}]}, "140126019512896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126036295968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165815072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mask", "copy"]}, "140126006611184": {"type": "Overloaded", "items": [{"nodeId": "140126006641152"}]}, "140126006641152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126036303136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006610736": {"type": "Overloaded", "items": [{"nodeId": "140126006640928"}]}, "140126006640928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027518176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165816432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165816704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035482368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165817248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126036296192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165817792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182795840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006611296": {"type": "Overloaded", "items": [{"nodeId": "140126006641824"}]}, "140126006641824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126019502368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126006611520": {"type": "Overloaded", "items": [{"nodeId": "140126006642048"}]}, "140126006642048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035491776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165819424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}, "140126165819696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165819968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "condition", "axis", "out"]}, "140126165820240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165820512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165820784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165821056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165821328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165821600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165821872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165822144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165822416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126165822688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165822960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165823232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165823504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165823776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165824048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165824320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165824592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165824864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165825136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165825408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165825680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165825952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165826224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126165826496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126048991296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035948736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699312"}, {"nodeId": ".2.140126010699312"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165827312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "keepdims"]}, "140126165958720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}, "140126165958992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "s", "kwargs"]}, "140126165959264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "newshape", "refcheck", "order"]}, "140126165959536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "indices", "values", "mode"]}, "140126165959808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165960080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165960352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140126165960624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}, "140126165960896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165961168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165961440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "b", "out", "strict"]}, "140126165961712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165961984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140126165962256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165962528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}, "140126165962800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165963072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype"]}, "140126165963344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165963616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165963888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}, "140126165964160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165964432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165964704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165964976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165965248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165965520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165965792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165966064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126165966336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126165966608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"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"]}, "140126165966880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}, "140126165967152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fill_value", "order"]}, "140126165967424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}, "140126165967696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165967968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165968240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699312"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "memo"]}, "140126010699648": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "mvoid", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hardmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165968512"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165968784"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165969056"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165969328"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165969600"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165969872"}, "name": "filled"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165970144"}, "name": "tolist"}], "typeVars": [{"nodeId": ".1.140126010699648"}, {"nodeId": ".2.140126010699648"}], "bases": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126010699648"}, {"nodeId": ".2.140126010699648"}]}], "isAbstract": false}, "140126165968512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}, {"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"]}, "140126165968784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165969056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126165969328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126165969600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126165969872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}, "140126165970144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126010699648": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126010699648", "variance": "INVARIANT"}, ".2.140126010699648": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126010699648", "variance": "COVARIANT"}, "140126010690912": {"type": "Concrete", "module": "numpy.polynomial.chebyshev", "simpleName": "Chebyshev", "members": [{"kind": "Variable", "name": "interpolate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125947902912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140125947902912": {"type": "Function", "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"]}, "140126039818640": {"type": "Concrete", "module": "numpy.polynomial._polybase", "simpleName": "ABCPolyBase", "members": [{"kind": "Variable", "name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maxpower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "symbol", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040011296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "domain", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040010176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040010848"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126148700736"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148675504"}, "name": "has_samecoef"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148675776"}, "name": "has_samedomain"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148676048"}, "name": "has_samewindow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148676320"}, "name": "has_sametype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "symbol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148694016"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fmt_str", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148676864"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148677136"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148677408"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148677680"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148677952"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148678224"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148678496"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148678768"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148679040"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148679312"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148679584"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148679856"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148680128"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148680400"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148680672"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148680944"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148681216"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148681488"}, "name": "__rdiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148681760"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148682032"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148682304"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148682576"}, "name": "__rdivmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148682848"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148683120"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148683392"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148683664"}, "name": "degree"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "deg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148683936"}, "name": "cutdeg"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148684208"}, "name": "trim"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148684480"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148684752"}, "name": "convert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148685024"}, "name": "mapparms"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lbnd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148685296"}, "name": "integ"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148685568"}, "name": "deriv"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148685840"}, "name": "roots"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148686112"}, "name": "linspace"}, {"kind": "Variable", "name": "fit", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126127897984"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fromroots", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090356192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "identity", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040014432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040013760"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040013536"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119707696"}], "isAbstract": true}, "140126040011296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126040010176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126040010848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148700736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148675504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126148675776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126148676048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126148676320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126148694016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "coef", "domain", "window", "symbol"]}, "140126148676864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt_str"]}, "140126148677136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}, "140126148677408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126148677680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126148677952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126148678224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126148678496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148678768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148679040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148679312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148679584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148679856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148680128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148680400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148680672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148680944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148681216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148681488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148681760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148682032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148682304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148682576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126148682848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148683120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148683392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148683664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148683936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "deg"]}, "140126148684208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tol"]}, "140126148684480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "size"]}, "140126148684752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "domain", "kind", "window"]}, "140126148685024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148685296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k", "lbnd"]}, "140126148685568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}, "140126148685840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148686112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039818640"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "n", "domain"]}, "140126127897984": {"type": "Function", "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"]}, "140126090356192": {"type": "Function", "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"]}, "140126040014432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "domain", "window"]}, "140126040013760": {"type": "Function", "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"]}, "140126040013536": {"type": "Function", "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"]}, "140126119707696": {"type": "Concrete", "module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126010690576": {"type": "Concrete", "module": "numpy.polynomial.hermite", "simpleName": "Hermite", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140126010690240": {"type": "Concrete", "module": "numpy.polynomial.hermite_e", "simpleName": "HermiteE", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140126010689904": {"type": "Concrete", "module": "numpy.polynomial.laguerre", "simpleName": "Laguerre", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140126010689568": {"type": "Concrete", "module": "numpy.polynomial.legendre", "simpleName": "Legendre", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140126010689232": {"type": "Concrete", "module": "numpy.polynomial.polynomial", "simpleName": "Polynomial", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126039818640"}], "isAbstract": false}, "140126010696960": {"type": "Concrete", "module": "numpy.random._generator", "simpleName": "Generator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166253856"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166254304"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166254752"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166255200"}, "name": "__getstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166255648"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166256096"}, "name": "__reduce__"}, {"kind": "Variable", "name": "bit_generator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943083104"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166256992"}, "name": "bytes"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126023078672"}, "items": [{"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_normal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126027027216"}, "items": [{"kind": "Variable", "name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "permutation"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126027027888"}, "items": [{"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_exponential"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126036107648"}, "items": [{"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "random"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010687184"}, "items": [{"kind": "Variable", "name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "beta"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126036105296"}, "items": [{"kind": "Variable", "name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "exponential"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040234736"}, "items": [{"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "integers"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040233056"}, "items": [{"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "choice"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126035880064"}, "items": [{"kind": "Variable", "name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "uniform"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048691792"}, "items": [{"kind": "Variable", "name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "normal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040231712"}, "items": [{"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_gamma"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048682720"}, "items": [{"kind": "Variable", "name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "gamma"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010924432"}, "items": [{"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "f"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048563968"}, "items": [{"kind": "Variable", "name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "noncentral_f"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048559936"}, "items": [{"kind": "Variable", "name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "chisquare"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048682048"}, "items": [{"kind": "Variable", "name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "noncentral_chisquare"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048556688"}, "items": [{"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_t"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048555456"}, "items": [{"kind": "Variable", "name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "vonmises"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048554336"}, "items": [{"kind": "Variable", "name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pareto"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048553104"}, "items": [{"kind": "Variable", "name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "weibull"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048551088"}, "items": [{"kind": "Variable", "name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "power"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048550976"}, "items": [{"kind": "Variable", "name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_cauchy"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048400352"}, "items": [{"kind": "Variable", "name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "laplace"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048398448"}, "items": [{"kind": "Variable", "name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "gumbel"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048397216"}, "items": [{"kind": "Variable", "name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "logistic"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048395648"}, "items": [{"kind": "Variable", "name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "lognormal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048394416"}, "items": [{"kind": "Variable", "name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rayleigh"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048392288"}, "items": [{"kind": "Variable", "name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "wald"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048391840"}, "items": [{"kind": "Variable", "name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "triangular"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048390608"}, "items": [{"kind": "Variable", "name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "binomial"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010924320"}, "items": [{"kind": "Variable", "name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "negative_binomial"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048387920"}, "items": [{"kind": "Variable", "name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "poisson"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010926000"}, "items": [{"kind": "Variable", "name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "zipf"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048219456"}, "items": [{"kind": "Variable", "name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "geometric"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048387696"}, "items": [{"kind": "Variable", "name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "hypergeometric"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126048216992"}, "items": [{"kind": "Variable", "name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "logseries"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157013728"}, "name": "multivariate_normal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157014176"}, "name": "multinomial"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "colors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "nsample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157014624"}, "name": "multivariate_hypergeometric"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157015072"}, "name": "dirichlet"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157015520"}, "name": "permuted"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157015968"}, "name": "shuffle"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126166253856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126010688896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bit_generator"]}, "140126010688896": {"type": "Concrete", "module": "numpy.random.bit_generator", "simpleName": "BitGenerator", "members": [{"kind": "Variable", "name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111609376"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166390080"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166390528"}, "name": "__getstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166390976"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166391424"}, "name": "__reduce__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010676656"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943163904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989436352"}, "items": [{"kind": "Variable", "name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "random_raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cnt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166394112"}, "name": "_benchmark"}, {"kind": "Variable", "name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943164128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cffi", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943164800"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119707696"}], "isAbstract": true}, "140126111609376": {"type": "Concrete", "module": "threading", "simpleName": "Lock", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149298432"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149298880"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149299328"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149299776"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149300224"}, "name": "locked"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149298432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609376"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126149298880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609376"}, {"nodeId": "140126039959792"}, {"nodeId": "140126039959904"}, {"nodeId": "140126039960016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126039959792": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126039959904": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039960016": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126149299328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609376"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126149299776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149300224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609376"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166390080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "140125989536592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140125989536592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989536816"}, {"nodeId": "140126010688560"}]}, "140125989536816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010688560": {"type": "Concrete", "module": "numpy.random.bit_generator", "simpleName": "SeedSequence", "members": [{"kind": "Variable", "name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010486768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pool", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010487440"}]}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166387840"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166388288"}, "name": "__repr__"}, {"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943161888"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166389184"}, "name": "generate_state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166389632"}, "name": "spawn"}], "typeVars": [], "bases": [{"nodeId": "140126010687888"}], "isAbstract": false}, "140126010486768": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}]}, "140126010487440": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126166387840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688560"}, {"nodeId": "140125989437136"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140125989437136": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140125989436016"}]}, "140125989436016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126166388288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688560"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125943161888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688560"}], "returnType": {"nodeId": "140125989436464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125989436464": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126166389184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688560"}, {"nodeId": "140126119316160"}, {"nodeId": "140125989436688"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125989535808"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}, "140125989436688": {"type": "Union", "items": [{"nodeId": "140125989437248"}, {"nodeId": "140125989436128"}]}, "140125989437248": {"type": "TypeAlias", "target": {"nodeId": "140126006317616"}}, "140126006317616": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010482400"}]}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010483408"}]}]}, {"nodeId": "0"}, {"nodeId": "140126006318064"}]}, "140126010482400": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126010483408": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126006318064": {"type": "TypeAlias", "target": {"nodeId": "140126036313472"}}, "140125989436128": {"type": "TypeAlias", "target": {"nodeId": "140126006317840"}}, "140126006317840": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010483520"}]}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010487328"}]}]}, {"nodeId": "0"}, {"nodeId": "140126010487664"}]}, "140126010483520": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126010487328": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126010487664": {"type": "TypeAlias", "target": {"nodeId": "140126036314144"}}, "140125989535808": {"type": "Union", "items": [{"nodeId": "140125989436912"}, {"nodeId": "140125989437024"}]}, "140125989436912": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125989437024": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126166389632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688560"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126010688560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}, "140126010687888": {"type": "Concrete", "module": "numpy.random.bit_generator", "simpleName": "ISpawnableSeedSequence", "members": [{"kind": "Variable", "name": "spawn", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125943158304"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126010687552"}], "isAbstract": true}, "140125943158304": {"type": "Function", "typeVars": [".-1.140125943158304"], "argTypes": [{"nodeId": ".-1.140125943158304"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140125943158304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}, ".-1.140125943158304": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140125943158304", "variance": "INVARIANT"}, "140126010687552": {"type": "Concrete", "module": "numpy.random.bit_generator", "simpleName": "ISeedSequence", "members": [{"kind": "Variable", "name": "generate_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125943157632"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119707696"}], "isAbstract": true}, "140125943157632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010687552"}, {"nodeId": "140126119316160"}, {"nodeId": "140125989435008"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125989435456"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}, "140125989435008": {"type": "Union", "items": [{"nodeId": "140125989434784"}, {"nodeId": "140125989434896"}]}, "140125989434784": {"type": "TypeAlias", "target": {"nodeId": "140126006317616"}}, "140125989434896": {"type": "TypeAlias", "target": {"nodeId": "140126006317840"}}, "140125989435456": {"type": "Union", "items": [{"nodeId": "140125989435232"}, {"nodeId": "140125989435344"}]}, "140125989435232": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125989435344": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126166390528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166390976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140126166391424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140125989536704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125989536704": {"type": "Tuple", "items": [{"nodeId": "140125989347488"}, {"nodeId": "140125989536928"}, {"nodeId": "140125989536368"}]}, "140125989347488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010688896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125989536928": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140125989536368": {"type": "Tuple", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126010676656": {"type": "Overloaded", "items": [{"nodeId": "140126166391872"}]}, "140126166391872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125943163904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125989436352": {"type": "Overloaded", "items": [{"nodeId": "140126166392768"}, {"nodeId": "140126166393216"}, {"nodeId": "140126166393664"}]}, "140126166392768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}, "140126166393216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "140125989538160"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125989538496"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}, "140125989538160": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125989538496": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126166393664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "140125989538944"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}, "140125989538944": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125989538832"}]}, "140125989538832": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126166394112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cnt", "method"]}, "140125943164128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140125989539168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125989539168": {"type": "TypeAlias", "target": {"nodeId": "140126010671504"}}, "140126010671504": {"type": "Tuple", "items": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "140125943164800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688896"}], "returnType": {"nodeId": "140125989539280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125989539280": {"type": "TypeAlias", "target": {"nodeId": "140126010671504"}}, "140126166254304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126166254752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126166255200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166255648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140126166256096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}], "returnType": {"nodeId": "140126022934240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126022934240": {"type": "Tuple", "items": [{"nodeId": "140126019452064"}, {"nodeId": "140126022935360"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126019452064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010696960"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126022935360": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140125943083104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}], "returnType": {"nodeId": "140126010688896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166256992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}, "140126023078672": {"type": "Overloaded", "items": [{"nodeId": "140126166257440"}, {"nodeId": "140126166257888"}, {"nodeId": "140126166258336"}, {"nodeId": "140126166258784"}, {"nodeId": "140126166259232"}]}, "140126166257440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "N"}, {"nodeId": "140126027990624"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126027990624": {"type": "Union", "items": [{"nodeId": "140126027990848"}, {"nodeId": "140126027990512"}]}, "140126027990848": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126010686960": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010922192"}]}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010918496"}]}]}, {"nodeId": "0"}, {"nodeId": "140126010684944"}, {"nodeId": "140126010687072"}]}, "140126010922192": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126010918496": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126010684944": {"type": "TypeAlias", "target": {"nodeId": "140126036318176"}}, "140126010687072": {"type": "TypeAlias", "target": {"nodeId": "140126036363072"}}, "140126027990512": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126010686512": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010922864"}]}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126010918384"}]}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126010922752"}, {"nodeId": "140126010922640"}]}, "140126010922864": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126010918384": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126010922752": {"type": "TypeAlias", "target": {"nodeId": "140126036318848"}}, "140126010922640": {"type": "TypeAlias", "target": {"nodeId": "140126036364192"}}, "140126166257888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126027989280"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027989392"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126027989280": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126027989392": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166258336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027990960"}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027989616"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}, "140126027990960": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126027989616": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166258784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126027251296"}, {"nodeId": "140126027773456"}, {"nodeId": "140126027772336"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027773232"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126027251296": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126027773456": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126027772336": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027772224"}]}]}]}, "140126027772224": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126027773232": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126166259232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126027764160"}, {"nodeId": "140126027763936"}, {"nodeId": "140126027763488"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027763264"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126027764160": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126027763936": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126027763488": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027763600"}]}]}]}, "140126027763600": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126027763264": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126027027216": {"type": "Overloaded", "items": [{"nodeId": "140126166259680"}, {"nodeId": "140126166260128"}]}, "140126166259680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126027763824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}, "140126027763824": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126166260128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126027134704"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}, "140126027134704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126027027888": {"type": "Overloaded", "items": [{"nodeId": "140126166260576"}, {"nodeId": "140126166261024"}, {"nodeId": "140126166261472"}, {"nodeId": "140126166261920"}, {"nodeId": "140126166262368"}, {"nodeId": "140126166262816"}]}, "140126166260576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "N"}, {"nodeId": "140126036423312"}, {"nodeId": "140126036110448"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}, "140126036423312": {"type": "Union", "items": [{"nodeId": "140126036423648"}, {"nodeId": "140126036423424"}]}, "140126036423648": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126036423424": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126036110448": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126166261024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126036109664"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036112576"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126036109664": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126036112576": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166261472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036109552"}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036112352"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}, "140126036109552": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126036112352": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166261920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126036110336"}, {"nodeId": "140126036108432"}, {"nodeId": "140126036107200"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036107760"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "method", "out"]}, "140126036110336": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126036108432": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126036107200": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036108320"}]}]}]}, "140126036108320": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126036107760": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166262368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126036107424"}, {"nodeId": "140126036104848"}, {"nodeId": "140126036106416"}, {"nodeId": "140126036106304"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036105408"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}, "140126036107424": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126036104848": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126036106416": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126036106304": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126036106528"}]}]}]}, "140126036106528": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126036105408": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126166262816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126036105744"}, {"nodeId": "140126036105520"}, {"nodeId": "140126036102720"}, {"nodeId": "140126035879952"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035881072"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}, "140126036105744": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126036105520": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126036102720": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126035879952": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035885104"}]}]}]}, "140126035885104": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126035881072": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126036107648": {"type": "Overloaded", "items": [{"nodeId": "140126166263264"}, {"nodeId": "140126166263712"}, {"nodeId": "140126166264160"}, {"nodeId": "140126166264608"}, {"nodeId": "140126166265056"}]}, "140126166263264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "N"}, {"nodeId": "140126035880736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126035880736": {"type": "Union", "items": [{"nodeId": "140126035874912"}, {"nodeId": "140126035880176"}]}, "140126035874912": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126035880176": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126166263712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035878496"}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035585712"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}, "140126035878496": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126035585712": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166264160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126035585936"}, {"nodeId": "140126035578096"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035673152"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "out"]}, "140126035585936": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126035578096": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035577760"}]}]}]}, "140126035577760": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126035673152": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126166264608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126035679088"}, {"nodeId": "140126035673376"}, {"nodeId": "140126035678080"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040160656"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126035679088": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126035673376": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126035678080": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126035673488"}]}]}]}, "140126035673488": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126040160656": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126166265056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040151360"}, {"nodeId": "140126040157296"}, {"nodeId": "140126040152704"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040235408"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}, "140126040151360": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040157296": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126040152704": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040150128"}]}]}]}, "140126040150128": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126040235408": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126010687184": {"type": "Overloaded", "items": [{"nodeId": "140126166265504"}, {"nodeId": "140126166265952"}]}, "140126166265504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}, "140126166265952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040235184"}, {"nodeId": "140126040235296"}, {"nodeId": "140126040233728"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040233840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}, "140126040235184": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040235296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040233728": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040235072"}]}, "140126040235072": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040233840": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126036105296": {"type": "Overloaded", "items": [{"nodeId": "140126166266400"}, {"nodeId": "140126166266848"}]}, "140126166266400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126166266848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040242128"}, {"nodeId": "140126040234400"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040233392"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126040242128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040234400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040233952"}]}, "140126040233952": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040233392": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126040234736": {"type": "Overloaded", "items": [{"nodeId": "140126166267296"}, {"nodeId": "140126166267744"}, {"nodeId": "140126166268192"}, {"nodeId": "140126166268640"}, {"nodeId": "140126166269088"}, {"nodeId": "140126166269536"}, {"nodeId": "140126161813792"}, {"nodeId": "140126161814240"}, {"nodeId": "140126161814688"}, {"nodeId": "140126161815136"}, {"nodeId": "140126161815584"}, {"nodeId": "140126161816032"}, {"nodeId": "140126161816480"}, {"nodeId": "140126161816928"}, {"nodeId": "140126161817376"}]}, "140126166267296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126040234624"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}, "140126040234624": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126166267744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126040233280"}, {"nodeId": "N"}, {"nodeId": "140126040232720"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126040233280": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126040232720": {"type": "TypeAlias", "target": {"nodeId": "140126011100400"}}, "140126011100400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "0"}]}, {"nodeId": "140126011100512"}]}, "140126011100512": {"type": "TypeAlias", "target": {"nodeId": "140126036114928"}}, "140126166268192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126040232384"}, {"nodeId": "N"}, {"nodeId": "140126040231040"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126040232384": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126040231040": {"type": "Union", "items": [{"nodeId": "140126040232608"}, {"nodeId": "140126040233168"}]}, "140126040232608": {"type": "TypeAlias", "target": {"nodeId": "140126006396064"}}, "140126006396064": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "0"}]}, {"nodeId": "140126011098384"}, {"nodeId": "140126011097264"}, {"nodeId": "140126011097376"}, {"nodeId": "140126011100624"}, {"nodeId": "140126011097936"}, {"nodeId": "140126011100848"}, {"nodeId": "140126011098272"}, {"nodeId": "140126006395728"}, {"nodeId": "140126006395840"}, {"nodeId": "140126006395952"}]}, "140126011098384": {"type": "TypeAlias", "target": {"nodeId": "140126036314816"}}, "140126011097264": {"type": "TypeAlias", "target": {"nodeId": "140126036315488"}}, "140126011097376": {"type": "TypeAlias", "target": {"nodeId": "140126036316160"}}, "140126011100624": {"type": "TypeAlias", "target": {"nodeId": "140126036316832"}}, "140126011097936": {"type": "TypeAlias", "target": {"nodeId": "140126036320864"}}, "140126011100848": {"type": "TypeAlias", "target": {"nodeId": "140126036321536"}}, "140126011098272": {"type": "TypeAlias", "target": {"nodeId": "140126036322208"}}, "140126006395728": {"type": "TypeAlias", "target": {"nodeId": "140126036323104"}}, "140126006395840": {"type": "TypeAlias", "target": {"nodeId": "140126036324112"}}, "140126006395952": {"type": "TypeAlias", "target": {"nodeId": "140126036324560"}}, "140126040233168": {"type": "TypeAlias", "target": {"nodeId": "140126006395616"}}, "140126006395616": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126023548064", "args": [{"nodeId": "0"}]}, {"nodeId": "140126006327584"}, {"nodeId": "140126006327360"}, {"nodeId": "140126006327472"}, {"nodeId": "140126006327808"}, {"nodeId": "140126006328256"}, {"nodeId": "140126006327920"}, {"nodeId": "140126006328032"}, {"nodeId": "140126006395280"}, {"nodeId": "140126006395392"}, {"nodeId": "140126006395504"}]}, "140126006327584": {"type": "TypeAlias", "target": {"nodeId": "140126036312128"}}, "140126006327360": {"type": "TypeAlias", "target": {"nodeId": "140126036312800"}}, "140126006327472": {"type": "TypeAlias", "target": {"nodeId": "140126036313472"}}, "140126006327808": {"type": "TypeAlias", "target": {"nodeId": "140126036314144"}}, "140126006328256": {"type": "TypeAlias", "target": {"nodeId": "140126036325232"}}, "140126006327920": {"type": "TypeAlias", "target": {"nodeId": "140126036325904"}}, "140126006328032": {"type": "TypeAlias", "target": {"nodeId": "140126036326576"}}, "140126006395280": {"type": "TypeAlias", "target": {"nodeId": "140126036327472"}}, "140126006395392": {"type": "TypeAlias", "target": {"nodeId": "140126036328256"}}, "140126006395504": {"type": "TypeAlias", "target": {"nodeId": "140126036361728"}}, "140126166268640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040231376"}, {"nodeId": "140126040230144"}, {"nodeId": "140126040231264"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040232496"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140126040231376": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040230144": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040230480"}]}, "140126040230480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040231264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040230704"}]}, "140126040230704": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040232496": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126166269088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040229920"}, {"nodeId": "140126040231152"}, {"nodeId": "140126040230592"}, {"nodeId": "140126040231936"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126040229920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040231152": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040231824"}]}, "140126040231824": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040230592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040230032"}]}, "140126040230032": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040231936": {"type": "TypeAlias", "target": {"nodeId": "140126011100400"}}, "140126166269536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040230256"}, {"nodeId": "140126039776432"}, {"nodeId": "140126039778560"}, {"nodeId": "140126039785168"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126039772288"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126040230256": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039776432": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039784944"}]}, "140126039784944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039778560": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039774080"}]}, "140126039774080": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126039785168": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039784832"}]}, {"nodeId": "0"}, {"nodeId": "140126039785056"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039773184"}]}]}]}, "140126039784832": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126039785056": {"type": "TypeAlias", "target": {"nodeId": "140126036314816"}}, "140126039773184": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126039772288": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126161813792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126039775648"}, {"nodeId": "140126039775760"}, {"nodeId": "140126039775984"}, {"nodeId": "140126039963264"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126039954864"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126039775648": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039775760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039775872"}]}, "140126039775872": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039775984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039775536"}]}, "140126039775536": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126039963264": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039775424"}]}, {"nodeId": "0"}, {"nodeId": "140126039775312"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039773968"}]}]}]}, "140126039775424": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140126039775312": {"type": "TypeAlias", "target": {"nodeId": "140126036315488"}}, "140126039773968": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140126039954864": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140126161814240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126039964272"}, {"nodeId": "140126039963376"}, {"nodeId": "140126039963600"}, {"nodeId": "140126039962928"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126039951392"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126039964272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039963376": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039962816"}]}, "140126039962816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039963600": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039965056"}]}, "140126039965056": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126039962928": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039954416"}]}, {"nodeId": "0"}, {"nodeId": "140126039953968"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126039954640"}]}]}]}, "140126039954416": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140126039953968": {"type": "TypeAlias", "target": {"nodeId": "140126036316160"}}, "140126039954640": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140126039951392": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140126161814688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126039951840"}, {"nodeId": "140126039951168"}, {"nodeId": "140126039951616"}, {"nodeId": "140126040620416"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040614592"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126039951840": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039951168": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039951280"}]}, "140126039951280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126039951616": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126039951728"}]}, "140126039951728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126040620416": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126040619296"}]}, {"nodeId": "0"}, {"nodeId": "140126040618176"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126040619632"}]}]}]}, "140126040619296": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126040618176": {"type": "TypeAlias", "target": {"nodeId": "140126036316832"}}, "140126040619632": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126040614592": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126161815136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126040608880"}, {"nodeId": "140126040607760"}, {"nodeId": "140126040615040"}, {"nodeId": "140126044814048"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126044807328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126040608880": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040607760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040614928"}]}, "140126040614928": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126040615040": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126040618064"}]}, "140126040618064": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126044814048": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126040613360"}]}, {"nodeId": "0"}, {"nodeId": "140126040614480"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126040607536"}]}]}]}, "140126040613360": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126040614480": {"type": "TypeAlias", "target": {"nodeId": "140126036312128"}}, "140126040607536": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126044807328": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126161815584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126044802960"}, {"nodeId": "140126044805088"}, {"nodeId": "140126044803184"}, {"nodeId": "140126043821264"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126043820592"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126044802960": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126044805088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126044808896"}]}, "140126044808896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126044803184": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126044809456"}]}, "140126044809456": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126043821264": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126044804640"}]}, {"nodeId": "0"}, {"nodeId": "140126044807216"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126044799264"}]}]}]}, "140126044804640": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140126044807216": {"type": "TypeAlias", "target": {"nodeId": "140126036312800"}}, "140126044799264": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140126043820592": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140126161816032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126043820480"}, {"nodeId": "140126048909824"}, {"nodeId": "140126048911168"}, {"nodeId": "140126048908928"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048907920"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126043820480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048909824": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126043819248"}]}, "140126043819248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048911168": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048910944"}]}, "140126048910944": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048908928": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048909488"}]}, {"nodeId": "0"}, {"nodeId": "140126048910048"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048909712"}]}]}]}, "140126048909488": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126048910048": {"type": "TypeAlias", "target": {"nodeId": "140126036313472"}}, "140126048909712": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126048907920": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126161816480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048906128"}, {"nodeId": "140126048905568"}, {"nodeId": "140126048906912"}, {"nodeId": "140126048903440"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048902544"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126048906128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048905568": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048907808"}]}, "140126048907808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048906912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048906352"}]}, "140126048906352": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048903440": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048905008"}]}, {"nodeId": "0"}, {"nodeId": "140126048904672"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048903664"}]}]}]}, "140126048905008": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126048904672": {"type": "TypeAlias", "target": {"nodeId": "140126036314144"}}, "140126048903664": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126048902544": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126161816928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048896944"}, {"nodeId": "140126048899408"}, {"nodeId": "140126048901088"}, {"nodeId": "140126048895152"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048895376"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126048896944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048899408": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048901200"}]}, "140126048901200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048901088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048899632"}]}, "140126048899632": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048895152": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048897728"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126048897840"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048895712"}]}]}]}, "140126048897728": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126048897840": {"type": "TypeAlias", "target": {"nodeId": "140126036324112"}}, "140126048895712": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126048895376": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126161817376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048696832"}, {"nodeId": "140126048696720"}, {"nodeId": "140126048697840"}, {"nodeId": "140126048696496"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048695152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}, "140126048696832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048696720": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048698064"}]}, "140126048698064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048697840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048697616"}]}, "140126048697616": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048696496": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048697392"}]}, {"nodeId": "0"}, {"nodeId": "140126048697168"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140126048696608"}]}]}]}, "140126048697392": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140126048697168": {"type": "TypeAlias", "target": {"nodeId": "140126036328256"}}, "140126048696608": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140126048695152": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140126040233056": {"type": "Overloaded", "items": [{"nodeId": "140126161817824"}, {"nodeId": "140126161818272"}, {"nodeId": "140126161818720"}, {"nodeId": "140126161819168"}]}, "140126161817824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048693808"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}, "140126048693808": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048695600"}]}, "140126048695600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126161818272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126048694704"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048694928"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048692576"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}, "140126048694704": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048694928": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048693360"}]}, "140126048693360": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048692576": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126161818720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048692912"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048693248"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "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"]}, "140126048692912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048693248": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048695712"}]}, "140126048695712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126161819168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048693136"}, {"nodeId": "140126048692352"}, {"nodeId": "140126325562992"}, {"nodeId": "140126048692128"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126014946128", "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"]}, "140126048693136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048692352": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048692128": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048692464"}]}, "140126048692464": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126035880064": {"type": "Overloaded", "items": [{"nodeId": "140126161819616"}, {"nodeId": "140126161820064"}]}, "140126161819616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140126161820064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048691232"}, {"nodeId": "140126048691680"}, {"nodeId": "140126048690672"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048690896"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140126048691232": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048691680": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048690672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048691456"}]}, "140126048691456": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048690896": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048691792": {"type": "Overloaded", "items": [{"nodeId": "140126161820512"}, {"nodeId": "140126161820960"}]}, "140126161820512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126161820960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048691904"}, {"nodeId": "140126048690784"}, {"nodeId": "140126048690112"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048689104"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126048691904": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048690784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048690112": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048689776"}]}, "140126048689776": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048689104": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126040231712": {"type": "Overloaded", "items": [{"nodeId": "140126161821408"}, {"nodeId": "140126161821856"}, {"nodeId": "140126161822304"}, {"nodeId": "140126161822752"}, {"nodeId": "140126161823200"}]}, "140126161821408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}, {"nodeId": "140126048686864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}, "140126048686864": {"type": "Union", "items": [{"nodeId": "140126048687200"}, {"nodeId": "140126048687424"}]}, "140126048687200": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126048687424": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126161821856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048685408"}, {"nodeId": "140126048685632"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048686640"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}, "140126048685408": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048685632": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048686416"}]}, "140126048686416": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048686640": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126161822304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048684736"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048684960"}]}]}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048685856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "out"]}, "140126048684736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048684960": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048685856": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126161822752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048685296"}, {"nodeId": "140126048683840"}, {"nodeId": "140126048684176"}, {"nodeId": "140126048682944"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048683168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}, "140126048685296": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048683840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048684288"}]}, "140126048684288": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048684176": {"type": "TypeAlias", "target": {"nodeId": "140126010686960"}}, "140126048682944": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048683392"}]}]}]}, "140126048683392": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126048683168": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480992"}]}}, "140126161823200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048686752"}, {"nodeId": "140126048682272"}, {"nodeId": "140126048566880"}, {"nodeId": "140126048565760"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048565088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}, "140126048686752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048682272": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048682496"}]}, "140126048682496": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048566880": {"type": "TypeAlias", "target": {"nodeId": "140126010686512"}}, "140126048565760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048566544"}]}]}]}, "140126048566544": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048565088": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048682720": {"type": "Overloaded", "items": [{"nodeId": "140126161823648"}, {"nodeId": "140126161824096"}]}, "140126161823648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}, "140126161824096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048564640"}, {"nodeId": "140126048564416"}, {"nodeId": "140126048562512"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048561056"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}, "140126048564640": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048564416": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048562512": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048564192"}]}, "140126048564192": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048561056": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126010924432": {"type": "Overloaded", "items": [{"nodeId": "140126161824544"}, {"nodeId": "140126161824992"}]}, "140126161824544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}, "140126161824992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048564864"}, {"nodeId": "140126048562848"}, {"nodeId": "140126048562624"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048561168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}, "140126048564864": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048562848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048562624": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048563520"}]}, "140126048563520": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048561168": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048563968": {"type": "Overloaded", "items": [{"nodeId": "140126161825440"}, {"nodeId": "140126161825888"}]}, "140126161825440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}, "140126161825888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048563744"}, {"nodeId": "140126048560160"}, {"nodeId": "140126048558480"}, {"nodeId": "140126048559824"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048559488"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}, "140126048563744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048560160": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048558480": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048559824": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048559264"}]}, "140126048559264": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048559488": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048559936": {"type": "Overloaded", "items": [{"nodeId": "140126161826336"}, {"nodeId": "140126161826784"}]}, "140126161826336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126161826784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048557584"}, {"nodeId": "140126048558704"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048558256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126048557584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048558704": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048559040"}]}, "140126048559040": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048558256": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048682048": {"type": "Overloaded", "items": [{"nodeId": "140126161827232"}, {"nodeId": "140126161827680"}]}, "140126161827232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}, "140126161827680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048556240"}, {"nodeId": "140126048556128"}, {"nodeId": "140126048556016"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048555568"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}, "140126048556240": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048556128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048556016": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048555792"}]}, "140126048555792": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048555568": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048556688": {"type": "Overloaded", "items": [{"nodeId": "140126161828128"}, {"nodeId": "140126161828576"}, {"nodeId": "140126161829024"}]}, "140126161828128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126161828576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048556576"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048555008"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126048556576": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048555008": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126161829024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048554560"}, {"nodeId": "140126048555120"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048554448"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126048554560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048555120": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048554448": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048555456": {"type": "Overloaded", "items": [{"nodeId": "140126161829472"}, {"nodeId": "140126162059552"}]}, "140126161829472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}, "140126162059552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048554896"}, {"nodeId": "140126048554224"}, {"nodeId": "140126048553328"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048552544"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}, "140126048554896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048554224": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048553328": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048553552"}]}, "140126048553552": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048552544": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048554336": {"type": "Overloaded", "items": [{"nodeId": "140126162060000"}, {"nodeId": "140126162060448"}]}, "140126162060000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126162060448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048553776"}, {"nodeId": "140126048551984"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048551536"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126048553776": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048551984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048553216"}]}, "140126048553216": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048551536": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048553104": {"type": "Overloaded", "items": [{"nodeId": "140126162060896"}, {"nodeId": "140126162061344"}]}, "140126162060896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126162061344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048552432"}, {"nodeId": "140126048402592"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048402928"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126048552432": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048402592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048551312"}]}, "140126048551312": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048402928": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048551088": {"type": "Overloaded", "items": [{"nodeId": "140126162061792"}, {"nodeId": "140126162062240"}]}, "140126162061792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126162062240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048402144"}, {"nodeId": "140126048401920"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048401472"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126048402144": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048401920": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048403152"}]}, "140126048403152": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048401472": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048550976": {"type": "Overloaded", "items": [{"nodeId": "140126162062688"}, {"nodeId": "140126162063136"}]}, "140126162062688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126162063136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048398784"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048398112"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126048398784": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048398112": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048400352": {"type": "Overloaded", "items": [{"nodeId": "140126162063584"}, {"nodeId": "140126162064032"}]}, "140126162063584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126162064032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048398000"}, {"nodeId": "140126048397888"}, {"nodeId": "140126048397776"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048397328"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126048398000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048397888": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048397776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048397552"}]}, "140126048397552": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048397328": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048398448": {"type": "Overloaded", "items": [{"nodeId": "140126162064480"}, {"nodeId": "140126162064928"}]}, "140126162064480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126162064928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048394304"}, {"nodeId": "140126048396992"}, {"nodeId": "140126048396432"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048396320"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126048394304": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048396992": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048396432": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048396768"}]}, "140126048396768": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048396320": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048397216": {"type": "Overloaded", "items": [{"nodeId": "140126162065376"}, {"nodeId": "140126162065824"}]}, "140126162065376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126162065824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048396880"}, {"nodeId": "140126048396208"}, {"nodeId": "140126048395424"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048395200"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126048396880": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048396208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048395424": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048395536"}]}, "140126048395536": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048395200": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048395648": {"type": "Overloaded", "items": [{"nodeId": "140126162066272"}, {"nodeId": "140126162066720"}]}, "140126162066272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}, "140126162066720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048395984"}, {"nodeId": "140126048394080"}, {"nodeId": "140126048393856"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048393072"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}, "140126048395984": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048394080": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048393856": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048394640"}]}, "140126048394640": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048393072": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048394416": {"type": "Overloaded", "items": [{"nodeId": "140126162067168"}, {"nodeId": "140126162067616"}]}, "140126162067168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126162067616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048394864"}, {"nodeId": "140126048392400"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048391952"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126048394864": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048392400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048393520"}]}, "140126048393520": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048391952": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048392288": {"type": "Overloaded", "items": [{"nodeId": "140126162068064"}, {"nodeId": "140126162068512"}]}, "140126162068064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}, "140126162068512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048392624"}, {"nodeId": "140126048392064"}, {"nodeId": "140126048390720"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048391056"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}, "140126048392624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048392064": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048390720": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048391504"}]}, "140126048391504": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048391056": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048391840": {"type": "Overloaded", "items": [{"nodeId": "140126162068960"}, {"nodeId": "140126162069408"}]}, "140126162068960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}, "140126162069408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048391728"}, {"nodeId": "140126048390832"}, {"nodeId": "140126048390496"}, {"nodeId": "140126048390160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048389152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}, "140126048391728": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048390832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048390496": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048390160": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048390272"}]}, "140126048390272": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048389152": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126048390608": {"type": "Overloaded", "items": [{"nodeId": "140126162069856"}, {"nodeId": "140126162070304"}]}, "140126162069856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126162070304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048390384"}, {"nodeId": "140126048389712"}, {"nodeId": "140126048388816"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048388704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126048390384": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048389712": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048388816": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048389040"}]}, "140126048389040": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048388704": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126010924320": {"type": "Overloaded", "items": [{"nodeId": "140126162070752"}, {"nodeId": "140126162071200"}]}, "140126162070752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126162071200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048387472"}, {"nodeId": "140126048387136"}, {"nodeId": "140126048220912"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048222928"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126048387472": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048387136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048220912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048220688"}]}, "140126048220688": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048222928": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126048387920": {"type": "Overloaded", "items": [{"nodeId": "140126162071648"}, {"nodeId": "140126162072096"}]}, "140126162071648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}, "140126162072096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048219792"}, {"nodeId": "140126048218896"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048219232"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}, "140126048219792": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048218896": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048220800"}]}, "140126048220800": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048219232": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126010926000": {"type": "Overloaded", "items": [{"nodeId": "140126162072544"}, {"nodeId": "140126162072992"}]}, "140126162072544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126162072992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048220016"}, {"nodeId": "140126048218672"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048218560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126048220016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048218672": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048219680"}]}, "140126048219680": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048218560": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126048219456": {"type": "Overloaded", "items": [{"nodeId": "140126162073440"}, {"nodeId": "140126162073888"}]}, "140126162073440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126162073888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048218784"}, {"nodeId": "140126048218000"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048217552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126048218784": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048218000": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048218224"}]}, "140126048218224": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048217552": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126048387696": {"type": "Overloaded", "items": [{"nodeId": "140126162074336"}, {"nodeId": "140126162074784"}]}, "140126162074336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}, "140126162074784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048216880"}, {"nodeId": "140126048215648"}, {"nodeId": "140126048216320"}, {"nodeId": "140126048215984"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048214640"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}, "140126048216880": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048215648": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048216320": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048215984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048216208"}]}, "140126048216208": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048214640": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126048216992": {"type": "Overloaded", "items": [{"nodeId": "140126162075232"}, {"nodeId": "140126157013280"}]}, "140126162075232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126157013280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048216768"}, {"nodeId": "140126048215088"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048213744"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126048216768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048215088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048215536"}]}, "140126048215536": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048213744": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126157013728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048214416"}, {"nodeId": "140126048215312"}, {"nodeId": "140126048214304"}, {"nodeId": "140126048213184"}, {"nodeId": "140126119316496"}, {"nodeId": "140126048212624"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048212176"}]}]}, "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"]}, "140126048214416": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048215312": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048214304": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048214864"}]}, "140126048214864": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048213184": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126048212624": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126048212176": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126157014176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048211504"}, {"nodeId": "140126048210944"}, {"nodeId": "140126048211280"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048209824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}, "140126048211504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048210944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048211280": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048211952"}]}, "140126048211952": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048209824": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126157014624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048210048"}, {"nodeId": "140126119316160"}, {"nodeId": "140126048207472"}, {"nodeId": "140126048075360"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048072672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "colors", "nsample", "size", "method"]}, "140126048210048": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048207472": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048207584"}]}, "140126048207584": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048075360": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126048072672": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126157015072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048074912"}, {"nodeId": "140126048075024"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126048074464"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}, "140126048074912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048075024": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126048074576"}]}, "140126048074576": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126048074464": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126157015520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048074016"}, {"nodeId": "140126048074240"}, {"nodeId": "140126048073792"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "x", "axis", "out"]}, "140126048074016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126048074240": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126048073792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}, "140126157015968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696960"}, {"nodeId": "140126048073344"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}, "140126048073344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010696624": {"type": "Concrete", "module": "numpy.random._mt19937", "simpleName": "MT19937", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157017536"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157017984"}, "name": "_legacy_seeding"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157018432"}, "name": "jumped"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126023747840"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125943084224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}], "typeVars": [], "bases": [{"nodeId": "140126010688896"}], "isAbstract": false}, "140126157017536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696624"}, {"nodeId": "140126023817072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140126023817072": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023820768"}, {"nodeId": "140126010688560"}]}, "140126023820768": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157017984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696624"}, {"nodeId": "140126023822112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seed"]}, "140126023822112": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157018432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696624"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010696624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}, "140126023747840": {"type": "Overloaded", "items": [{"nodeId": "140126157018880"}]}, "140126157018880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696624"}], "returnType": {"nodeId": "140126023816848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023816848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125943084224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010696624"}], "returnType": {"nodeId": "140126023816848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010695280": {"type": "Concrete", "module": "numpy.random._pcg64", "simpleName": "PCG64", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157020448"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157020896"}, "name": "jumped"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010917376"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125942961024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157022240"}, "name": "advance"}], "typeVars": [], "bases": [{"nodeId": "140126010688896"}], "isAbstract": false}, "140126157020448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695280"}, {"nodeId": "140126023752544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140126023752544": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023750976"}, {"nodeId": "140126010688560"}]}, "140126023750976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157020896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695280"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010695280"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}, "140126010917376": {"type": "Overloaded", "items": [{"nodeId": "140126157021344"}]}, "140126157021344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695280"}], "returnType": {"nodeId": "140126023751424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023751424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125942961024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695280"}], "returnType": {"nodeId": "140126023751424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157022240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695280"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010695280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}, "140126010695616": {"type": "Concrete", "module": "numpy.random._pcg64", "simpleName": "PCG64DXSM", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157022688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157023136"}, "name": "jumped"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126023751312"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125942956544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157024480"}, "name": "advance"}], "typeVars": [], "bases": [{"nodeId": "140126010688896"}], "isAbstract": false}, "140126157022688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695616"}, {"nodeId": "140126023748064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140126023748064": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023747616"}, {"nodeId": "140126010688560"}]}, "140126023747616": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157023136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695616"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010695616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}, "140126023751312": {"type": "Overloaded", "items": [{"nodeId": "140126157023584"}]}, "140126157023584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695616"}], "returnType": {"nodeId": "140126023823680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023823680": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125942956544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695616"}], "returnType": {"nodeId": "140126023823680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157024480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010695616"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010695616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}, "140126010694272": {"type": "Concrete", "module": "numpy.random._philox", "simpleName": "Philox", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "counter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157025600"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126023483792"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125942852384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157026944"}, "name": "jumped"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157027392"}, "name": "advance"}], "typeVars": [], "bases": [{"nodeId": "140126010688896"}], "isAbstract": false}, "140126157025600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010694272"}, {"nodeId": "140126023758144"}, {"nodeId": "140126023756800"}, {"nodeId": "140126023753440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seed", "counter", "key"]}, "140126023758144": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023748736"}, {"nodeId": "140126010688560"}]}, "140126023748736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126023756800": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023757584"}]}, "140126023757584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126023753440": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023756912"}]}, "140126023756912": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126023483792": {"type": "Overloaded", "items": [{"nodeId": "140126157026048"}]}, "140126157026048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010694272"}], "returnType": {"nodeId": "140126023752656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023752656": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125942852384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010694272"}], "returnType": {"nodeId": "140126023752656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157026944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010694272"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010694272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}, "140126157027392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010694272"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126010694272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}, "140126010693264": {"type": "Concrete", "module": "numpy.random._sfc64", "simpleName": "SFC64", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157028512"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031663440"}, "items": [{"kind": "Variable", "name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140125942962144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "state"}], "typeVars": [], "bases": [{"nodeId": "140126010688896"}], "isAbstract": false}, "140126157028512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010693264"}, {"nodeId": "140126023486368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140126023486368": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126023485808"}, {"nodeId": "140126010688560"}]}, "140126023485808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031663440": {"type": "Overloaded", "items": [{"nodeId": "140126157028960"}]}, "140126157028960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010693264"}], "returnType": {"nodeId": "140126023485920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023485920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125942962144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010693264"}], "returnType": {"nodeId": "140126023485920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010692256": {"type": "Concrete", "module": "numpy.random.mtrand", "simpleName": "RandomState", "members": [{"kind": "Variable", "name": "_bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126010688896"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166396128"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166396576"}, "name": "__repr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166397024"}, "name": "__str__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166397472"}, "name": "__getstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166397920"}, "name": "__setstate__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166398368"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166398816"}, "name": "seed"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990054352"}, "items": [{"kind": "Variable", "name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get_state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166400160"}, "name": "set_state"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990056144"}, "items": [{"kind": "Variable", "name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "random_sample"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990054128"}, "items": [{"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "random"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990056256"}, "items": [{"kind": "Variable", "name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "beta"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990057824"}, "items": [{"kind": "Variable", "name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "exponential"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990059616"}, "items": [{"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_exponential"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990109808"}, "items": [{"kind": "Variable", "name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "tomaxint"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990109920"}, "items": [{"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "randint"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157418144"}, "name": "bytes"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990110368"}, "items": [{"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "choice"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010685280"}, "items": [{"kind": "Variable", "name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "uniform"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990209904"}, "items": [{"kind": "Variable", "name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rand"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990210800"}, "items": [{"kind": "Variable", "name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "randn"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990210912"}, "items": [{"kind": "Variable", "name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "random_integers"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990211024"}, "items": [{"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_normal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990212480"}, "items": [{"kind": "Variable", "name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "normal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126014661440"}, "items": [{"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_gamma"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019454784"}, "items": [{"kind": "Variable", "name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "gamma"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019464416"}, "items": [{"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "f"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019454560"}, "items": [{"kind": "Variable", "name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "noncentral_f"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125990124480"}, "items": [{"kind": "Variable", "name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "chisquare"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019454672"}, "items": [{"kind": "Variable", "name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "noncentral_chisquare"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019301024"}, "items": [{"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_t"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019291056"}, "items": [{"kind": "Variable", "name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "vonmises"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126010685728"}, "items": [{"kind": "Variable", "name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "pareto"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126019299792"}, "items": [{"kind": "Variable", "name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "weibull"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126018661376"}, "items": [{"kind": "Variable", "name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "power"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126018998048"}, "items": [{"kind": "Variable", "name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "standard_cauchy"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031767568"}, "items": [{"kind": "Variable", "name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "laplace"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031767456"}, "items": [{"kind": "Variable", "name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "gumbel"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031765104"}, "items": [{"kind": "Variable", "name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "logistic"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031763648"}, "items": [{"kind": "Variable", "name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "lognormal"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031763088"}, "items": [{"kind": "Variable", "name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "rayleigh"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031759616"}, "items": [{"kind": "Variable", "name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "wald"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031758944"}, "items": [{"kind": "Variable", "name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "triangular"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031757600"}, "items": [{"kind": "Variable", "name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "binomial"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031757824"}, "items": [{"kind": "Variable", "name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "negative_binomial"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031672848"}, "items": [{"kind": "Variable", "name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "poisson"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031671616"}, "items": [{"kind": "Variable", "name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "zipf"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031669712"}, "items": [{"kind": "Variable", "name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "geometric"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031668256"}, "items": [{"kind": "Variable", "name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "hypergeometric"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031667584"}, "items": [{"kind": "Variable", "name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "logseries"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157777696"}, "name": "multivariate_normal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157778144"}, "name": "multinomial"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157778592"}, "name": "dirichlet"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157779040"}, "name": "shuffle"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126031665120"}, "items": [{"kind": "Variable", "name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "permutation"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126166396128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990054912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140125990054912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990054800"}, {"nodeId": "140126010688896"}]}, "140125990054800": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126166396576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126166397024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126166397472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166397920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140126166398368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140125990055696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140125990055696": {"type": "Tuple", "items": [{"nodeId": "140125990076480"}, {"nodeId": "140125990055360"}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140125990076480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126010692256"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125990055360": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126166398816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990055920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}, "140125990055920": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990055808"}]}, "140125990055808": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990054352": {"type": "Overloaded", "items": [{"nodeId": "140126166399264"}, {"nodeId": "140126166399712"}]}, "140126166399264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}, "140126166399712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "0"}], "returnType": {"nodeId": "140125990057040"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}, "140125990057040": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "140125990056928"}]}, "140125990056928": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990056704"}]}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}]}, "140125990056704": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126166400160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990057712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140125990057712": {"type": "Union", "items": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "140125990057600"}]}, "140125990057600": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990057376"}]}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}]}, "140125990057376": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125990056144": {"type": "Overloaded", "items": [{"nodeId": "140126166400608"}, {"nodeId": "140126157406496"}]}, "140126166400608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157406496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990057936"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990058160"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140125990057936": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990058160": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990054128": {"type": "Overloaded", "items": [{"nodeId": "140126157406944"}, {"nodeId": "140126157407392"}]}, "140126157406944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157407392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990058384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990058608"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140125990058384": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990058608": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990056256": {"type": "Overloaded", "items": [{"nodeId": "140126157407840"}, {"nodeId": "140126157408288"}]}, "140126157407840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}, "140126157408288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990058832"}, {"nodeId": "140125990058944"}, {"nodeId": "140125990059168"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990059392"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}, "140125990058832": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990058944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990059168": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990059056"}]}, "140125990059056": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990059392": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990057824": {"type": "Overloaded", "items": [{"nodeId": "140126157408736"}, {"nodeId": "140126157409184"}]}, "140126157408736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126157409184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990058720"}, {"nodeId": "140125990059840"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990109360"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140125990058720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990059840": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990059504"}]}, "140125990059504": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990109360": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990059616": {"type": "Overloaded", "items": [{"nodeId": "140126157409632"}, {"nodeId": "140126157410080"}]}, "140126157409632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157410080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990110032"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990110256"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140125990110032": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990110256": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990109808": {"type": "Overloaded", "items": [{"nodeId": "140126157410528"}, {"nodeId": "140126157410976"}]}, "140126157410528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157410976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990110480"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990110704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140125990110480": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990110704": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140125990109920": {"type": "Overloaded", "items": [{"nodeId": "140126157411424"}, {"nodeId": "140126157411872"}, {"nodeId": "140126157412320"}, {"nodeId": "140126157412768"}, {"nodeId": "140126157413216"}, {"nodeId": "140126157413664"}, {"nodeId": "140126157414112"}, {"nodeId": "140126157414560"}, {"nodeId": "140126157415008"}, {"nodeId": "140126157415456"}, {"nodeId": "140126157415904"}, {"nodeId": "140126157416352"}, {"nodeId": "140126157416800"}, {"nodeId": "140126157417248"}, {"nodeId": "140126157417696"}]}, "140126157411424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140125990110928"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}, "140125990110928": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126157411872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140125990111040"}, {"nodeId": "N"}, {"nodeId": "140125990111152"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990111040": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140125990111152": {"type": "TypeAlias", "target": {"nodeId": "140126011100400"}}, "140126157412320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140125990111376"}, {"nodeId": "N"}, {"nodeId": "140125990112272"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990111376": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140125990112272": {"type": "Union", "items": [{"nodeId": "140125990111264"}, {"nodeId": "140125990110816"}]}, "140125990111264": {"type": "TypeAlias", "target": {"nodeId": "140126006396064"}}, "140125990110816": {"type": "TypeAlias", "target": {"nodeId": "140126006395616"}}, "140126157412768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990111488"}, {"nodeId": "140125990113056"}, {"nodeId": "140125990112832"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990113392"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140125990111488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990113056": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990113504"}]}, "140125990113504": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990112832": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990112720"}]}, "140125990112720": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990113392": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157413216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990112608"}, {"nodeId": "140125990112048"}, {"nodeId": "140125990112496"}, {"nodeId": "140125990111824"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126010277952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990112608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990112048": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990111600"}]}, "140125990111600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990112496": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990113280"}]}, "140125990113280": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990111824": {"type": "TypeAlias", "target": {"nodeId": "140126011100400"}}, "140126157413664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990114176"}, {"nodeId": "140125990113616"}, {"nodeId": "140125990114288"}, {"nodeId": "140125990113728"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990112160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990114176": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990113616": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990112944"}]}, "140125990112944": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990114288": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990114960"}]}, "140125990114960": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990113728": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990111712"}]}, {"nodeId": "0"}, {"nodeId": "140125990113840"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990111936"}]}]}]}, "140125990111712": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140125990113840": {"type": "TypeAlias", "target": {"nodeId": "140126036314816"}}, "140125990111936": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140125990112160": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481664"}]}}, "140126157414112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990114624"}, {"nodeId": "140125990114512"}, {"nodeId": "140125990114400"}, {"nodeId": "140125990115408"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990115632"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990114624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990114512": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990114848"}]}, "140125990114848": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990114400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990113168"}]}, "140125990113168": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990115408": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990115072"}]}, {"nodeId": "0"}, {"nodeId": "140125990115184"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990115296"}]}]}]}, "140125990115072": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140125990115184": {"type": "TypeAlias", "target": {"nodeId": "140126036315488"}}, "140125990115296": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140125990115632": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014481328"}]}}, "140126157414560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990115744"}, {"nodeId": "140125990115968"}, {"nodeId": "140125990115856"}, {"nodeId": "140125990116640"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990116864"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990115744": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990115968": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990116192"}]}, "140125990116192": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990115856": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990114736"}]}, "140125990114736": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990116640": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990116304"}]}, {"nodeId": "0"}, {"nodeId": "140125990116416"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990116528"}]}]}]}, "140125990116304": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140125990116416": {"type": "TypeAlias", "target": {"nodeId": "140126036316160"}}, "140125990116528": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140125990116864": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480992"}]}}, "140126157415008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990116976"}, {"nodeId": "140125990117200"}, {"nodeId": "140125990117088"}, {"nodeId": "140125990117872"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990118096"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990116976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990117200": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990117424"}]}, "140125990117424": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990117088": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990116080"}]}, "140125990116080": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990117872": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990117536"}]}, {"nodeId": "0"}, {"nodeId": "140125990117648"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990117760"}]}]}]}, "140125990117536": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140125990117648": {"type": "TypeAlias", "target": {"nodeId": "140126036316832"}}, "140125990117760": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140125990118096": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126014480656"}]}}, "140126157415456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990118208"}, {"nodeId": "140125990118432"}, {"nodeId": "140125990118320"}, {"nodeId": "140125990119104"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990119328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990118208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990118432": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990118656"}]}, "140125990118656": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990118320": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990117312"}]}, "140125990117312": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990119104": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990118768"}]}, {"nodeId": "0"}, {"nodeId": "140125990118880"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990118992"}]}]}]}, "140125990118768": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140125990118880": {"type": "TypeAlias", "target": {"nodeId": "140126036312128"}}, "140125990118992": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140125990119328": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481664"}]}}, "140126157415904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990119440"}, {"nodeId": "140125990119664"}, {"nodeId": "140125990119552"}, {"nodeId": "140125990120336"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990120560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990119440": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990119664": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990119888"}]}, "140125990119888": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990119552": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990118544"}]}, "140125990118544": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990120336": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990120000"}]}, {"nodeId": "0"}, {"nodeId": "140125990120112"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990120224"}]}]}]}, "140125990120000": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140125990120112": {"type": "TypeAlias", "target": {"nodeId": "140126036312800"}}, "140125990120224": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140125990120560": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014481328"}]}}, "140126157416352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990120672"}, {"nodeId": "140125990120896"}, {"nodeId": "140125990120784"}, {"nodeId": "140125990121568"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990121792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990120672": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990120896": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990121120"}]}, "140125990121120": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990120784": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990119776"}]}, "140125990119776": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990121568": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990121232"}]}, {"nodeId": "0"}, {"nodeId": "140125990121344"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990121456"}]}]}]}, "140125990121232": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125990121344": {"type": "TypeAlias", "target": {"nodeId": "140126036313472"}}, "140125990121456": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125990121792": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140126157416800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990121904"}, {"nodeId": "140125990122128"}, {"nodeId": "140125990122016"}, {"nodeId": "140125990122800"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990123024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990121904": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990122128": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990122352"}]}, "140125990122352": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990122016": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990121008"}]}, "140125990121008": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990122800": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990122464"}]}, {"nodeId": "0"}, {"nodeId": "140125990122576"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990122688"}]}]}]}, "140125990122464": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140125990122576": {"type": "TypeAlias", "target": {"nodeId": "140126036314144"}}, "140125990122688": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140125990123024": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126157417248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990123136"}, {"nodeId": "140125990123360"}, {"nodeId": "140125990123248"}, {"nodeId": "140125990124144"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990124368"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990123136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990123360": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990123584"}]}, "140125990123584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990123248": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990122240"}]}, "140125990122240": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990124144": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990123696"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140125990123808"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990124032"}]}]}]}, "140125990123696": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140125990123808": {"type": "TypeAlias", "target": {"nodeId": "140126036324112"}}, "140125990124032": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140125990124368": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157417696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990125152"}, {"nodeId": "140125990125264"}, {"nodeId": "140125990124592"}, {"nodeId": "140125990207552"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990207776"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}, "140125990125152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990125264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990124704"}]}, "140125990124704": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990124592": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990123472"}]}, "140125990123472": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990207552": {"type": "Union", "items": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990124816"}]}, {"nodeId": "0"}, {"nodeId": "140125990124928"}, {"nodeId": "140126023548064", "args": [{"nodeId": "140126010702336", "args": [{"nodeId": "140125990125376"}]}]}]}, "140125990124816": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140125990124928": {"type": "TypeAlias", "target": {"nodeId": "140126036328256"}}, "140125990125376": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140125990207776": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126015236448"}]}}, "140126157418144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}, "140125990110368": {"type": "Overloaded", "items": [{"nodeId": "140126157418592"}, {"nodeId": "140126157419040"}, {"nodeId": "140126157419488"}, {"nodeId": "140126157419936"}]}, "140126157418592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125990208560"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}, "140125990208560": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990207888"}]}, "140125990207888": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157419040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140125990208224"}, {"nodeId": "140126325562992"}, {"nodeId": "140125990208112"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990208672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}, "140125990208224": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990208112": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990208448"}]}, "140125990208448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990208672": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157419488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990209008"}, {"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140125990208784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}, "140125990209008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990208784": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990208000"}]}, "140125990208000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126157419936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990208896"}, {"nodeId": "140125990209456"}, {"nodeId": "140126325562992"}, {"nodeId": "140125990209568"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}, "140125990208896": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990209456": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990209568": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990209344"}]}, "140125990209344": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010685280": {"type": "Overloaded", "items": [{"nodeId": "140126157420384"}, {"nodeId": "140126157420832"}]}, "140126157420384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140126157420832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990210128"}, {"nodeId": "140125990210016"}, {"nodeId": "140125990210352"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990210576"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140125990210128": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990210016": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990210352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990210240"}]}, "140125990210240": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990210576": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990209904": {"type": "Overloaded", "items": [{"nodeId": "140126157421280"}, {"nodeId": "140126157421728"}]}, "140126157421280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157421728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990210688"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140125990210688": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990210800": {"type": "Overloaded", "items": [{"nodeId": "140126157422176"}, {"nodeId": "140126157586720"}]}, "140126157422176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157586720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990211248"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}, "140125990211248": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990210912": {"type": "Overloaded", "items": [{"nodeId": "140126157587168"}, {"nodeId": "140126157587616"}]}, "140126157587168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140125990211472"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140125990211472": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}]}, "140126157587616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990211584"}, {"nodeId": "140125990211808"}, {"nodeId": "140125990212032"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990212256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}, "140125990211584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990211808": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990211696"}]}, "140125990211696": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990212032": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990211920"}]}, "140125990211920": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990212256": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140125990211024": {"type": "Overloaded", "items": [{"nodeId": "140126157588064"}, {"nodeId": "140126157588512"}]}, "140126157588064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157588512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990211360"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990212704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140125990211360": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990212704": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990212480": {"type": "Overloaded", "items": [{"nodeId": "140126157588960"}, {"nodeId": "140126157589408"}]}, "140126157588960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126157589408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990212928"}, {"nodeId": "140125990213040"}, {"nodeId": "140125990213264"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990213488"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140125990212928": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990213040": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990213264": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990213152"}]}, "140125990213152": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990213488": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126014661440": {"type": "Overloaded", "items": [{"nodeId": "140126157589856"}, {"nodeId": "140126157590304"}]}, "140126157589856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}, "140126157590304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140125990212816"}, {"nodeId": "140125990213936"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125990214160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}, "140125990212816": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140125990213936": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140125990213600"}]}, "140125990213600": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140125990214160": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019454784": {"type": "Overloaded", "items": [{"nodeId": "140126157590752"}, {"nodeId": "140126157591200"}]}, "140126157590752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}, "140126157591200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019459040"}, {"nodeId": "140126019459152"}, {"nodeId": "140126019460832"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019454336"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}, "140126019459040": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019459152": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019460832": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126019460720"}]}, "140126019460720": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019454336": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019464416": {"type": "Overloaded", "items": [{"nodeId": "140126157591648"}, {"nodeId": "140126157592096"}]}, "140126157591648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}, "140126157592096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019463856"}, {"nodeId": "140126019454448"}, {"nodeId": "140126019453216"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019305056"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}, "140126019463856": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019454448": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019453216": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126019453104"}]}, "140126019453104": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019305056": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019454560": {"type": "Overloaded", "items": [{"nodeId": "140126157592544"}, {"nodeId": "140126157592992"}]}, "140126157592544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}, "140126157592992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019303600"}, {"nodeId": "140126019305168"}, {"nodeId": "140126019303824"}, {"nodeId": "140126019304944"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019302592"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}, "140126019303600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019305168": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019303824": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019304944": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126019304720"}]}, "140126019304720": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019302592": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140125990124480": {"type": "Overloaded", "items": [{"nodeId": "140126157593440"}, {"nodeId": "140126157593888"}]}, "140126157593440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126157593888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019303488"}, {"nodeId": "140126019300240"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019300576"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126019303488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019300240": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126019302704"}]}, "140126019302704": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019300576": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019454672": {"type": "Overloaded", "items": [{"nodeId": "140126157594336"}, {"nodeId": "140126157594784"}]}, "140126157594336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}, "140126157594784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019301360"}, {"nodeId": "140126019301136"}, {"nodeId": "140126019300912"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019290384"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}, "140126019301360": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019301136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019300912": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126019301248"}]}, "140126019301248": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019290384": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019301024": {"type": "Overloaded", "items": [{"nodeId": "140126157595232"}, {"nodeId": "140126157595680"}, {"nodeId": "140126157596128"}]}, "140126157595232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126157595680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019301584"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019289936"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126019301584": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126019289936": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126157596128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126019290272"}, {"nodeId": "140126018995024"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126019006448"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}, "140126019290272": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126018995024": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126019006448": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019291056": {"type": "Overloaded", "items": [{"nodeId": "140126157596576"}, {"nodeId": "140126157597024"}]}, "140126157596576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}, "140126157597024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126018997936"}, {"nodeId": "140126018995360"}, {"nodeId": "140126018997824"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126032217584"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}, "140126018997936": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126018995360": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126018997824": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126018997712"}]}, "140126018997712": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126032217584": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126010685728": {"type": "Overloaded", "items": [{"nodeId": "140126157597472"}, {"nodeId": "140126157597920"}]}, "140126157597472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126157597920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126018663056"}, {"nodeId": "140126018663616"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126018661712"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126018663056": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126018663616": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126018662608"}]}, "140126018662608": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126018661712": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126019299792": {"type": "Overloaded", "items": [{"nodeId": "140126157598368"}, {"nodeId": "140126157598816"}]}, "140126157598368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126157598816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126018662720"}, {"nodeId": "140126018662384"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126018661152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126018662720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126018662384": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126018661824"}]}, "140126018661824": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126018661152": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126018661376": {"type": "Overloaded", "items": [{"nodeId": "140126157599264"}, {"nodeId": "140126157599712"}]}, "140126157599264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126157599712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031768240"}, {"nodeId": "140126031768352"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031767792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126031768240": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031768352": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031768128"}]}, "140126031768128": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031767792": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126018998048": {"type": "Overloaded", "items": [{"nodeId": "140126157600160"}, {"nodeId": "140126157600608"}]}, "140126157600160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126157600608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031766672"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031766448"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126031766672": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031766448": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031767568": {"type": "Overloaded", "items": [{"nodeId": "140126157601056"}, {"nodeId": "140126157601504"}]}, "140126157601056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126157601504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031766336"}, {"nodeId": "140126031766000"}, {"nodeId": "140126031765888"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031765552"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126031766336": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031766000": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031765888": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031765440"}]}, "140126031765440": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031765552": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031767456": {"type": "Overloaded", "items": [{"nodeId": "140126157601952"}, {"nodeId": "140126157602400"}]}, "140126157601952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126157602400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031766560"}, {"nodeId": "140126031765664"}, {"nodeId": "140126031764880"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031764768"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126031766560": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031765664": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031764880": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031764992"}]}, "140126031764992": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031764768": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031765104": {"type": "Overloaded", "items": [{"nodeId": "140126157766944"}, {"nodeId": "140126157767392"}]}, "140126157766944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126157767392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031764544"}, {"nodeId": "140126031764208"}, {"nodeId": "140126031763760"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031763200"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}, "140126031764544": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031764208": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031763760": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031763984"}]}, "140126031763984": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031763200": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031763648": {"type": "Overloaded", "items": [{"nodeId": "140126157767840"}, {"nodeId": "140126157768288"}]}, "140126157767840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}, "140126157768288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031764096"}, {"nodeId": "140126031759840"}, {"nodeId": "140126031760400"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031761408"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}, "140126031764096": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031759840": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031760400": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031761184"}]}, "140126031761184": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031761408": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031763088": {"type": "Overloaded", "items": [{"nodeId": "140126157768736"}, {"nodeId": "140126157769184"}]}, "140126157768736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126157769184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031762976"}, {"nodeId": "140126031759504"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031759056"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}, "140126031762976": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031759504": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031759728"}]}, "140126031759728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031759056": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031759616": {"type": "Overloaded", "items": [{"nodeId": "140126157769632"}, {"nodeId": "140126157770080"}]}, "140126157769632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}, "140126157770080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031759280"}, {"nodeId": "140126031758720"}, {"nodeId": "140126031758160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031758048"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}, "140126031759280": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031758720": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031758160": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031758496"}]}, "140126031758496": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031758048": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031758944": {"type": "Overloaded", "items": [{"nodeId": "140126157770528"}, {"nodeId": "140126157770976"}]}, "140126157770528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}, "140126157770976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031758608"}, {"nodeId": "140126031757936"}, {"nodeId": "140126031757488"}, {"nodeId": "140126031661984"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031674976"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}, "140126031758608": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031757936": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031757488": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031661984": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031757376"}]}, "140126031757376": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031674976": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126031757600": {"type": "Overloaded", "items": [{"nodeId": "140126157771424"}, {"nodeId": "140126157771872"}]}, "140126157771424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126157771872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031674752"}, {"nodeId": "140126031675200"}, {"nodeId": "140126031674528"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031674080"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126031674752": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031675200": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031674528": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031674304"}]}, "140126031674304": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031674080": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031757824": {"type": "Overloaded", "items": [{"nodeId": "140126157772320"}, {"nodeId": "140126157772768"}]}, "140126157772320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126157772768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031672400"}, {"nodeId": "140126031672624"}, {"nodeId": "140126031672176"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031672064"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}, "140126031672400": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031672624": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031672176": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031672288"}]}, "140126031672288": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031672064": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031672848": {"type": "Overloaded", "items": [{"nodeId": "140126157773216"}, {"nodeId": "140126157773664"}]}, "140126157773216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}, "140126157773664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031672736"}, {"nodeId": "140126031671280"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031668816"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}, "140126031672736": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031671280": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031671728"}]}, "140126031671728": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031668816": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031671616": {"type": "Overloaded", "items": [{"nodeId": "140126157774112"}, {"nodeId": "140126157774560"}]}, "140126157774112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126157774560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031671056"}, {"nodeId": "140126031662992"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031668480"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}, "140126031671056": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031662992": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031668704"}]}, "140126031668704": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031668480": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031669712": {"type": "Overloaded", "items": [{"nodeId": "140126157775008"}, {"nodeId": "140126157775456"}]}, "140126157775008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126157775456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031669600"}, {"nodeId": "140126031668144"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031667696"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126031669600": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031668144": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031668368"}]}, "140126031668368": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031667696": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031668256": {"type": "Overloaded", "items": [{"nodeId": "140126157775904"}, {"nodeId": "140126157776352"}]}, "140126157775904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}, "140126157776352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031667920"}, {"nodeId": "140126031667360"}, {"nodeId": "140126031667136"}, {"nodeId": "140126031666800"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031666464"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}, "140126031667920": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031667360": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031667136": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031666800": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031666688"}]}, "140126031666688": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031666464": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126031667584": {"type": "Overloaded", "items": [{"nodeId": "140126157776800"}, {"nodeId": "140126157777248"}]}, "140126157776800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316496"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126157777248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031667248"}, {"nodeId": "140126031662768"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031662208"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}, "140126031667248": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031662768": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031661872"}]}, "140126031661872": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031662208": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157777696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031662096"}, {"nodeId": "140126031340688"}, {"nodeId": "140126031345728"}, {"nodeId": "140126031339792"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031338448"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol"]}, "140126031662096": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031340688": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031345728": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031335872"}]}, "140126031335872": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031339792": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126031338448": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126157778144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031339232"}, {"nodeId": "140126031339008"}, {"nodeId": "140126031338784"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126031336992"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}, "140126031339232": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031339008": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031338784": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031338560"}]}, "140126031338560": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126031336992": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157778592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126031335088"}, {"nodeId": "140126031333408"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126023485248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}, "140126031335088": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031333408": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126031333520"}]}, "140126031333520": {"type": "TypeAlias", "target": {"nodeId": "140126036110560"}}, "140126023485248": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126157779040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126023485024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140126023485024": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126031665120": {"type": "Overloaded", "items": [{"nodeId": "140126157779488"}, {"nodeId": "140126157779936"}]}, "140126157779488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126023487936"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140126023487936": {"type": "TypeAlias", "target": {"nodeId": "140126010279632", "args": [{"nodeId": "140126015235552"}]}}, "140126157779936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010692256"}, {"nodeId": "140126023487264"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}, "140126023487264": {"type": "TypeAlias", "target": {"nodeId": "0"}}, "140126010291728": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "IgnoreException", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126010292064": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "clear_and_catch_warnings", "members": [{"kind": "Variable", "name": "class_modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126120021680"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716768", "args": [{"nodeId": "140126120021680"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140125989320208"}, "items": [{"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157341184"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157341632"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126023537648", "args": [{"nodeId": "A"}]}], "isAbstract": false}, "140125989320208": {"type": "Overloaded", "items": [{"nodeId": "140126157781952"}, {"nodeId": "140126157782400"}, {"nodeId": "140126157340736"}]}, "140126157781952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126120021680"}]}], "returnType": {"nodeId": "140126010292736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}, "140126010292736": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_without_records", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157342528"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "140126010292064"}], "isAbstract": false}, "140126157342528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010292736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126157782400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126120021680"}]}], "returnType": {"nodeId": "140126010292400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}, "140126010292400": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_with_records", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157342080"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "140126010292064"}], "isAbstract": false}, "140126157342080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010292400"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126023537312": {"type": "Concrete", "module": "warnings", "simpleName": "WarningMessage", "members": [{"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023820208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023818640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023819648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023819760"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149592224"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126023820208": {"type": "Union", "items": [{"nodeId": "140126119603760"}, {"nodeId": "140126119317840"}]}, "140126023818640": {"type": "Union", "items": [{"nodeId": "140126119713744"}, {"nodeId": "N"}]}, "140126023819648": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126023819760": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126149592224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537312"}, {"nodeId": "140126023822560"}, {"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126023822336"}, {"nodeId": "140126023819984"}, {"nodeId": "140126023822000"}], "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"]}, "140126023822560": {"type": "Union", "items": [{"nodeId": "140126119603760"}, {"nodeId": "140126119317840"}]}, "140126023822336": {"type": "Union", "items": [{"nodeId": "140126119713744"}, {"nodeId": "N"}]}, "140126023819984": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126023822000": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126157340736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126120021680"}]}], "returnType": {"nodeId": "140126010292064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}, "140126157341184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010292064"}], "returnType": {"nodeId": "140125989321440"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125989321440": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}]}, "140126157341632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010292064"}, {"nodeId": "140125989321552"}, {"nodeId": "140125989321664"}, {"nodeId": "140125989321776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}, "140125989321552": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140125989321664": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119323552"}]}, "140125989321776": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120025376"}]}, "140126023537648": {"type": "Concrete", "module": "warnings", "simpleName": "catch_warnings", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126023820880"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149595360"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149595808"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126023537648"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126023820880": {"type": "Overloaded", "items": [{"nodeId": "140126023389408"}, {"nodeId": "140126149594016"}, {"nodeId": "140126149594464"}]}, "140126023389408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537648", "args": [{"nodeId": "N"}]}, {"nodeId": "0"}, {"nodeId": "140126023822784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}, "140126023822784": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126149594016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537648", "args": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}]}, {"nodeId": "0"}, {"nodeId": "140126023823008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}, "140126023823008": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126149594464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537648", "args": [{"nodeId": "140126023823120"}]}, {"nodeId": "140126325562992"}, {"nodeId": "140126023823232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}, "140126023823120": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, {"nodeId": "N"}]}, "140126023823232": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126149595360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537648", "args": [{"nodeId": ".1.140126023537648"}]}], "returnType": {"nodeId": ".1.140126023537648"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126023537648": {"type": "TypeVar", "varName": "_W", "values": [], "upperBound": {"nodeId": "140126023820096"}, "def": "140126023537648", "variance": "INVARIANT"}, "140126023820096": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, {"nodeId": "N"}]}, "140126149595808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023537648", "args": [{"nodeId": ".1.140126023537648"}]}, {"nodeId": "140126023823344"}, {"nodeId": "140126023823456"}, {"nodeId": "140126023823568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126023823344": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126023823456": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126023823568": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126010291392": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "KnownFailureException", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126010293072": {"type": "Concrete", "module": "numpy.testing._private.utils", "simpleName": "suppress_warnings", "members": [{"kind": "Variable", "name": "log", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "forwarding_rule", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157342976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157343424"}, "name": "filter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157343872"}, "name": "record"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157344320"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157344768"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157345216"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126157342976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010293072"}, {"nodeId": "140125989322560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "forwarding_rule"]}, "140125989322560": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126157343424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010293072"}, {"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140125989421120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}, "140125989421120": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120021680"}]}, "140126157343872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010293072"}, {"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140125989421232"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}, "140125989421232": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120021680"}]}, "140126157344320": {"type": "Function", "typeVars": [".-1.140126157344320"], "argTypes": [{"nodeId": ".-1.140126157344320"}], "returnType": {"nodeId": ".-1.140126157344320"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126157344320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126157344320", "variance": "INVARIANT"}, "140126157344768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010293072"}, {"nodeId": "140125989421344"}, {"nodeId": "140125989421456"}, {"nodeId": "140125989421568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}, "140125989421344": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140125989421456": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119323552"}]}, "140125989421568": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126120025376"}]}, "140126157345216": {"type": "Function", "typeVars": [".-1.140126157345216"], "argTypes": [{"nodeId": "140126010293072"}, {"nodeId": ".-1.140126157345216"}], "returnType": {"nodeId": ".-1.140126157345216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140126157345216": {"type": "TypeVar", "varName": "_FT", "values": [], "upperBound": {"nodeId": "140126019512672"}, "def": "140126157345216", "variance": "INVARIANT"}, "140126019512672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126115186048": {"type": "Concrete", "module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208184768"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208185664"}, "name": "setdefault"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208186112"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208186560"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208187008"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208187456"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208187904"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208188352"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208188800"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126208189248"}, "name": "__ror__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107699008"}, "items": [{"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__ior__"}], "typeVars": [{"nodeId": ".1.140126115186048"}], "bases": [{"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}]}], "isAbstract": false}, "140126208184768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": "140126119314144", "args": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}]}, {"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"]}, ".1.140126115186048": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115186048", "variance": "INVARIANT"}, "140126208185664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}], "returnType": {"nodeId": ".1.140126115186048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}, "140126208186112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126208186560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": ".1.140126115186048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126208187008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": ".1.140126115186048"}], "returnType": {"nodeId": ".1.140126115186048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126208187456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126208187904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126115186048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126208188352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126208188800": {"type": "Function", "typeVars": [".-1.140126208188800", ".-2.140126208188800"], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126208188800"}, {"nodeId": ".-2.140126208188800"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126107708864"}, {"nodeId": "140126107708976"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126208188800": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208188800", "variance": "INVARIANT"}, ".-2.140126208188800": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208188800", "variance": "INVARIANT"}, "140126107708864": {"type": "Union", "items": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".-1.140126208188800"}]}, "140126107708976": {"type": "Union", "items": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".-2.140126208188800"}]}, "140126208189248": {"type": "Function", "typeVars": [".-1.140126208189248", ".-2.140126208189248"], "argTypes": [{"nodeId": "140126115186048", "args": [{"nodeId": ".1.140126115186048"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": ".-1.140126208189248"}, {"nodeId": ".-2.140126208189248"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126107709088"}, {"nodeId": "140126107709424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126208189248": {"type": "TypeVar", "varName": "_T1", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208189248", "variance": "INVARIANT"}, ".-2.140126208189248": {"type": "TypeVar", "varName": "_T2", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208189248", "variance": "INVARIANT"}, "140126107709088": {"type": "Union", "items": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".-1.140126208189248"}]}, "140126107709424": {"type": "Union", "items": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".-2.140126208189248"}]}, "140126107699008": {"type": "Overloaded", "items": [{"nodeId": "140126208189696"}, {"nodeId": "140126208190144"}]}, "140126208189696": {"type": "Function", "typeVars": [".-1.140126208189696"], "argTypes": [{"nodeId": ".-1.140126208189696"}, {"nodeId": "140126119313808", "args": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}]}], "returnType": {"nodeId": ".-1.140126208189696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126208189696": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208189696", "variance": "INVARIANT"}, "140126208190144": {"type": "Function", "typeVars": [".-1.140126208190144"], "argTypes": [{"nodeId": ".-1.140126208190144"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126107709760"}]}], "returnType": {"nodeId": ".-1.140126208190144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126208190144": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126208190144", "variance": "INVARIANT"}, "140126107709760": {"type": "Tuple", "items": [{"nodeId": ".1.140126115186048"}, {"nodeId": ".1.140126115186048"}]}, "140126111297072": {"type": "Concrete", "module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073609840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073341088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073304704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073306048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073305600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073305824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073305152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073305376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073304256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073304480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073304928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073304032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073303808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073301792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073303584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073302464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073302912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316496"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}], "isAbstract": false}, "140126073609840": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073341088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710208"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710208": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073304704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710320"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710320": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073306048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710432"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710432": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073305600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710544"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710544": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073305824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710656"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710656": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073305152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710768"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710768": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073305376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710880"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710880": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073304256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107710992"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107710992": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073304480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711104"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711104": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073304928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711216"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711216": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073304032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711328"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711328": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073303808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711440"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711440": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073301792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711552"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711552": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073303584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711664"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711664": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073302464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711776"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711776": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073302912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107711888"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107711888": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126115186384": {"type": "Concrete", "module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073298208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073298432"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199945408"}, "name": "inode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199945856"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199946304"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199946752"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199947200"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199947648"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199948096"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126115186384"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126073298208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}], "returnType": {"nodeId": ".1.140126115186384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126115186384": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115186384", "variance": "INVARIANT"}, "140126073298432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}], "returnType": {"nodeId": ".1.140126115186384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199945408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199945856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140126199946304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140126199946752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199947200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126107712336"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140126107712336": {"type": "TypeAlias", "target": {"nodeId": "140126111809600"}}, "140126111809600": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126199947648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126115186384"}]}], "returnType": {"nodeId": ".1.140126115186384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126199948096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126111297744": {"type": "Concrete", "module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073617344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073292160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073290816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073273952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073273728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073273504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073273280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073273056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073272832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073272608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073272384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073272160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126073617344": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073292160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107712672"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107712672": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073290816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107712784"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107712784": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073273952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107712896"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107712896": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073273728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107713008"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107713008": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073273504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107713120"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107713120": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073273280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107713232"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107713232": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073273056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126107713344"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107713344": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073272832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102683712"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102683712": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073272608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102683824"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102683824": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073272384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102683936"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102683936": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073272160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102684048"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102684048": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111298080": {"type": "Concrete", "module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073815776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073271488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073269920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073269248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073268800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073268352"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": false}, "140126073815776": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073271488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102684608"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102684608": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073269920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102684720"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102684720": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073269248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102684832"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102684832": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073268800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102684944"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102684944": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073268352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102685056"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102685056": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111298416": {"type": "Concrete", "module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073819248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073264768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073262752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126073819248": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073264768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102693568"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102693568": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073262752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102693680"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102693680": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111298752": {"type": "Concrete", "module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195279104"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195279552"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195280000"}, "name": "close"}], "typeVars": [{"nodeId": ".1.140126111298752"}], "bases": [{"nodeId": "140126325567024", "args": [{"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126111298752"}]}]}, {"nodeId": "140126115885264", "args": [{"nodeId": "140126111298752", "args": [{"nodeId": ".1.140126111298752"}]}]}], "isAbstract": false}, "140126195279104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111298752", "args": [{"nodeId": ".1.140126111298752"}]}], "returnType": {"nodeId": "140126115186384", "args": [{"nodeId": ".1.140126111298752"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126111298752": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126111298752", "variance": "INVARIANT"}, "140126195279552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111298752", "args": [{"nodeId": ".1.140126111298752"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140126195280000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111298752", "args": [{"nodeId": ".1.140126111298752"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115885264": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199485984"}, "name": "__enter__"}, {"kind": "Variable", "name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065413024"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126115885264"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__enter__", "__exit__"]}, "140126199485984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126115885264"}]}], "returnType": {"nodeId": ".1.140126115885264"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126115885264": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115885264", "variance": "COVARIANT"}, "140126065413024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126115885264"}]}, {"nodeId": "140126103467424"}, {"nodeId": "140126103467536"}, {"nodeId": "140126103467648"}], "returnType": {"nodeId": "140126103467760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126103467424": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126103467536": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126103467648": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126103467760": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126111299088": {"type": "Concrete", "module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195410176"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195410624"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140126115190752"}], "isAbstract": false}, "140126195410176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111299088"}, {"nodeId": "140126115190752"}, {"nodeId": "140126120030080", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}, "140126115190752": {"type": "Concrete", "module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186856832"}, "name": "__init__"}, {"kind": "Variable", "name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069649728"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069649056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069648832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069651296"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186859072"}, "name": "reconfigure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186859520"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186859968"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186860416"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186860864"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186861312"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186861760"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186862208"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140126115190416"}, {"nodeId": "140126119713744"}], "isAbstract": false}, "140126186856832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126102966496"}, {"nodeId": "140126102966608"}, {"nodeId": "140126102966720"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "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"]}, "140126102966496": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102966608": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102966720": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069649728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069649056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069648832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069651296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186859072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126102966832"}, {"nodeId": "140126102966944"}, {"nodeId": "140126102967056"}, {"nodeId": "140126102967168"}, {"nodeId": "140126102967280"}], "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"]}, "140126102966832": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102966944": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102967056": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102967168": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126102967280": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126186859520": {"type": "Function", "typeVars": [".-1.140126186859520"], "argTypes": [{"nodeId": ".-1.140126186859520"}], "returnType": {"nodeId": ".-1.140126186859520"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186859520": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186859520", "variance": "INVARIANT"}, "140126186859968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126186860416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186860864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126186861312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186861760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186862208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190752"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126115190416": {"type": "Concrete", "module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111812288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111492224"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186853248"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186853696"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186854144"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186854592"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186855040"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186855488"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186855936"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186856384"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140126115187392"}], "isAbstract": false}, "140126111812288": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111492224": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126186853248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126186853696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186854144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186854592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126186855040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126186855488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186855936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186856384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190416"}, {"nodeId": "140126102966384"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102966384": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126115187392": {"type": "Concrete", "module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186682880"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186683328"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186683776"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186831936"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186832384"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186832832"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186833280"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186833728"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186834176"}, "name": "readable"}, {"kind": "Variable", "name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128630336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186834624"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186835072"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186835520"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186835968"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186836416"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186836864"}, "name": "writable"}, {"kind": "Variable", "name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128613056"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186837312"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186837760"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186838208"}, "name": "__del__"}, {"kind": "Variable", "name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069213888"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186839104"}, "name": "_checkClosed"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126186682880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126186683328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186683776": {"type": "Function", "typeVars": [".-1.140126186683776"], "argTypes": [{"nodeId": ".-1.140126186683776"}], "returnType": {"nodeId": ".-1.140126186683776"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186683776": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186683776", "variance": "INVARIANT"}, "140126186831936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126102963808"}, {"nodeId": "140126102963920"}, {"nodeId": "140126102964032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126102963808": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126102963920": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126102964032": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126186832384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186832832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186833280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186833728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186834176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126128630336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126186834624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186835072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126186835520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186835968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186836416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126102964144"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102964144": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126186836864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126128613056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126186837312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126102964256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102964256": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126186837760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126102964368"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102964368": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126186838208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126069213888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186839104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187392"}, {"nodeId": "140126102964480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "140126102964480": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126120030080": {"type": "Concrete", "module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111740784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111738880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111399072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120216944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120217056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107258768"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140905760"}, "name": "poll"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140906208"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140906656"}, "name": "communicate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140907104"}, "name": "send_signal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136172832"}, "name": "terminate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136173280"}, "name": "kill"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136173728"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136174176"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136174624"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126120030080"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111740784": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126111384960": {"type": "Union", "items": [{"nodeId": "140126111390560"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126111390672"}]}]}, "140126111390560": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126116105568": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126111297408", "args": [{"nodeId": "140126119716096"}]}]}, "140126111390672": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126111738880": {"type": "Union", "items": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "N"}]}, ".1.140126120030080": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120030080", "variance": "INVARIANT"}, "140126111399072": {"type": "Union", "items": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "N"}]}, "140126120216944": {"type": "Union", "items": [{"nodeId": "140126119713072", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "N"}]}, "140126120217056": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "A"}]}, "140126107258768": {"type": "Overloaded", "items": [{"nodeId": "140126107308256"}, {"nodeId": "140126140898144"}, {"nodeId": "140126140898592"}, {"nodeId": "140126140899040"}, {"nodeId": "140126140899488"}, {"nodeId": "140126140899936"}]}, "140126107308256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107410032"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107410256"}, {"nodeId": "140126107410480"}, {"nodeId": "140126107410704"}, {"nodeId": "140126107410928"}, {"nodeId": "140126107411040"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107411376"}, {"nodeId": "140126107411600"}, {"nodeId": "140126107411712"}, {"nodeId": "140126107411936"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126107412048"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107412160"}, {"nodeId": "140126107412272"}, {"nodeId": "140126107412384"}, {"nodeId": "140126107412608"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107410032": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107410256": {"type": "Union", "items": [{"nodeId": "140126107410144"}, {"nodeId": "N"}]}, "140126107410144": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107410480": {"type": "Union", "items": [{"nodeId": "140126107410368"}, {"nodeId": "N"}]}, "140126107410368": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126120215600": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119713072", "args": [{"nodeId": "A"}]}]}, "140126107410704": {"type": "Union", "items": [{"nodeId": "140126107410592"}, {"nodeId": "N"}]}, "140126107410592": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107410928": {"type": "Union", "items": [{"nodeId": "140126107410816"}, {"nodeId": "N"}]}, "140126107410816": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107411040": {"type": "Union", "items": [{"nodeId": "140126107307808"}, {"nodeId": "N"}]}, "140126107307808": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107411376": {"type": "Union", "items": [{"nodeId": "140126107411264"}, {"nodeId": "N"}]}, "140126107411264": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107411600": {"type": "Union", "items": [{"nodeId": "140126107411488"}, {"nodeId": "N"}]}, "140126107411488": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126111399408": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119716096"}, {"nodeId": "140126111398960"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126111394368"}]}]}, "140126111398960": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126111394368": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107411712": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107411936": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107412048": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107412160": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107412272": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107412384": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107412608": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107412496"}]}, {"nodeId": "N"}]}, "140126107412496": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140898144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107412720"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107412944"}, {"nodeId": "140126107413168"}, {"nodeId": "140126107413392"}, {"nodeId": "140126107413616"}, {"nodeId": "140126107413728"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107414064"}, {"nodeId": "140126107414288"}, {"nodeId": "140126107414400"}, {"nodeId": "140126107414624"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126107414736"}, {"nodeId": "140126107414848"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107414960"}, {"nodeId": "140126107415072"}, {"nodeId": "140126107415296"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107412720": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107412944": {"type": "Union", "items": [{"nodeId": "140126107412832"}, {"nodeId": "N"}]}, "140126107412832": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107413168": {"type": "Union", "items": [{"nodeId": "140126107413056"}, {"nodeId": "N"}]}, "140126107413056": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107413392": {"type": "Union", "items": [{"nodeId": "140126107413280"}, {"nodeId": "N"}]}, "140126107413280": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107413616": {"type": "Union", "items": [{"nodeId": "140126107413504"}, {"nodeId": "N"}]}, "140126107413504": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107413728": {"type": "Union", "items": [{"nodeId": "140126107307136"}, {"nodeId": "N"}]}, "140126107307136": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107414064": {"type": "Union", "items": [{"nodeId": "140126107413952"}, {"nodeId": "N"}]}, "140126107413952": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107414288": {"type": "Union", "items": [{"nodeId": "140126107414176"}, {"nodeId": "N"}]}, "140126107414176": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126107414400": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107414624": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107414736": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107414848": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107414960": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107415072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107415296": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107415184"}]}, {"nodeId": "N"}]}, "140126107415184": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140898592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107415408"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107415632"}, {"nodeId": "140126107415856"}, {"nodeId": "140126107416080"}, {"nodeId": "140126107416304"}, {"nodeId": "140126107416416"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107416752"}, {"nodeId": "140126107416976"}, {"nodeId": "0"}, {"nodeId": "140126107417312"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126107417424"}, {"nodeId": "140126107417536"}, {"nodeId": "140126107417648"}, {"nodeId": "140126107417760"}, {"nodeId": "140126107417872"}, {"nodeId": "140126107418096"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107415408": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107415632": {"type": "Union", "items": [{"nodeId": "140126107415520"}, {"nodeId": "N"}]}, "140126107415520": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107415856": {"type": "Union", "items": [{"nodeId": "140126107415744"}, {"nodeId": "N"}]}, "140126107415744": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107416080": {"type": "Union", "items": [{"nodeId": "140126107415968"}, {"nodeId": "N"}]}, "140126107415968": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107416304": {"type": "Union", "items": [{"nodeId": "140126107416192"}, {"nodeId": "N"}]}, "140126107416192": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107416416": {"type": "Union", "items": [{"nodeId": "140126107308480"}, {"nodeId": "N"}]}, "140126107308480": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107416752": {"type": "Union", "items": [{"nodeId": "140126107416640"}, {"nodeId": "N"}]}, "140126107416640": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107416976": {"type": "Union", "items": [{"nodeId": "140126107416864"}, {"nodeId": "N"}]}, "140126107416864": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126107417312": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107417424": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107417536": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107417648": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107417760": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107417872": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107418096": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107417984"}]}, {"nodeId": "N"}]}, "140126107417984": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140899040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107418208"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107418432"}, {"nodeId": "140126107467952"}, {"nodeId": "140126107468176"}, {"nodeId": "140126107468400"}, {"nodeId": "140126107468512"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107468848"}, {"nodeId": "140126107469072"}, {"nodeId": "140126107469184"}, {"nodeId": "140126107469408"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "0"}, {"nodeId": "140126107469632"}, {"nodeId": "140126107469744"}, {"nodeId": "140126107469856"}, {"nodeId": "140126107469968"}, {"nodeId": "140126107470192"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107418208": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107418432": {"type": "Union", "items": [{"nodeId": "140126107418320"}, {"nodeId": "N"}]}, "140126107418320": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107467952": {"type": "Union", "items": [{"nodeId": "140126107467840"}, {"nodeId": "N"}]}, "140126107467840": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107468176": {"type": "Union", "items": [{"nodeId": "140126107468064"}, {"nodeId": "N"}]}, "140126107468064": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107468400": {"type": "Union", "items": [{"nodeId": "140126107468288"}, {"nodeId": "N"}]}, "140126107468288": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107468512": {"type": "Union", "items": [{"nodeId": "140126107308704"}, {"nodeId": "N"}]}, "140126107308704": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107468848": {"type": "Union", "items": [{"nodeId": "140126107468736"}, {"nodeId": "N"}]}, "140126107468736": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107469072": {"type": "Union", "items": [{"nodeId": "140126107468960"}, {"nodeId": "N"}]}, "140126107468960": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126107469184": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107469408": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107469632": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107469744": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107469856": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107469968": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107470192": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107470080"}]}, {"nodeId": "N"}]}, "140126107470080": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140899488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107470304"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107470528"}, {"nodeId": "140126107470752"}, {"nodeId": "140126107470976"}, {"nodeId": "140126107471200"}, {"nodeId": "140126107471312"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107471648"}, {"nodeId": "140126107471872"}, {"nodeId": "140126107472096"}, {"nodeId": "140126107472320"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126107472544"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140126107472656"}, {"nodeId": "140126107472768"}, {"nodeId": "140126107472992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107470304": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107470528": {"type": "Union", "items": [{"nodeId": "140126107470416"}, {"nodeId": "N"}]}, "140126107470416": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107470752": {"type": "Union", "items": [{"nodeId": "140126107470640"}, {"nodeId": "N"}]}, "140126107470640": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107470976": {"type": "Union", "items": [{"nodeId": "140126107470864"}, {"nodeId": "N"}]}, "140126107470864": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107471200": {"type": "Union", "items": [{"nodeId": "140126107471088"}, {"nodeId": "N"}]}, "140126107471088": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107471312": {"type": "Union", "items": [{"nodeId": "140126107308928"}, {"nodeId": "N"}]}, "140126107308928": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107471648": {"type": "Union", "items": [{"nodeId": "140126107471536"}, {"nodeId": "N"}]}, "140126107471536": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107471872": {"type": "Union", "items": [{"nodeId": "140126107471760"}, {"nodeId": "N"}]}, "140126107471760": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126107472096": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126107472320": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107472544": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "0"}]}, "140126107472656": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107472768": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107472992": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107472880"}]}, {"nodeId": "N"}]}, "140126107472880": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140899936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": "A"}]}, {"nodeId": "140126107473216"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107473440"}, {"nodeId": "140126107473664"}, {"nodeId": "140126107473888"}, {"nodeId": "140126107474112"}, {"nodeId": "140126107474224"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107474560"}, {"nodeId": "140126107474784"}, {"nodeId": "140126107474896"}, {"nodeId": "140126107475120"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325570048", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126107475232"}, {"nodeId": "140126107475344"}, {"nodeId": "140126107475456"}, {"nodeId": "140126107475568"}, {"nodeId": "140126107475680"}, {"nodeId": "140126107475904"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "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"]}, "140126107473216": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107473440": {"type": "Union", "items": [{"nodeId": "140126107473328"}, {"nodeId": "N"}]}, "140126107473328": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107473664": {"type": "Union", "items": [{"nodeId": "140126107473552"}, {"nodeId": "N"}]}, "140126107473552": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107473888": {"type": "Union", "items": [{"nodeId": "140126107473776"}, {"nodeId": "N"}]}, "140126107473776": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107474112": {"type": "Union", "items": [{"nodeId": "140126107474000"}, {"nodeId": "N"}]}, "140126107474000": {"type": "TypeAlias", "target": {"nodeId": "140126120215600"}}, "140126107474224": {"type": "Union", "items": [{"nodeId": "140126107309152"}, {"nodeId": "N"}]}, "140126107309152": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126107474560": {"type": "Union", "items": [{"nodeId": "140126107474448"}, {"nodeId": "N"}]}, "140126107474448": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126107474784": {"type": "Union", "items": [{"nodeId": "140126107474672"}, {"nodeId": "N"}]}, "140126107474672": {"type": "TypeAlias", "target": {"nodeId": "140126111399408"}}, "140126107474896": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107475120": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "N"}]}, "140126107475232": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126107475344": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107475456": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107475568": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107475680": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107475904": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126107475792"}]}, {"nodeId": "N"}]}, "140126107475792": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126140905760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}], "returnType": {"nodeId": "140126107476016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107476016": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126140906208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "140126107476128"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140126107476128": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126140906656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "140126107476240"}, {"nodeId": "140126107476352"}], "returnType": {"nodeId": "140126107476576"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}, "140126107476240": {"type": "Union", "items": [{"nodeId": ".1.140126120030080"}, {"nodeId": "N"}]}, "140126107476352": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126107476576": {"type": "Tuple", "items": [{"nodeId": ".1.140126120030080"}, {"nodeId": ".1.140126120030080"}]}, "140126140907104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}, "140126136172832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136173280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136173728": {"type": "Function", "typeVars": [".-1.140126136173728"], "argTypes": [{"nodeId": ".-1.140126136173728"}], "returnType": {"nodeId": ".-1.140126136173728"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126136173728": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136173728", "variance": "INVARIANT"}, "140126136174176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030080", "args": [{"nodeId": ".1.140126120030080"}]}, {"nodeId": "140126107476688"}, {"nodeId": "140126107476800"}, {"nodeId": "140126107476912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126107476688": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126107476800": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126107476912": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126136174624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126195410624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111299088"}], "returnType": {"nodeId": "140126102854048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102854048": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126111299424": {"type": "Concrete", "module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073828432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073252864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073251744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073251968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078221920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078214976"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316496"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316496"}]}], "isAbstract": false}, "140126073828432": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073252864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102855840"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102855840": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073251744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102855728"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102855728": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126073251968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102856064"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102856064": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126078221920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102856400"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102856400": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126078214976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102856512"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102856512": {"type": "Tuple", "items": [{"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316496"}]}, "140126111299760": {"type": "Concrete", "module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126073830672"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073478432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073479552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073479776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073480000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073480224"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126073830672": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126073478432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102857968"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102857968": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073479552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102858304"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102858304": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073479776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102858640"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102858640": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073480000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102858752"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102858752": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126073480224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102858864"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102858864": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126111300096": {"type": "Concrete", "module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126074061984"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126195543488"}, "name": "__new__"}, {"kind": "Variable", "name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126073481568"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126119316160"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126074061984": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126195543488": {"type": "Function", "typeVars": [".-1.140126195543488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126195543488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}, ".-1.140126195543488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126195543488", "variance": "INVARIANT"}, "140126073481568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102862112"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102862112": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}]}, "140126115705376": {"type": "Concrete", "module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115705040"}], "isAbstract": false}, "140126111599296": {"type": "Concrete", "module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203993600"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203994048"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203994496"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203994944"}, "name": "LoadLibrary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203995392"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126111599296"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126203993600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599296", "args": [{"nodeId": ".1.140126111599296"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}, ".1.140126111599296": {"type": "TypeVar", "varName": "_DLLT", "values": [], "upperBound": {"nodeId": "140126115705040"}, "def": "140126111599296", "variance": "INVARIANT"}, "140126203994048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599296", "args": [{"nodeId": ".1.140126111599296"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".1.140126111599296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203994496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599296", "args": [{"nodeId": ".1.140126111599296"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".1.140126111599296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126203994944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111599296", "args": [{"nodeId": ".1.140126111599296"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".1.140126111599296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126203995392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126115705712": {"type": "Concrete", "module": "ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102925856"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102928320"}, "name": "__rmul__"}], "typeVars": [], "bases": [{"nodeId": "140126119315488"}], "isAbstract": false}, "140126102925856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126102928320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126115707728": {"type": "Concrete", "module": "ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126115872832": {"type": "Concrete", "module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115873168": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199215296"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119716096"}]}], "isAbstract": false}, "140126199215296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115873168"}, {"nodeId": "140126103464960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126103464960": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126115873504": {"type": "Concrete", "module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199215744"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126115706720"}, {"nodeId": "140126115708400", "args": [{"nodeId": "140126111743136"}]}], "isAbstract": false}, "140126199215744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115873504"}, {"nodeId": "140126103465072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126103465072": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126111743136": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126115873840": {"type": "Concrete", "module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316496"}]}], "isAbstract": false}, "140126115874176": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316496"}]}], "isAbstract": false}, "140126115874512": {"type": "Concrete", "module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316496"}]}], "isAbstract": false}, "140126115875184": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115875520": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115875856": {"type": "Concrete", "module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115876528": {"type": "Concrete", "module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115876864": {"type": "Concrete", "module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115877200": {"type": "Concrete", "module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115877536": {"type": "Concrete", "module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115877872": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115878208": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115878544": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115878880": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115879216": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115879552": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115879888": {"type": "Concrete", "module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115880224": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115880560": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115880896": {"type": "Concrete", "module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126115881568": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": false}, "140126115881904": {"type": "Concrete", "module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199216192"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126115706720"}, {"nodeId": "140126115708400", "args": [{"nodeId": "140126111629600"}]}], "isAbstract": false}, "140126199216192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115881904"}, {"nodeId": "140126103465184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126103465184": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111629600": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115882240": {"type": "Concrete", "module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199216640"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126115708400", "args": [{"nodeId": "140126325562992"}]}], "isAbstract": false}, "140126199216640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115882240"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126115882576": {"type": "Concrete", "module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.140126115882576"}], "bases": [{"nodeId": "140126115706384"}, {"nodeId": "140126115708400", "args": [{"nodeId": ".1.140126115882576"}]}], "isAbstract": false}, ".1.140126115882576": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115882576", "variance": "INVARIANT"}, "140126115882912": {"type": "Concrete", "module": "ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126115883248": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325570384", "args": [{"nodeId": "140126115815584"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199217088"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126115705712"}], "isAbstract": false}, "140126115815584": {"type": "Union", "items": [{"nodeId": "140126115815248"}, {"nodeId": "140126115815472"}]}, "140126115815248": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}]}, "140126115815472": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "0"}, {"nodeId": "140126119316160"}]}, "140126199217088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115883248"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115882912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126115883584": {"type": "Concrete", "module": "ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199217536"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199431232"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199431680"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "140126115706048"}], "isAbstract": false}, "140126199217536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115883584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}, "140126199431232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115883584"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126199431680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115883584"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126115883920": {"type": "Concrete", "module": "ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115883584"}], "isAbstract": false}, "140126115884256": {"type": "Concrete", "module": "ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115883584"}], "isAbstract": false}, "140126115884592": {"type": "Concrete", "module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115884256"}], "isAbstract": false}, "140126115884928": {"type": "Concrete", "module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115884256"}], "isAbstract": false}, "140126023538992": {"type": "Concrete", "module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023538992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023538992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023538992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203753664"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203754112"}, "name": "tzname"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203754560"}, "name": "utcoffset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126203755008"}, "name": "dst"}], "typeVars": [], "bases": [{"nodeId": "140126023538656"}], "isAbstract": false}, "140126203753664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538992"}, {"nodeId": "140126023540336"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}, "140126203754112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538992"}, {"nodeId": "140126031343824"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031343824": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126203754560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538992"}, {"nodeId": "140126031343936"}], "returnType": {"nodeId": "140126023540336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031343936": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126203755008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023538992"}, {"nodeId": "140126031344048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126031344048": {"type": "Union", "items": [{"nodeId": "140126023540672"}, {"nodeId": "N"}]}, "140126115199488": {"type": "Concrete", "module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191047552"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191048000"}, "name": "__setitem__"}], "typeVars": [], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "isAbstract": false}, "140126191047552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191048000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199488"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126115199824": {"type": "Concrete", "module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191049792"}, "name": "__new__"}, {"kind": "Variable", "name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069091328"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191051584"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191052032"}, "name": "__reversed__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191052480"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191052928"}, "name": "__getitem__"}, {"kind": "Variable", "name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069091552"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191053824"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191054272"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191054720"}, "name": "__dir__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103228752"}, "items": [{"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__call__"}, {"kind": "Variable", "name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126115200160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "A"}, {"nodeId": "140126115200160"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119607792"}], "isAbstract": false}, "140126191049792": {"type": "Function", "typeVars": [".-1.140126191049792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "140126115199488"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126191049792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}, ".-1.140126191049792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191049792", "variance": "INVARIANT"}, "140126069091328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119315488"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126115199488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}, "140126191051584": {"type": "Function", "typeVars": [".-1.140126191051584"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".-1.140126191051584"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126191051584": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191051584", "variance": "INVARIANT"}, "140126191052032": {"type": "Function", "typeVars": [".-1.140126191052032"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".-1.140126191052032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126191052032": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191052032", "variance": "INVARIANT"}, "140126191052480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126191052928": {"type": "Function", "typeVars": [".-1.140126191052928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126191052928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191052928": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191052928", "variance": "INVARIANT"}, "140126069091552": {"type": "Function", "typeVars": [".-1.140126069091552"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140126120020672", "args": [{"nodeId": "140126119317840"}, {"nodeId": ".-1.140126069091552"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126069091552": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126069091552", "variance": "INVARIANT"}, "140126191053824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199824"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126191054272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191054720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199824"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103228752": {"type": "Overloaded", "items": [{"nodeId": "140126191055168"}, {"nodeId": "140126191056064"}]}, "140126191055168": {"type": "Function", "typeVars": [".-1.140126191055168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140126191055168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}, ".-1.140126191055168": {"type": "TypeVar", "varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191055168", "variance": "INVARIANT"}, "140126191056064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199824"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103233008"}, {"nodeId": "140126103233120"}, {"nodeId": "140126103233232"}, {"nodeId": "140126103233344"}, {"nodeId": "140126119316160"}], "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"]}, "140126103233008": {"type": "TypeAlias", "target": {"nodeId": "140126115231136"}}, "140126115231136": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126115229344"}]}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126115229344": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126103233120": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103233232": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103233344": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "N"}]}, "140126115200496": {"type": "Concrete", "module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069362912"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191159552"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140126119316160"}, {"nodeId": "140126115200160"}], "isAbstract": false}, "140126069362912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115200496"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191159552": {"type": "Function", "typeVars": [".-1.140126191159552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126191159552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140126191159552": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191159552", "variance": "INVARIANT"}, "140126111598960": {"type": "Concrete", "module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069362464"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191160896"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140126115692944"}], "isAbstract": false}, "140126069362464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598960"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191160896": {"type": "Function", "typeVars": [".-1.140126191160896"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126191160896"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126191160896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191160896", "variance": "INVARIANT"}, "140126115692944": {"type": "Concrete", "module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191167616"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191168064"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191168512"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191168960"}, "name": "__xor__"}, {"kind": "Variable", "name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126078216096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126078217440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126078221248"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119316160"}, {"nodeId": "140126115692608"}], "isAbstract": false}, "140126191167616": {"type": "Function", "typeVars": [".-1.140126191167616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126191167616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}, ".-1.140126191167616": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191167616", "variance": "INVARIANT"}, "140126191168064": {"type": "Function", "typeVars": [".-1.140126191168064"], "argTypes": [{"nodeId": ".-1.140126191168064"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126191168064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191168064": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191168064", "variance": "INVARIANT"}, "140126191168512": {"type": "Function", "typeVars": [".-1.140126191168512"], "argTypes": [{"nodeId": ".-1.140126191168512"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126191168512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191168512": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191168512", "variance": "INVARIANT"}, "140126191168960": {"type": "Function", "typeVars": [".-1.140126191168960"], "argTypes": [{"nodeId": ".-1.140126191168960"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126191168960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191168960": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191168960", "variance": "INVARIANT"}, "140126078216096": {"type": "Function", "typeVars": [".-1.140126078216096"], "argTypes": [{"nodeId": ".-1.140126078216096"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126078216096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126078216096": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078216096", "variance": "INVARIANT"}, "140126078217440": {"type": "Function", "typeVars": [".-1.140126078217440"], "argTypes": [{"nodeId": ".-1.140126078217440"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126078217440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126078217440": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078217440", "variance": "INVARIANT"}, "140126078221248": {"type": "Function", "typeVars": [".-1.140126078221248"], "argTypes": [{"nodeId": ".-1.140126078221248"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": ".-1.140126078221248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126078221248": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078221248", "variance": "INVARIANT"}, "140126115692608": {"type": "Concrete", "module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115230912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069364480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069365376"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191162240"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191162688"}, "name": "__bool__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191163136"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191163584"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191164032"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191164480"}, "name": "__invert__"}], "typeVars": [], "bases": [{"nodeId": "140126115200160"}], "isAbstract": false}, "140126115230912": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069364480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115692608"}], "returnType": {"nodeId": "140126103234128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103234128": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069365376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115692608"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191162240": {"type": "Function", "typeVars": [".-1.140126191162240"], "argTypes": [{"nodeId": ".-1.140126191162240"}, {"nodeId": ".-1.140126191162240"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191162240": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191162240", "variance": "INVARIANT"}, "140126191162688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115692608"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191163136": {"type": "Function", "typeVars": [".-1.140126191163136"], "argTypes": [{"nodeId": ".-1.140126191163136"}, {"nodeId": ".-1.140126191163136"}], "returnType": {"nodeId": ".-1.140126191163136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191163136": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191163136", "variance": "INVARIANT"}, "140126191163584": {"type": "Function", "typeVars": [".-1.140126191163584"], "argTypes": [{"nodeId": ".-1.140126191163584"}, {"nodeId": ".-1.140126191163584"}], "returnType": {"nodeId": ".-1.140126191163584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191163584": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191163584", "variance": "INVARIANT"}, "140126191164032": {"type": "Function", "typeVars": [".-1.140126191164032"], "argTypes": [{"nodeId": ".-1.140126191164032"}, {"nodeId": ".-1.140126191164032"}], "returnType": {"nodeId": ".-1.140126191164032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126191164032": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191164032", "variance": "INVARIANT"}, "140126191164480": {"type": "Function", "typeVars": [".-1.140126191164480"], "argTypes": [{"nodeId": ".-1.140126191164480"}], "returnType": {"nodeId": ".-1.140126191164480"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126191164480": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191164480", "variance": "INVARIANT"}, "140126119706688": {"type": "Concrete", "module": "abc", "simpleName": "abstractclassmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199483520"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140126119706688"}], "bases": [{"nodeId": "140126119315152", "args": [{"nodeId": ".1.140126119706688"}]}], "isAbstract": false}, "140126199483520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119706688", "args": [{"nodeId": ".1.140126119706688"}]}, {"nodeId": "140126098301536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140126119706688": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119706688", "variance": "COVARIANT"}, "140126098301536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119706688"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126119707024": {"type": "Concrete", "module": "abc", "simpleName": "abstractstaticmethod", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "callable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199483968"}, "name": "__init__"}], "typeVars": [{"nodeId": ".1.140126119707024"}], "bases": [{"nodeId": "140126119314816", "args": [{"nodeId": ".1.140126119707024"}]}], "isAbstract": false}, "140126199483968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119707024", "args": [{"nodeId": ".1.140126119707024"}]}, {"nodeId": "140126098300864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "callable"]}, ".1.140126119707024": {"type": "TypeVar", "varName": "_R_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126119707024", "variance": "COVARIANT"}, "140126098300864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126119707024"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126119707360": {"type": "Concrete", "module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119320192"}], "isAbstract": false}, "140126115885600": {"type": "Protocol", "module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098293920"}, "name": "__aenter__"}, {"kind": "Variable", "name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065410560"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126115885600"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__aenter__", "__aexit__"]}, "140126098293920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115885600", "args": [{"nodeId": ".1.140126115885600"}]}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126115885600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126115885600": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115885600", "variance": "COVARIANT"}, "140126065410560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115885600", "args": [{"nodeId": ".1.140126115885600"}]}, {"nodeId": "140126103467984"}, {"nodeId": "140126103468096"}, {"nodeId": "140126103468208"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140126103468320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140126103467984": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126103468096": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126103468208": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126103468320": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126115886272": {"type": "Concrete", "module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199488224"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126115886272"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128631232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199488672"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126115886272"}], "bases": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126115886272"}]}, {"nodeId": "140126115885936"}], "isAbstract": false}, "140126199488224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115886272", "args": [{"nodeId": ".1.140126115886272"}]}, {"nodeId": "140126098293696"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140126115886272": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115886272", "variance": "COVARIANT"}, "140126098293696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": ".1.140126115886272"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126128631232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".1.140126115886272"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126199488672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115886272", "args": [{"nodeId": ".1.140126115886272"}]}, {"nodeId": "140126103468880"}, {"nodeId": "140126103468992"}, {"nodeId": "140126103469104"}], "returnType": {"nodeId": "140126103469216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126103468880": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126103468992": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126103469104": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126103469216": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126115886608": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199489568"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126199489568": {"type": "Function", "typeVars": [".-1.140126199489568"], "argTypes": [{"nodeId": "140126115886608"}, {"nodeId": ".-1.140126199489568"}], "returnType": {"nodeId": ".-1.140126199489568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, ".-1.140126199489568": {"type": "TypeVar", "varName": "_AF", "values": [], "upperBound": {"nodeId": "140126128562112"}, "def": "140126199489568", "variance": "INVARIANT"}, "140126128562112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126115886944": {"type": "Concrete", "module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199490016"}, "name": "__init__"}, {"kind": "Variable", "name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126115886944"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128554048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098295264"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140126115886944"}], "bases": [{"nodeId": "140126115885600", "args": [{"nodeId": ".1.140126115886944"}]}, {"nodeId": "140126115886608"}], "isAbstract": false}, "140126199490016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115886944", "args": [{"nodeId": ".1.140126115886944"}]}, {"nodeId": "140126098295488"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}, ".1.140126115886944": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126115886944", "variance": "COVARIANT"}, "140126098295488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325569040", "args": [{"nodeId": ".1.140126115886944"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126128554048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325569376", "args": [{"nodeId": ".1.140126115886944"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126098295264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115886944", "args": [{"nodeId": ".1.140126115886944"}]}, {"nodeId": "140126103469664"}, {"nodeId": "140126103469776"}, {"nodeId": "140126103469888"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140126098407488"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}, "140126103469664": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126103469776": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126103469888": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126098407488": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126115887280": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199492256"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["close"]}, "140126199492256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115887280"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115887616": {"type": "Concrete", "module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199492704"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199493152"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126115887616"}], "bases": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126115887616"}]}], "isAbstract": false}, "140126199492704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115887616", "args": [{"nodeId": ".1.140126115887616"}]}, {"nodeId": ".1.140126115887616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140126115887616": {"type": "TypeVar", "varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140126115887280"}, "def": "140126115887616", "variance": "INVARIANT"}, "140126199493152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115887616", "args": [{"nodeId": ".1.140126115887616"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140126115887952": {"type": "Protocol", "module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199493600"}, "name": "aclose"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["aclose"]}, "140126199493600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115887952"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": "140126325561984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115888288": {"type": "Concrete", "module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199494048"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098296160"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140126115888288"}], "bases": [{"nodeId": "140126115885600", "args": [{"nodeId": ".1.140126115888288"}]}], "isAbstract": false}, "140126199494048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115888288", "args": [{"nodeId": ".1.140126115888288"}]}, {"nodeId": ".1.140126115888288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}, ".1.140126115888288": {"type": "TypeVar", "varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140126115887952"}, "def": "140126115888288", "variance": "INVARIANT"}, "140126098296160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115888288", "args": [{"nodeId": ".1.140126115888288"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}, "140126115888624": {"type": "Concrete", "module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199494944"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199495392"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126115885264", "args": [{"nodeId": "N"}]}], "isAbstract": false}, "140126199494944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115888624"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}, "140126199495392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115888624"}, {"nodeId": "140126098407824"}, {"nodeId": "140126098407936"}, {"nodeId": "140126098408048"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098407824": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098407936": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098408048": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126116036672": {"type": "Concrete", "module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199495840"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126199496288"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126116036672"}], "bases": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126116036672"}]}], "isAbstract": false}, "140126199495840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116036672", "args": [{"nodeId": ".1.140126116036672"}]}, {"nodeId": ".1.140126116036672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}, ".1.140126116036672": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140126115811328"}, "def": "140126116036672", "variance": "INVARIANT"}, "140126115811328": {"type": "Union", "items": [{"nodeId": "140126119713072", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126199496288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116036672", "args": [{"nodeId": ".1.140126116036672"}]}, {"nodeId": "140126098408160"}, {"nodeId": "140126098408272"}, {"nodeId": "140126098408384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098408160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098408272": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098408384": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126116037008": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140126116037008"}], "bases": [{"nodeId": "140126116036672", "args": [{"nodeId": ".1.140126116037008"}]}], "isAbstract": false}, ".1.140126116037008": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140126115811328"}, "def": "140126116037008", "variance": "INVARIANT"}, "140126116037344": {"type": "Concrete", "module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140126116037344"}], "bases": [{"nodeId": "140126116036672", "args": [{"nodeId": ".1.140126116037344"}]}], "isAbstract": false}, ".1.140126116037344": {"type": "TypeVar", "varName": "_T_io", "values": [], "upperBound": {"nodeId": "140126115811328"}, "def": "140126116037344", "variance": "INVARIANT"}, "140126116037680": {"type": "Concrete", "module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191517984"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191518432"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191518880"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191519328"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191519776"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191520224"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191520672"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126191517984": {"type": "Function", "typeVars": [".-1.140126191517984"], "argTypes": [{"nodeId": "140126116037680"}, {"nodeId": "140126115885264", "args": [{"nodeId": ".-1.140126191517984"}]}], "returnType": {"nodeId": ".-1.140126191517984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140126191517984": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191517984", "variance": "INVARIANT"}, "140126191518432": {"type": "Function", "typeVars": [".-1.140126191518432"], "argTypes": [{"nodeId": "140126116037680"}, {"nodeId": ".-1.140126191518432"}], "returnType": {"nodeId": ".-1.140126191518432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140126191518432": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140126111630272"}, "def": "140126191518432", "variance": "INVARIANT"}, "140126111630272": {"type": "Union", "items": [{"nodeId": "140126115885264", "args": [{"nodeId": "A"}]}, {"nodeId": "140126111630048"}]}, "140126111630048": {"type": "TypeAlias", "target": {"nodeId": "140126128609696"}}, "140126128609696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115816480"}, {"nodeId": "140126115815920"}, {"nodeId": "140126115816144"}], "returnType": {"nodeId": "140126115816256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126115816480": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126115815920": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126115816144": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126115816256": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126191518880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116037680"}, {"nodeId": "140126098296384"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126098296608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140126098296384": {"type": "Function", "typeVars": [".-2.140126098296384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140126098296384"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098296384": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098296384", "variance": "INVARIANT"}, "140126098296608": {"type": "Function", "typeVars": [".-2.140126098296608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140126098296608"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098296608": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098296608", "variance": "INVARIANT"}, "140126191519328": {"type": "Function", "typeVars": [".-1.140126191519328"], "argTypes": [{"nodeId": ".-1.140126191519328"}], "returnType": {"nodeId": ".-1.140126191519328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126191519328": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191519328", "variance": "INVARIANT"}, "140126191519776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116037680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191520224": {"type": "Function", "typeVars": [".-1.140126191520224"], "argTypes": [{"nodeId": ".-1.140126191520224"}], "returnType": {"nodeId": ".-1.140126191520224"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126191520224": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191520224", "variance": "INVARIANT"}, "140126191520672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116037680"}, {"nodeId": "140126098407712"}, {"nodeId": "140126098408608"}, {"nodeId": "140126098408720"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098407712": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098408608": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098408720": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126116038016": {"type": "Concrete", "module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191521120"}, "name": "enter_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126098296832"}, "name": "enter_async_context"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191522016"}, "name": "push"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191522464"}, "name": "push_async_exit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191522912"}, "name": "callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191523360"}, "name": "push_async_callback"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191521568"}, "name": "pop_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191523808"}, "name": "aclose"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191524704"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191524256"}, "name": "__aexit__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126191521120": {"type": "Function", "typeVars": [".-1.140126191521120"], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": "140126115885264", "args": [{"nodeId": ".-1.140126191521120"}]}], "returnType": {"nodeId": ".-1.140126191521120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140126191521120": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191521120", "variance": "INVARIANT"}, "140126098296832": {"type": "Function", "typeVars": [".-1.140126098296832"], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": "140126115885600", "args": [{"nodeId": ".-1.140126098296832"}]}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140126098296832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}, ".-1.140126098296832": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098296832", "variance": "INVARIANT"}, "140126191522016": {"type": "Function", "typeVars": [".-1.140126191522016"], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": ".-1.140126191522016"}], "returnType": {"nodeId": ".-1.140126191522016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140126191522016": {"type": "TypeVar", "varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140126111630272"}, "def": "140126191522016", "variance": "INVARIANT"}, "140126191522464": {"type": "Function", "typeVars": [".-1.140126191522464"], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": ".-1.140126191522464"}], "returnType": {"nodeId": ".-1.140126191522464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}, ".-1.140126191522464": {"type": "TypeVar", "varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140126111631280"}, "def": "140126191522464", "variance": "INVARIANT"}, "140126111631280": {"type": "Union", "items": [{"nodeId": "140126115885600", "args": [{"nodeId": "A"}]}, {"nodeId": "140126111631616"}]}, "140126111631616": {"type": "TypeAlias", "target": {"nodeId": "140126128554496"}}, "140126128554496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115820400"}, {"nodeId": "140126115818048"}, {"nodeId": "140126115820064"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": "140126115820176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126115820400": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126115818048": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126115820064": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126115820176": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126191522912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": "140126098293248"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126098297056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140126098293248": {"type": "Function", "typeVars": [".-2.140126098293248"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140126098293248"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098293248": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098293248", "variance": "INVARIANT"}, "140126098297056": {"type": "Function", "typeVars": [".-2.140126098297056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140126098297056"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098297056": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098297056", "variance": "INVARIANT"}, "140126191523360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": "140126098293024"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126098297504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}, "140126098293024": {"type": "Function", "typeVars": [".-2.140126098293024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".-2.140126098293024"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098293024": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098293024", "variance": "INVARIANT"}, "140126098297504": {"type": "Function", "typeVars": [".-2.140126098297504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": ".-2.140126098297504"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-2.140126098297504": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126098297504", "variance": "INVARIANT"}, "140126191521568": {"type": "Function", "typeVars": [".-1.140126191521568"], "argTypes": [{"nodeId": ".-1.140126191521568"}], "returnType": {"nodeId": ".-1.140126191521568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126191521568": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191521568", "variance": "INVARIANT"}, "140126191523808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038016"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191524704": {"type": "Function", "typeVars": [".-1.140126191524704"], "argTypes": [{"nodeId": ".-1.140126191524704"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140126191524704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126191524704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126191524704", "variance": "INVARIANT"}, "140126191524256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038016"}, {"nodeId": "140126098409280"}, {"nodeId": "140126098409616"}, {"nodeId": "140126098409728"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140126325562992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}, "140126098409280": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098409616": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098409728": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126116038352": {"type": "Concrete", "module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126116038352"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126098409168"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191526496"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191526944"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191526048"}, "name": "__aenter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191527392"}, "name": "__aexit__"}], "typeVars": [{"nodeId": ".1.140126116038352"}], "bases": [{"nodeId": "140126115885264", "args": [{"nodeId": ".1.140126116038352"}]}, {"nodeId": "140126115885600", "args": [{"nodeId": ".1.140126116038352"}]}], "isAbstract": false}, ".1.140126116038352": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126116038352", "variance": "INVARIANT"}, "140126098409168": {"type": "Overloaded", "items": [{"nodeId": "140126191525152"}, {"nodeId": "140126191525600"}]}, "140126191525152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}, "140126191525600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": ".1.140126116038352"}]}, {"nodeId": ".1.140126116038352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}, "140126191526496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": ".1.140126116038352"}]}], "returnType": {"nodeId": ".1.140126116038352"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126191526944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": ".1.140126116038352"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140126191526048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": ".1.140126116038352"}]}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140126116038352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126191527392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116038352", "args": [{"nodeId": ".1.140126116038352"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}, "140126120032432": {"type": "Concrete", "module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082296608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082294592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082293696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082293024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082292352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082291680"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107409920"}, "items": [{"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "expand"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107480384"}, "items": [{"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "group"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107481168"}, "items": [{"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groups"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107481392"}, "items": [{"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "groupdict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186541952"}, "name": "start"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186542400"}, "name": "end"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186542848"}, "name": "span"}, {"kind": "Variable", "name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082291008"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107482512"}, "items": [{"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186544640"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186545088"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186545536"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126120032432"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126082296608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126120032432": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120032432", "variance": "INVARIANT"}, "140126082294592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126082293696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126107480944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107480944": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126082293024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126107481056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107481056": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126082292352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": ".1.140126120032432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126082291680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126120032768": {"type": "Concrete", "module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082237824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082238272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082239168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082239840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107482960"}, "items": [{"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "search"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107582640"}, "items": [{"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "match"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107583424"}, "items": [{"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "fullmatch"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107583872"}, "items": [{"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "split"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107584320"}, "items": [{"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "findall"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107584768"}, "items": [{"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "finditer"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107585440"}, "items": [{"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "sub"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107585888"}, "items": [{"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "subn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186669888"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186670336"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186670784"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126120032768"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126082237824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126120032768": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120032768", "variance": "INVARIANT"}, "140126082238272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}], "returnType": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126082239168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126082239840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}], "returnType": {"nodeId": ".1.140126120032768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107482960": {"type": "Overloaded", "items": [{"nodeId": "140126186547776"}, {"nodeId": "140126107312064"}]}, "140126186547776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107583536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107583536": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126107312064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107583648"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107583760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107583648": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107583760": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "N"}]}, "140126107582640": {"type": "Overloaded", "items": [{"nodeId": "140126186548672"}, {"nodeId": "140126107309376"}]}, "140126186548672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107583984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107583984": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126107309376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107584096"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107584208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107584096": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107584208": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "N"}]}, "140126107583424": {"type": "Overloaded", "items": [{"nodeId": "140126186549568"}, {"nodeId": "140126107312288"}]}, "140126186549568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107584432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107584432": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126107312288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107584544"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107584656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107584544": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107584656": {"type": "Union", "items": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "N"}]}, "140126107583872": {"type": "Overloaded", "items": [{"nodeId": "140126186550464"}, {"nodeId": "140126107312512"}]}, "140126186550464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126107584992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140126107584992": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126107312512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107585104"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126107585328"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}, "140126107585104": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107585328": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "A"}]}, "140126107584320": {"type": "Overloaded", "items": [{"nodeId": "140126186551360"}, {"nodeId": "140126107312736"}]}, "140126186551360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107312736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107585664"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107585664": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107584768": {"type": "Overloaded", "items": [{"nodeId": "140126186552256"}, {"nodeId": "140126107312960"}]}, "140126186552256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107312960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107586000"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}, "140126107586000": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107585440": {"type": "Overloaded", "items": [{"nodeId": "140126186668096"}, {"nodeId": "140126107313632"}]}, "140126186668096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107586224"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140126107586224": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126107313184"}]}, "140126107313184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126107313632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107586448"}, {"nodeId": "140126107586672"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140126107586448": {"type": "Union", "items": [{"nodeId": "140126107586336"}, {"nodeId": "140126107311392"}]}, "140126107586336": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107311392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}], "returnType": {"nodeId": "140126107586560"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126107586560": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107586672": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107585888": {"type": "Overloaded", "items": [{"nodeId": "140126186668992"}, {"nodeId": "140126107314304"}]}, "140126186668992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126107586896"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107587120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140126107586896": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126107313408"}]}, "140126107313408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126107587120": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126107314304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107587344"}, {"nodeId": "140126107587568"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126107587792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}, "140126107587344": {"type": "Union", "items": [{"nodeId": "140126107587232"}, {"nodeId": "140126107313856"}]}, "140126107587232": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107313856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}], "returnType": {"nodeId": "140126107587456"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126107587456": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107587568": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107587792": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126186669888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}], "returnType": {"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186670336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120032768", "args": [{"nodeId": ".1.140126120032768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126186670784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126107409920": {"type": "Overloaded", "items": [{"nodeId": "140126186537920"}, {"nodeId": "140126107309824"}]}, "140126186537920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140126107309824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107481280"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140126107481280": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126107480384": {"type": "Overloaded", "items": [{"nodeId": "140126186538816"}, {"nodeId": "140126186539264"}, {"nodeId": "140126186539712"}]}, "140126186538816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140126120032432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186539264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107481616"}], "returnType": {"nodeId": "140126107481840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126107481616": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126107481840": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": "A"}]}, "140126186539712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107481952"}, {"nodeId": "140126107482064"}, {"nodeId": "140126107482176"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126107482400"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}, "140126107481952": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126107482064": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126107482176": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126107482400": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": "A"}]}, "140126107481168": {"type": "Overloaded", "items": [{"nodeId": "140126186540160"}, {"nodeId": "140126186540608"}]}, "140126186540160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126107482736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107482736": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": "A"}]}, "140126186540608": {"type": "Function", "typeVars": [".-1.140126186540608"], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": ".-1.140126186540608"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126107482848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140126186540608": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186540608", "variance": "INVARIANT"}, "140126107482848": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": ".-1.140126186540608"}]}, "140126107481392": {"type": "Overloaded", "items": [{"nodeId": "140126186541056"}, {"nodeId": "140126186541504"}]}, "140126186541056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126107483184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107483184": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": "A"}]}, "140126186541504": {"type": "Function", "typeVars": [".-1.140126186541504"], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": ".-1.140126186541504"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126107483296"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}, ".-1.140126186541504": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186541504", "variance": "INVARIANT"}, "140126107483296": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": ".-1.140126186541504"}]}, "140126186541952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107483408"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126107483408": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126186542400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107483520"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126107483520": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126186542848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107483632"}], "returnType": {"nodeId": "140126107483856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126107483632": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126107483856": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126082291008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126107582528"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107582528": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126107482512": {"type": "Overloaded", "items": [{"nodeId": "140126186543744"}, {"nodeId": "140126186544192"}]}, "140126186543744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140126120032432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126186544192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "140126107582864"}], "returnType": {"nodeId": "140126107583088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126107582864": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126107583088": {"type": "Union", "items": [{"nodeId": ".1.140126120032432"}, {"nodeId": "A"}]}, "140126186544640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}], "returnType": {"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186545088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120032432", "args": [{"nodeId": ".1.140126120032432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126186545536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126111296736": {"type": "Concrete", "module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115692944"}], "isAbstract": false}, "140126110991408": {"type": "Concrete", "module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126056902864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186681312"}, "name": "__init__"}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111728128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110975808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110975920"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126056902864": {"type": "Tuple", "items": []}, "140126186681312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126110991408"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126111728128": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126110975808": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126110975920": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126110991744": {"type": "Concrete", "module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110992080": {"type": "Concrete", "module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110992416": {"type": "Concrete", "module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057071328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110992080"}], "isAbstract": false}, "140126057071328": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110992752": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057072336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991744"}], "isAbstract": false}, "140126057072336": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111002832": {"type": "Concrete", "module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110993088": {"type": "Concrete", "module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057073344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110992416"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991744"}], "isAbstract": false}, "140126057073344": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110994096": {"type": "Concrete", "module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110993424": {"type": "Concrete", "module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057074688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991744"}], "isAbstract": false}, "140126057074688": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126110993760": {"type": "Concrete", "module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057075584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991744"}], "isAbstract": false}, "140126057075584": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126110994432": {"type": "Concrete", "module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057077600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111288336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111735520"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057077600": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111288336": {"type": "Concrete", "module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052500304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111288672"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111288672"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111288672"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110982864"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111727792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052500304": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111288672": {"type": "Concrete", "module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052501536"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111727904"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052501536": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111727904": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110982640": {"type": "Union", "items": [{"nodeId": "140126111288672"}, {"nodeId": "N"}]}, "140126110982864": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111727792": {"type": "Union", "items": [{"nodeId": "140126111288672"}, {"nodeId": "N"}]}, "140126111735520": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110994768": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057079056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111288336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111729696"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057079056": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111729696": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110995104": {"type": "Concrete", "module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057080288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289008"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057080288": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111289008": {"type": "Concrete", "module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052502432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052502432": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110982976": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126110995440": {"type": "Concrete", "module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057080736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111730144"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057080736": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111730144": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110995776": {"type": "Concrete", "module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057081632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057081632": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126110996112": {"type": "Concrete", "module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057082976"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057082976": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110996448": {"type": "Concrete", "module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057084096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111732272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111211456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057084096": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111732272": {"type": "Union", "items": [{"nodeId": "140126111208096"}, {"nodeId": "140126111206752"}, {"nodeId": "140126111207424"}]}, "140126111208096": {"type": "Concrete", "module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052246784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052246784": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111209104": {"type": "Concrete", "module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126111206752": {"type": "Concrete", "module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052241520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052241520": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111207424": {"type": "Concrete", "module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052244880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052244880": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111211456": {"type": "Concrete", "module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110996784": {"type": "Concrete", "module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057085440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111729472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111732384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057085440": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111729472": {"type": "Union", "items": [{"nodeId": "140126111208096"}, {"nodeId": "140126111206752"}, {"nodeId": "140126111207424"}]}, "140126111732384": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110997120": {"type": "Concrete", "module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057185344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057185344": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110997456": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057186688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057186688": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110997792": {"type": "Concrete", "module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057187584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057187584": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110998128": {"type": "Concrete", "module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057188704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057188704": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110998464": {"type": "Concrete", "module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057189824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289680"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057189824": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111289680": {"type": "Concrete", "module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052504448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052504448": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110983088": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110998800": {"type": "Concrete", "module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057190944"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289680"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057190944": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110999136": {"type": "Concrete", "module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057191840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111732496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111728912"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057191840": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111732496": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111728912": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110999472": {"type": "Concrete", "module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057193296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111288000"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057193296": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111288000": {"type": "Concrete", "module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052252384"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111287664"}], "isAbstract": false}, "140126052252384": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110982416": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110982528": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111287664": {"type": "Concrete", "module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110999808": {"type": "Concrete", "module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057194640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111729024"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057194640": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111729024": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111000144": {"type": "Concrete", "module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057195424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289344"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057195424": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111289344": {"type": "Concrete", "module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052503440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982752"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052503440": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110982752": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111000480": {"type": "Concrete", "module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057196768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111727680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289344"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057196768": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111727680": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111000816": {"type": "Concrete", "module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057197440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057197440": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111001152": {"type": "Concrete", "module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057198336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057198336": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111001488": {"type": "Concrete", "module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057199232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126057199232": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111001824": {"type": "Concrete", "module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126111002160": {"type": "Concrete", "module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126111002496": {"type": "Concrete", "module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126111003168": {"type": "Concrete", "module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057200352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111210448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057200352": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111210448": {"type": "Concrete", "module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126111003504": {"type": "Concrete", "module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057349184"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111211456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057349184": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111003840": {"type": "Concrete", "module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057350080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111216160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057350080": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111216160": {"type": "Concrete", "module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126111004176": {"type": "Concrete", "module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057351088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111288336"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057351088": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111004512": {"type": "Concrete", "module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057352320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057352320": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111004848": {"type": "Concrete", "module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057353216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110976592"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057353216": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110976592": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111005184": {"type": "Concrete", "module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057354000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057354000": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111005520": {"type": "Concrete", "module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057355120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111287328"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057355120": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111287328": {"type": "Concrete", "module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052251376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052251376": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111005856": {"type": "Concrete", "module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057356128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111287328"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057356128": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111006192": {"type": "Concrete", "module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057357360"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111287328"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057357360": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111203392": {"type": "Concrete", "module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057358256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111287328"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057358256": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111203728": {"type": "Concrete", "module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057359040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057359040": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111204064": {"type": "Concrete", "module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057359936"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111730928"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057359936": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111730928": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111204400": {"type": "Concrete", "module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057360832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057360832": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111204736": {"type": "Concrete", "module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057362176"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111217840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057362176": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111217840": {"type": "Concrete", "module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126111205072": {"type": "Concrete", "module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057363296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111289008"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057363296": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111205408": {"type": "Concrete", "module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057364416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110976368"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057364416": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110976368": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111205744": {"type": "Concrete", "module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126057365088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126057365088": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111206080": {"type": "Concrete", "module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052238720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110976144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110981856"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052238720": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110976144": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126110981856": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316832"}]}, "140126111206416": {"type": "Concrete", "module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052240288"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111208096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052240288": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111207088": {"type": "Concrete", "module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052243200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982080"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110982304"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052243200": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110982080": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110982192": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126110982304": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111207760": {"type": "Concrete", "module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052245776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052245776": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111208432": {"type": "Concrete", "module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052247792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052247792": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111208768": {"type": "Concrete", "module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052248800"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111209104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111002832"}], "isAbstract": false}, "140126052248800": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111209440": {"type": "Concrete", "module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126111209776": {"type": "Concrete", "module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126111210112": {"type": "Concrete", "module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126111210784": {"type": "Concrete", "module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111210448"}], "isAbstract": false}, "140126111211120": {"type": "Concrete", "module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111210448"}], "isAbstract": false}, "140126111211792": {"type": "Concrete", "module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111212128": {"type": "Concrete", "module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111212464": {"type": "Concrete", "module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111212800": {"type": "Concrete", "module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111213136": {"type": "Concrete", "module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111213472": {"type": "Concrete", "module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111213808": {"type": "Concrete", "module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111214144": {"type": "Concrete", "module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111214480": {"type": "Concrete", "module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111214816": {"type": "Concrete", "module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111215152": {"type": "Concrete", "module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111215488": {"type": "Concrete", "module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111215824": {"type": "Concrete", "module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111211456"}], "isAbstract": false}, "140126111216496": {"type": "Concrete", "module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111216160"}], "isAbstract": false}, "140126111216832": {"type": "Concrete", "module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111216160"}], "isAbstract": false}, "140126111217168": {"type": "Concrete", "module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111216160"}], "isAbstract": false}, "140126111217504": {"type": "Concrete", "module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111216160"}], "isAbstract": false}, "140126111218176": {"type": "Concrete", "module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111218512": {"type": "Concrete", "module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111218848": {"type": "Concrete", "module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111219184": {"type": "Concrete", "module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111285312": {"type": "Concrete", "module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111285648": {"type": "Concrete", "module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111285984": {"type": "Concrete", "module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111286320": {"type": "Concrete", "module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111286656": {"type": "Concrete", "module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111286992": {"type": "Concrete", "module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111217840"}], "isAbstract": false}, "140126111290016": {"type": "Concrete", "module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052505456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290688"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110994096"}], "isAbstract": false}, "140126052505456": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111290688": {"type": "Concrete", "module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052506128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111290352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126110994096"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126052506128": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111290352": {"type": "Concrete", "module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126110983200": {"type": "Union", "items": [{"nodeId": "140126111002832"}, {"nodeId": "N"}]}, "140126111291024": {"type": "Concrete", "module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052506240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052506240": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111291360": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052506576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983312"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052506576": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126110983312": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}, "140126111291696": {"type": "Concrete", "module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052506912"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290352"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052506912": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126111292032": {"type": "Concrete", "module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052507248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983648"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052507248": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126110983648": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111292368": {"type": "Concrete", "module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052508032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111002832"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290352"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983760"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052508032": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110983760": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111292704": {"type": "Concrete", "module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052508816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111002832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290352"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290352"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052508816": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126111293040": {"type": "Concrete", "module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052509040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126110983984"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052509040": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126110983872": {"type": "Union", "items": [{"nodeId": "140126111290352"}, {"nodeId": "N"}]}, "140126110983984": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111293376": {"type": "Concrete", "module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126052509264"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111290352"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111290352"}], "isAbstract": false}, "140126052509264": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}]}, "140126115187056": {"type": "Concrete", "module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119325568"}, {"nodeId": "140126119593344"}], "isAbstract": false}, "140126115187728": {"type": "Concrete", "module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186839552"}, "name": "readall"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186840000"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186840448"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186840896"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140126115187392"}], "isAbstract": false}, "140126186839552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187728"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186840000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187728"}, {"nodeId": "140126102964592"}], "returnType": {"nodeId": "140126102964704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102964592": {"type": "TypeAlias", "target": {"nodeId": "140126110977376"}}, "140126102964704": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126186840448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187728"}, {"nodeId": "140126102964816"}], "returnType": {"nodeId": "140126102964928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102964816": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126102964928": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126186840896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115187728"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126102965040"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102965040": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126115188064": {"type": "Concrete", "module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115187728"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186841344"}, "name": "detach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186841792"}, "name": "readinto"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186842240"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186842688"}, "name": "readinto1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186843136"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186843584"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140126115187392"}], "isAbstract": false}, "140126186841344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}], "returnType": {"nodeId": "140126115187728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186841792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}, {"nodeId": "140126102965152"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102965152": {"type": "TypeAlias", "target": {"nodeId": "140126110977376"}}, "140126186842240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}, {"nodeId": "140126102965264"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102965264": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126186842688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}, {"nodeId": "140126102965376"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102965376": {"type": "TypeAlias", "target": {"nodeId": "140126110977376"}}, "140126186843136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}, {"nodeId": "140126102965488"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102965488": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126186843584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188064"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126115188400": {"type": "Concrete", "module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111492560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186844032"}, "name": "__init__"}, {"kind": "Variable", "name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069124544"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186844928"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186845376"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186845824"}, "name": "__enter__"}], "typeVars": [], "bases": [{"nodeId": "140126115187728"}, {"nodeId": "140126119713408"}], "isAbstract": false}, "140126111492560": {"type": "TypeAlias", "target": {"nodeId": "140126116114864"}}, "140126116114864": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126116115088"}]}, "140126116115088": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126186844032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188400"}, {"nodeId": "140126102965600"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126102965824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}, "140126102965600": {"type": "TypeAlias", "target": {"nodeId": "140126116114864"}}, "140126102965824": {"type": "Union", "items": [{"nodeId": "140126102965712"}, {"nodeId": "N"}]}, "140126102965712": {"type": "TypeAlias", "target": {"nodeId": "140126128563680"}}, "140126128563680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126069124544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188400"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186844928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188400"}, {"nodeId": "140126102965936"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102965936": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126186845376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188400"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126186845824": {"type": "Function", "typeVars": [".-1.140126186845824"], "argTypes": [{"nodeId": ".-1.140126186845824"}], "returnType": {"nodeId": ".-1.140126186845824"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186845824": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186845824", "variance": "INVARIANT"}, "140126115188736": {"type": "Concrete", "module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186846272"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186846720"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186847168"}, "name": "getvalue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186847616"}, "name": "getbuffer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186848320"}, "name": "read1"}], "typeVars": [], "bases": [{"nodeId": "140126115188064"}, {"nodeId": "140126119713408"}], "isAbstract": false}, "140126186846272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188736"}, {"nodeId": "140126102966048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}, "140126102966048": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126186846720": {"type": "Function", "typeVars": [".-1.140126186846720"], "argTypes": [{"nodeId": ".-1.140126186846720"}], "returnType": {"nodeId": ".-1.140126186846720"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186846720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186846720", "variance": "INVARIANT"}, "140126186847168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188736"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186847616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188736"}], "returnType": {"nodeId": "140126119318176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126186848320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115188736"}, {"nodeId": "140126102966160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126102966160": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126115189072": {"type": "Concrete", "module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186848768"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186849216"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186849664"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140126115188064"}, {"nodeId": "140126119713408"}], "isAbstract": false}, "140126186848768": {"type": "Function", "typeVars": [".-1.140126186848768"], "argTypes": [{"nodeId": ".-1.140126186848768"}], "returnType": {"nodeId": ".-1.140126186848768"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186848768": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186848768", "variance": "INVARIANT"}, "140126186849216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115189072"}, {"nodeId": "140126115187728"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140126186849664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115189072"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126115189408": {"type": "Concrete", "module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186850112"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186850560"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186851008"}, "name": "write"}], "typeVars": [], "bases": [{"nodeId": "140126115188064"}, {"nodeId": "140126119713408"}], "isAbstract": false}, "140126186850112": {"type": "Function", "typeVars": [".-1.140126186850112"], "argTypes": [{"nodeId": ".-1.140126186850112"}], "returnType": {"nodeId": ".-1.140126186850112"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186850112": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186850112", "variance": "INVARIANT"}, "140126186850560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115189408"}, {"nodeId": "140126115187728"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}, "140126186851008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115189408"}, {"nodeId": "140126102966272"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102966272": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126115189744": {"type": "Concrete", "module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186851456"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186851904"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140126115189072"}, {"nodeId": "140126115189408"}], "isAbstract": false}, "140126186851456": {"type": "Function", "typeVars": [".-1.140126186851456"], "argTypes": [{"nodeId": ".-1.140126186851456"}], "returnType": {"nodeId": ".-1.140126186851456"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126186851456": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126186851456", "variance": "INVARIANT"}, "140126186851904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115189744"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}, "140126115190080": {"type": "Concrete", "module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186852352"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186852800"}, "name": "peek"}], "typeVars": [], "bases": [{"nodeId": "140126115188064"}], "isAbstract": false}, "140126186852352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190080"}, {"nodeId": "140126115187728"}, {"nodeId": "140126115187728"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}, "140126186852800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115190080"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126115191088": {"type": "Concrete", "module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186862656"}, "name": "__init__"}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186863104"}, "name": "getvalue"}], "typeVars": [], "bases": [{"nodeId": "140126115190752"}], "isAbstract": false}, "140126186862656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191088"}, {"nodeId": "140126102967392"}, {"nodeId": "140126102967504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}, "140126102967392": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126102967504": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126186863104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191088"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111604672": {"type": "Concrete", "module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186863552"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126186864000"}, "name": "decode"}, {"kind": "Variable", "name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069711680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182326784"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140126116043056"}], "isAbstract": false}, "140126186863552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111604672"}, {"nodeId": "140126102967616"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}, "140126102967616": {"type": "Union", "items": [{"nodeId": "140126116043056"}, {"nodeId": "N"}]}, "140126116043056": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144560512"}, "name": "__init__"}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060880256"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153343488"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153343936"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153344384"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126144560512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043056"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126060880256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043056"}, {"nodeId": "140126098807536"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140126098807536": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126153343488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153343936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043056"}], "returnType": {"nodeId": "140126098807760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098807760": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126153344384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043056"}, {"nodeId": "140126098807984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140126098807984": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126186864000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111604672"}, {"nodeId": "140126102967840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140126102967840": {"type": "Union", "items": [{"nodeId": "140126102967728"}, {"nodeId": "140126119317840"}]}, "140126102967728": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126069711680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111604672"}], "returnType": {"nodeId": "140126102967952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102967952": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126182326784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111604672"}, {"nodeId": "140126102968176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126102968176": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126115195456": {"type": "Concrete", "module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126115196128": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065096096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115195792"}], "isAbstract": true}, "140126065096096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196128"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126115196464": {"type": "Concrete", "module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182330144"}, "name": "is_package"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182330592"}, "name": "get_code"}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065095200"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182331488"}, "name": "exec_module"}, {"kind": "Variable", "name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065093856"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115195792"}], "isAbstract": true}, "140126182330144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196464"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126182330592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196464"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103224608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126103224608": {"type": "Union", "items": [{"nodeId": "140126120020336"}, {"nodeId": "N"}]}, "140126065095200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196464"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103224720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126103224720": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182331488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196464"}, {"nodeId": "140126120021680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140126065093856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126103224944"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126120020336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}, "140126103224944": {"type": "Union", "items": [{"nodeId": "140126103224832"}, {"nodeId": "140126119317840"}]}, "140126103224832": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126115196800": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065092960"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115196464"}], "isAbstract": true}, "140126065092960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115196800"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126115197136": {"type": "Concrete", "module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182332832"}, "name": "path_mtime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182333280"}, "name": "set_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182333728"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182334176"}, "name": "path_stats"}], "typeVars": [], "bases": [{"nodeId": "140126115196128"}, {"nodeId": "140126115196800"}], "isAbstract": true}, "140126182332832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197136"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119316496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126182333280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197136"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}, "140126182333728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197136"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103225056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126103225056": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182334176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197136"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126115197472": {"type": "Concrete", "module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182334624"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182335072"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182335520"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140126115195456"}], "isAbstract": false}, "140126182334624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197472"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103225280"}], "returnType": {"nodeId": "140126103225392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140126103225280": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126103225392": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126182335072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182335520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197472"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103225504"}, {"nodeId": "140126103225616"}], "returnType": {"nodeId": "140126103225728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}, "140126103225504": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126103225616": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126103225728": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126115197808": {"type": "Concrete", "module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182335968"}, "name": "find_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182336416"}, "name": "find_loader"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182336864"}, "name": "invalidate_caches"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182337312"}, "name": "find_spec"}], "typeVars": [], "bases": [{"nodeId": "140126115195456"}], "isAbstract": false}, "140126182335968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197808"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103225840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126103225840": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126182336416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197808"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103226176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126103226176": {"type": "Tuple", "items": [{"nodeId": "140126103225952"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}]}, "140126103225952": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126182336864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182337312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115197808"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103226288"}], "returnType": {"nodeId": "140126103226400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}, "140126103226288": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126103226400": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126115198144": {"type": "Concrete", "module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182337760"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182338208"}, "name": "get_data"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182338656"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182339104"}, "name": "load_module"}], "typeVars": [], "bases": [{"nodeId": "140126115196128"}, {"nodeId": "140126115196800"}], "isAbstract": true}, "140126182337760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198144"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}, "140126182338208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198144"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126182338656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198144"}, {"nodeId": "140126103226512"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140126103226512": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182339104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198144"}, {"nodeId": "140126103226624"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140126103226624": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115198480": {"type": "Concrete", "module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065088928"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065088480"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065087808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065088256"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126065088928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198480"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140126065088480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198480"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140126065087808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198480"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126065088256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198480"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115198816": {"type": "Protocol", "module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065096768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065086464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065086240"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065085568"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126102978368"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126065086016"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065085344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065085120"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065084448"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}, "140126065096768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065086464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065086240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126115198816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065085568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115198816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}, "140126102978368": {"type": "Overloaded", "items": [{"nodeId": "140126182458976"}, {"nodeId": "140126182459424"}, {"nodeId": "140126182459872"}, {"nodeId": "140126182460320"}, {"nodeId": "140126182460768"}, {"nodeId": "140126182461216"}, {"nodeId": "140126182461664"}]}, "140126182458976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103226848"}, {"nodeId": "140126119316160"}, {"nodeId": "140126103226960"}, {"nodeId": "140126103227072"}, {"nodeId": "140126103227184"}], "returnType": {"nodeId": "140126115190752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103226848": {"type": "TypeAlias", "target": {"nodeId": "140126116110720"}}, "140126116110720": {"type": "Union", "items": [{"nodeId": "140126116112624"}, {"nodeId": "140126116112736"}, {"nodeId": "140126116110608"}]}, "140126116112624": {"type": "TypeAlias", "target": {"nodeId": "140126116110160"}}, "140126116110160": {"type": "Union", "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"}]}, "140126116112736": {"type": "TypeAlias", "target": {"nodeId": "140126116112288"}}, "140126116112288": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126116110608": {"type": "TypeAlias", "target": {"nodeId": "140126116114304"}}, "140126116114304": {"type": "Union", "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"}]}, "140126103226960": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103227072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103227184": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182459424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103227296"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115188400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103227296": {"type": "TypeAlias", "target": {"nodeId": "140126116116208"}}, "140126116116208": {"type": "Union", "items": [{"nodeId": "140126116116432"}, {"nodeId": "140126116116544"}, {"nodeId": "140126116115200"}]}, "140126116116432": {"type": "TypeAlias", "target": {"nodeId": "140126116113968"}}, "140126116113968": {"type": "Union", "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"}]}, "140126116116544": {"type": "TypeAlias", "target": {"nodeId": "140126110974464"}}, "140126110974464": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126116115200": {"type": "TypeAlias", "target": {"nodeId": "140126116116096"}}, "140126116116096": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126182459872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103227520"}, {"nodeId": "140126103228864"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103227520": {"type": "TypeAlias", "target": {"nodeId": "140126116113968"}}, "140126103228864": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126182460320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103230096"}, {"nodeId": "140126103230208"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103230096": {"type": "TypeAlias", "target": {"nodeId": "140126116116096"}}, "140126103230208": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126182460768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103231216"}, {"nodeId": "140126103227968"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103231216": {"type": "TypeAlias", "target": {"nodeId": "140126110974464"}}, "140126103227968": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126182461216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103228976"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103228976": {"type": "TypeAlias", "target": {"nodeId": "140126116116208"}}, "140126182461664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126103228528"}, {"nodeId": "140126103230320"}, {"nodeId": "140126103231104"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126103228528": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103230320": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103231104": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126065086016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065085344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115198816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126065085120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065084448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115198816"}, {"nodeId": "140126103229200"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140126103229200": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115199152": {"type": "Concrete", "module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065084224"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182464352"}, "name": "open_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182464800"}, "name": "resource_path"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182465248"}, "name": "is_resource"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182465696"}, "name": "contents"}], "typeVars": [], "bases": [{"nodeId": "140126115198480"}], "isAbstract": true}, "140126065084224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199152"}], "returnType": {"nodeId": "140126115198816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182464352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199152"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115189072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140126182464800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199152"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}, "140126182465248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199152"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126182465696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115199152"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111596608": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065023168"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065023616"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065022720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065022272"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065021824"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065019808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065021152"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065020032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065018240"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115197472"}, {"nodeId": "140126115196464"}], "isAbstract": false}, "140126065023168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102975232"}], "returnType": {"nodeId": "140126102975344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140126102975232": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102975344": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126065023616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102975456"}, {"nodeId": "140126102975568"}], "returnType": {"nodeId": "140126102975680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140126102975456": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102975568": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126102975680": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126065022720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065022272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065021824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065019808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065021152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140126065020032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194784"}], "returnType": {"nodeId": "140126102975792"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140126102975792": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126065018240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140126111596944": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065018464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065017568"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065016896"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065016416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065015968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065015520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065015072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065013952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065013728"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115197472"}, {"nodeId": "140126115196464"}], "isAbstract": false}, "140126065018464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102975904"}], "returnType": {"nodeId": "140126102976016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140126102975904": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102976016": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126065017568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102976128"}, {"nodeId": "140126102976240"}], "returnType": {"nodeId": "140126102976352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140126102976128": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102976240": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126102976352": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126065016896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065016416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065015968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065015520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}, "140126065015072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}, "140126065013952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194784"}], "returnType": {"nodeId": "140126102976464"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}, "140126102976464": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126065013728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120021680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}, "140126111597280": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065012608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065012160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115197472"}], "isAbstract": false}, "140126065012608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102976576"}], "returnType": {"nodeId": "140126102976688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140126102976576": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102976688": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126065012160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102976800"}, {"nodeId": "140126102976912"}], "returnType": {"nodeId": "140126102977024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140126102976800": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102976912": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126102977024": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126115195120": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065010592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065010144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065011040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065009696"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126065010592": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}, "140126065010144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111300768"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126115194448"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}, "140126111300768": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111812624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153575104"}, "name": "__init__"}, {"kind": "Variable", "name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069910080"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111812624": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126153575104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111300768"}, {"nodeId": "140126102972208"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}, "140126102972208": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069910080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111300768"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115194448": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153577344"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153577792"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153578240"}, "name": "locate_file"}], "typeVars": [], "bases": [{"nodeId": "140126115194112"}], "isAbstract": false}, "140126153577344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194448"}, {"nodeId": "140126111603664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126111603664": {"type": "Concrete", "module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102505504"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127751904"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127752352"}, "name": "__exit__"}, {"kind": "Variable", "name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126078292864"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127753248"}, "name": "stat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127753696"}, "name": "chmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127755040"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127755488"}, "name": "glob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127755936"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127756384"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127756832"}, "name": "is_symlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127757280"}, "name": "is_socket"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127757728"}, "name": "is_fifo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127758176"}, "name": "is_block_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127758624"}, "name": "is_char_device"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127759072"}, "name": "iterdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127759520"}, "name": "lchmod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127759968"}, "name": "lstat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127760416"}, "name": "mkdir"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126107698448"}, "items": [{"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127764000"}, "name": "owner"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127764448"}, "name": "group"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127764896"}, "name": "is_mount"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127765344"}, "name": "readlink"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127765792"}, "name": "rename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127766240"}, "name": "replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127882528"}, "name": "resolve"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127882976"}, "name": "rglob"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127883424"}, "name": "rmdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127883872"}, "name": "symlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127884320"}, "name": "hardlink_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127884768"}, "name": "touch"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127885216"}, "name": "unlink"}, {"kind": "Variable", "name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126078295328"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127886560"}, "name": "absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127887008"}, "name": "expanduser"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127887456"}, "name": "read_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127887904"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127888352"}, "name": "samefile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127888800"}, "name": "write_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127889248"}, "name": "write_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127890144"}, "name": "link_to"}], "typeVars": [], "bases": [{"nodeId": "140126111602656"}], "isAbstract": false}, "140126102505504": {"type": "Function", "typeVars": [".-1.140126102505504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126107704048"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126102505504"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}, "140126107704048": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, ".-1.140126102505504": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102505504", "variance": "INVARIANT"}, "140126127751904": {"type": "Function", "typeVars": [".-1.140126127751904"], "argTypes": [{"nodeId": ".-1.140126127751904"}], "returnType": {"nodeId": ".-1.140126127751904"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126127751904": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127751904", "variance": "INVARIANT"}, "140126127752352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107704272"}, {"nodeId": "140126107704384"}, {"nodeId": "140126107704496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126107704272": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126107704384": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126107704496": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126078292864": {"type": "Function", "typeVars": [".-1.140126078292864"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126078292864"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126078292864": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078292864", "variance": "INVARIANT"}, "140126127753248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126107704608"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}, "140126107704608": {"type": "TypeAlias", "target": {"nodeId": "140126111809600"}}, "140126127753696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}, "140126127755040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127755488": {"type": "Function", "typeVars": [".-1.140126127755488"], "argTypes": [{"nodeId": ".-1.140126127755488"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140126127755488"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140126127755488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127755488", "variance": "INVARIANT"}, "140126127755936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127756384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127756832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127757280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127757728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127758176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127758624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127759072": {"type": "Function", "typeVars": [".-1.140126127759072"], "argTypes": [{"nodeId": ".-1.140126127759072"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140126127759072"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126127759072": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127759072", "variance": "INVARIANT"}, "140126127759520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}, "140126127759968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126107704720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107704720": {"type": "TypeAlias", "target": {"nodeId": "140126111809600"}}, "140126127760416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}, "140126107698448": {"type": "Overloaded", "items": [{"nodeId": "140126127760864"}, {"nodeId": "140126127761312"}, {"nodeId": "140126127761760"}, {"nodeId": "140126127762208"}, {"nodeId": "140126127762656"}, {"nodeId": "140126127763104"}, {"nodeId": "140126127763552"}]}, "140126127760864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107704944"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107705056"}, {"nodeId": "140126107705168"}, {"nodeId": "140126107705280"}], "returnType": {"nodeId": "140126115190752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107704944": {"type": "TypeAlias", "target": {"nodeId": "140126116110720"}}, "140126107705056": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107705168": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107705280": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126127761312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107705392"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115188400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107705392": {"type": "TypeAlias", "target": {"nodeId": "140126116116208"}}, "140126127761760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107705616"}, {"nodeId": "140126107706960"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107705616": {"type": "TypeAlias", "target": {"nodeId": "140126116113968"}}, "140126107706960": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126127762208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107708192"}, {"nodeId": "140126107708304"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107708192": {"type": "TypeAlias", "target": {"nodeId": "140126116116096"}}, "140126107708304": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126127762656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107709312"}, {"nodeId": "140126107706064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126115189072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107709312": {"type": "TypeAlias", "target": {"nodeId": "140126110974464"}}, "140126107706064": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}]}, "140126127763104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107707072"}, {"nodeId": "140126119316160"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126119713408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107707072": {"type": "TypeAlias", "target": {"nodeId": "140126116116208"}}, "140126127763552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107706624"}, {"nodeId": "140126107708416"}, {"nodeId": "140126107709200"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}, "140126107706624": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107708416": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107709200": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126127764000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127764448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127764896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127765344": {"type": "Function", "typeVars": [".-1.140126127765344"], "argTypes": [{"nodeId": ".-1.140126127765344"}], "returnType": {"nodeId": ".-1.140126127765344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126127765344": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127765344", "variance": "INVARIANT"}, "140126127765792": {"type": "Function", "typeVars": [".-1.140126127765792"], "argTypes": [{"nodeId": ".-1.140126127765792"}, {"nodeId": "140126107707296"}], "returnType": {"nodeId": ".-1.140126127765792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140126127765792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127765792", "variance": "INVARIANT"}, "140126107707296": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126111602656"}]}, "140126111602656": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078220352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078219904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078220128"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078219456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078219232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078219008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078218784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078218560"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102503712"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132836320"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132836768"}, "name": "__fspath__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132837216"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132837664"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132838112"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132838560"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102504384"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102504608"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132839904"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132840352"}, "name": "as_posix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132840800"}, "name": "as_uri"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132841248"}, "name": "is_absolute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132841696"}, "name": "is_reserved"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132842144"}, "name": "is_relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132842592"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102504160"}, "name": "relative_to"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132843488"}, "name": "with_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132843936"}, "name": "with_stem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132844384"}, "name": "with_suffix"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126102505280"}, "name": "joinpath"}, {"kind": "Variable", "name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078213856"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126078215424"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132846176"}, "name": "__class_getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": false}, "140126078220352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078219904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078220128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078219456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078219232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078219008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078218784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126078218560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102503712": {"type": "Function", "typeVars": [".-1.140126102503712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126107703264"}], "returnType": {"nodeId": ".-1.140126102503712"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "140126107703264": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, ".-1.140126102503712": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102503712", "variance": "INVARIANT"}, "140126132836320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132836768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132837216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132837664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132838112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132838560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126102504384": {"type": "Function", "typeVars": [".-1.140126102504384"], "argTypes": [{"nodeId": ".-1.140126102504384"}, {"nodeId": "140126107703376"}], "returnType": {"nodeId": ".-1.140126102504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126102504384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102504384", "variance": "INVARIANT"}, "140126107703376": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126102504608": {"type": "Function", "typeVars": [".-1.140126102504608"], "argTypes": [{"nodeId": ".-1.140126102504608"}, {"nodeId": "140126107703488"}], "returnType": {"nodeId": ".-1.140126102504608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, ".-1.140126102504608": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102504608", "variance": "INVARIANT"}, "140126107703488": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126132839904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132840352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132840800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132841248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132841696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132842144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126107703600"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, "140126107703600": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126132842592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602656"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}, "140126102504160": {"type": "Function", "typeVars": [".-1.140126102504160"], "argTypes": [{"nodeId": ".-1.140126102504160"}, {"nodeId": "140126107703712"}], "returnType": {"nodeId": ".-1.140126102504160"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140126102504160": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102504160", "variance": "INVARIANT"}, "140126107703712": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126132843488": {"type": "Function", "typeVars": [".-1.140126132843488"], "argTypes": [{"nodeId": ".-1.140126132843488"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126132843488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, ".-1.140126132843488": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132843488", "variance": "INVARIANT"}, "140126132843936": {"type": "Function", "typeVars": [".-1.140126132843936"], "argTypes": [{"nodeId": ".-1.140126132843936"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126132843936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}, ".-1.140126132843936": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132843936", "variance": "INVARIANT"}, "140126132844384": {"type": "Function", "typeVars": [".-1.140126132844384"], "argTypes": [{"nodeId": ".-1.140126132844384"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126132844384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}, ".-1.140126132844384": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132844384", "variance": "INVARIANT"}, "140126102505280": {"type": "Function", "typeVars": [".-1.140126102505280"], "argTypes": [{"nodeId": ".-1.140126102505280"}, {"nodeId": "140126107703824"}], "returnType": {"nodeId": ".-1.140126102505280"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, ".-1.140126102505280": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126102505280", "variance": "INVARIANT"}, "140126107703824": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126078213856": {"type": "Function", "typeVars": [".-1.140126078213856"], "argTypes": [{"nodeId": ".-1.140126078213856"}], "returnType": {"nodeId": "140126325570384", "args": [{"nodeId": ".-1.140126078213856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126078213856": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078213856", "variance": "INVARIANT"}, "140126078215424": {"type": "Function", "typeVars": [".-1.140126078215424"], "argTypes": [{"nodeId": ".-1.140126078215424"}], "returnType": {"nodeId": ".-1.140126078215424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126078215424": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078215424", "variance": "INVARIANT"}, "140126132846176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}, "140126127766240": {"type": "Function", "typeVars": [".-1.140126127766240"], "argTypes": [{"nodeId": ".-1.140126127766240"}, {"nodeId": "140126107709984"}], "returnType": {"nodeId": ".-1.140126127766240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, ".-1.140126127766240": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127766240", "variance": "INVARIANT"}, "140126107709984": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126111602656"}]}, "140126127882528": {"type": "Function", "typeVars": [".-1.140126127882528"], "argTypes": [{"nodeId": ".-1.140126127882528"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": ".-1.140126127882528"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}, ".-1.140126127882528": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127882528", "variance": "INVARIANT"}, "140126127882976": {"type": "Function", "typeVars": [".-1.140126127882976"], "argTypes": [{"nodeId": ".-1.140126127882976"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140126127882976"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}, ".-1.140126127882976": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127882976", "variance": "INVARIANT"}, "140126127883424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127883872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107707184"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}, "140126107707184": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126111603664"}]}, "140126127884320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107707520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140126107707520": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126111603664"}]}, "140126127884768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}, "140126127885216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}, "140126078295328": {"type": "Function", "typeVars": [".-1.140126078295328"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".-1.140126078295328"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, ".-1.140126078295328": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126078295328", "variance": "INVARIANT"}, "140126127886560": {"type": "Function", "typeVars": [".-1.140126127886560"], "argTypes": [{"nodeId": ".-1.140126127886560"}], "returnType": {"nodeId": ".-1.140126127886560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126127886560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127886560", "variance": "INVARIANT"}, "140126127887008": {"type": "Function", "typeVars": [".-1.140126127887008"], "argTypes": [{"nodeId": ".-1.140126127887008"}], "returnType": {"nodeId": ".-1.140126127887008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126127887008": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126127887008", "variance": "INVARIANT"}, "140126127887456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127887904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107710096"}, {"nodeId": "140126107705952"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}, "140126107710096": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107705952": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126127888352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107706400"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}, "140126107706400": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126127888800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107706512"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140126107706512": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126127889248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107707408"}, {"nodeId": "140126107707632"}, {"nodeId": "140126107707744"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}, "140126107707408": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107707632": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126107707744": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126127890144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111603664"}, {"nodeId": "140126107707856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}, "140126107707856": {"type": "TypeAlias", "target": {"nodeId": "140126116105568"}}, "140126153577792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194448"}, {"nodeId": "140126102972432"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140126102972432": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126153578240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194448"}, {"nodeId": "140126102972544"}], "returnType": {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126102972544": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126115194112": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069913664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069913216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069912320"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126102969520"}, "items": [{"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "discover"}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069912544"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069911872"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069912768"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069911648"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069911424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069911200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069910976"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126069913664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126102971312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}, "140126102971312": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069913216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}, {"nodeId": "140126102971424"}], "returnType": {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}, "140126102971424": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126069912320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115194112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}, "140126102969520": {"type": "Overloaded", "items": [{"nodeId": "140126144738944"}, {"nodeId": "140126144739392"}]}, "140126144738944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126111300768"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126115194112"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}, "140126144739392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140126102971648"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126115194112"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}, "140126102971648": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126069912544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102971872"}], "returnType": {"nodeId": "140126115194448"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}, "140126102971872": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126069911872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126115191424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115191424": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132602016"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132602464"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132602912"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132603360"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132603808"}, "name": "get_all"}, {"kind": "Variable", "name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126064757440"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}, "140126132602016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191424"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132602464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191424"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132602912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191424"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132603360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191424"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132603808": {"type": "Function", "typeVars": [".-1.140126132603808"], "argTypes": [{"nodeId": "140126115191424"}, {"nodeId": "140126119317840"}, {"nodeId": ".-1.140126132603808"}], "returnType": {"nodeId": "140126102968960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140126132603808": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132603808", "variance": "INVARIANT"}, "140126102968960": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140126132603808"}]}, "140126064757440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191424"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126102969072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102969072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126069912768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126115193104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115193104": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144731776"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144732224"}, "name": "select"}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069934784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069936800"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126115227216"}]}], "isAbstract": false}, "140126144731776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193104"}, {"nodeId": "140126102970192"}], "returnType": {"nodeId": "140126102970976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126102970192": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126102970976": {"type": "TypeAlias", "target": {"nodeId": "140126111490656"}}, "140126111490656": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126144732224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193104"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126115193104"}, "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"]}, "140126069934784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193104"}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069936800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193104"}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115227216": {"type": "TypeAlias", "target": {"nodeId": "140126111490656"}}, "140126069911648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069911424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126102971984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102971984": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126111605008"}]}, {"nodeId": "N"}]}, "140126111605008": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144735808"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144736256"}, "name": "read_binary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144736704"}, "name": "locate"}, {"kind": "Variable", "name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111490432"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111492448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115194112"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111602992"}], "isAbstract": false}, "140126144735808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605008"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}, "140126144736256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605008"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126144736704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605008"}], "returnType": {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111490432": {"type": "Union", "items": [{"nodeId": "140126115193776"}, {"nodeId": "N"}]}, "140126115193776": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144737152"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126144737152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193776"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140126111492448": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126111602992": {"type": "Concrete", "module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111602656"}], "isAbstract": false}, "140126069911200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126102972096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102972096": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126069910976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115194112"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126065011040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102977136"}, {"nodeId": "140126102977248"}], "returnType": {"nodeId": "140126102977360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}, "140126102977136": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102977248": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126102977360": {"type": "Union", "items": [{"nodeId": "140126115194784"}, {"nodeId": "N"}]}, "140126065009696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102977472"}], "returnType": {"nodeId": "140126102977584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}, "140126102977472": {"type": "Union", "items": [{"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126102977584": {"type": "Union", "items": [{"nodeId": "140126115195792"}, {"nodeId": "N"}]}, "140126111597616": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182596544"}, "name": "__init__"}, {"kind": "Variable", "name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126065009024"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115197808"}], "isAbstract": false}, "140126182596544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111597616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102977808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}, "140126102977808": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126065009024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126102978032"}], "returnType": {"nodeId": "140126102913312"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}, "140126102978032": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126102913312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126115197808"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126111597952": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182597440"}, "name": "set_data"}], "typeVars": [], "bases": [{"nodeId": "140126115198144"}, {"nodeId": "140126115197136"}], "isAbstract": false}, "140126182597440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111597952"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102978144"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}, "140126102978144": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126111598288": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115198144"}, {"nodeId": "140126115197136"}], "isAbstract": false}, "140126111598624": {"type": "Concrete", "module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182597888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182598336"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182598784"}, "name": "get_source"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182599232"}, "name": "create_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182599680"}, "name": "exec_module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182600128"}, "name": "get_code"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182600576"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140126115196800"}], "isAbstract": false}, "140126182597888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}, "140126182598336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126102978256"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140126102978256": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126182598784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126182599232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126115194784"}], "returnType": {"nodeId": "140126120021680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}, "140126182599680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126120021680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}, "140126182600128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}, "140126182600576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111598624"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126120033104": {"type": "Protocol", "module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182601696"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182602144"}, "name": "readline"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read", "readline"]}, "140126182601696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033104"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126182602144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033104"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126120033776": {"type": "Concrete", "module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126115184704": {"type": "Concrete", "module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126120033776"}], "isAbstract": false}, "140126115185040": {"type": "Concrete", "module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126120033776"}], "isAbstract": false}, "140126115185376": {"type": "Concrete", "module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119315488"}, {"nodeId": "140126128564352"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119315488"}, {"nodeId": "140126128559200"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182788000"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182788448"}, "name": "reducer_override"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182789344"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182789792"}, "name": "clear_memo"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182790240"}, "name": "persistent_id"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128564352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "140126120226800"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126120226800": {"type": "TypeAlias", "target": {"nodeId": "140126115219376"}}, "140126115219376": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120229936"}, {"nodeId": "140126120230608"}, {"nodeId": "140126115218144"}, {"nodeId": "140126115219264"}]}, "140126120229936": {"type": "Tuple", "items": [{"nodeId": "140126128609024"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}]}, "140126128609024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126120230608": {"type": "Tuple", "items": [{"nodeId": "140126128609472"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}, "140126128609472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126115218144": {"type": "Tuple", "items": [{"nodeId": "140126128563232"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140126115218032"}]}, "140126128563232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126115218032": {"type": "Union", "items": [{"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126115219264": {"type": "Tuple", "items": [{"nodeId": "140126128568384"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140126115218928"}, {"nodeId": "140126115219152"}]}, "140126128568384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126115218928": {"type": "Union", "items": [{"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126115219152": {"type": "Union", "items": [{"nodeId": "140126325567024", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126128559200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126115185712": {"type": "Concrete", "module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": "140126128566368"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182790688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182791584"}, "name": "load"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182792032"}, "name": "find_class"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126182792480"}, "name": "persistent_load"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128566368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126182790688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}, {"nodeId": "140126120033104"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107702480"}], "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"]}, "140126107702480": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126182791584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182792032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126182792480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185712"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}, "140126182788000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185376"}, {"nodeId": "140126110990400", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "140126107701584"}, {"nodeId": "140126325562992"}, {"nodeId": "140126107701696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}, "140126107701584": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126107701696": {"type": "TypeAlias", "target": {"nodeId": "140126120221536"}}, "140126120221536": {"type": "Union", "items": [{"nodeId": "140126128611264"}, {"nodeId": "N"}]}, "140126128611264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120033440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126182788448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185376"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126182789344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185376"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126182789792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126182790240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115185376"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126039832416": {"type": "Concrete", "module": "__future__", "simpleName": "_Feature", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "optionalRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mandatoryRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183088960"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183089408"}, "name": "getOptionalRelease"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183089856"}, "name": "getMandatoryRelease"}, {"kind": "Variable", "name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126183088960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832416"}, {"nodeId": "140126027772560"}, {"nodeId": "140126027772784"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "optionalRelease", "mandatoryRelease", "compiler_flag"]}, "140126027772560": {"type": "TypeAlias", "target": {"nodeId": "140126027771776"}}, "140126027771776": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126027772784": {"type": "Union", "items": [{"nodeId": "140126027772672"}, {"nodeId": "N"}]}, "140126027772672": {"type": "TypeAlias", "target": {"nodeId": "140126027771776"}}, "140126183089408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832416"}], "returnType": {"nodeId": "140126027772896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027772896": {"type": "TypeAlias", "target": {"nodeId": "140126027771776"}}, "140126183089856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832416"}], "returnType": {"nodeId": "140126027773120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027773120": {"type": "Union", "items": [{"nodeId": "140126027773008"}, {"nodeId": "N"}]}, "140126027773008": {"type": "TypeAlias", "target": {"nodeId": "140126027771776"}}, "140126006460480": {"type": "Concrete", "module": "numpy.ma.mrecords", "simpleName": "MaskedRecords", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "options", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183101824"}, "name": "__new__"}, {"kind": "Variable", "name": "_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126056699200"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fieldmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126056698752"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183102640"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183102912"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183103184"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183103456"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183103728"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183104000"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183104272"}, "name": "view"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183104544"}, "name": "harden_mask"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183104816"}, "name": "soften_mask"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183105088"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183105360"}, "name": "tolist"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183105632"}, "name": "__reduce__"}], "typeVars": [{"nodeId": ".1.140126006460480"}, {"nodeId": ".2.140126006460480"}], "bases": [{"nodeId": "140126010699312", "args": [{"nodeId": ".1.140126006460480"}, {"nodeId": ".2.140126006460480"}]}], "isAbstract": false}, "140126183101824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"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"]}, "140126056699200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480", "args": [{"nodeId": ".1.140126006460480"}, {"nodeId": ".2.140126006460480"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126006460480": {"type": "TypeVar", "varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140126006460480", "variance": "INVARIANT"}, ".2.140126006460480": {"type": "TypeVar", "varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140126010702336", "args": [{"nodeId": "A"}]}, "def": "140126006460480", "variance": "COVARIANT"}, "140126056698752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480", "args": [{"nodeId": ".1.140126006460480"}, {"nodeId": ".2.140126006460480"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183102640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126183102912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126183103184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183103456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}, "140126183103728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126183104000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126183104272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}, "140126183104544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183104816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183105088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126183105360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}, "140126183105632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126006460480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039828384": {"type": "Concrete", "module": "zipfile", "simpleName": "BadZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126039828720": {"type": "Concrete", "module": "zipfile", "simpleName": "LargeZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126039829056": {"type": "Protocol", "module": "zipfile", "simpleName": "_ZipStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183092544"}, "name": "read"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read"]}, "140126183092544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039829056"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126039829392": {"type": "Protocol", "module": "zipfile", "simpleName": "_SupportsReadSeekTell", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183092992"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183093440"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183093888"}, "name": "tell"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["read", "seek", "tell"]}, "140126183092992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039829392"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126183093440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039829392"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126183093888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039829392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039829728": {"type": "Protocol", "module": "zipfile", "simpleName": "_ClosableZipStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126183094336"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140126039829056"}], "protocolMembers": ["close", "read"]}, "140126183094336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039829728"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039830064": {"type": "Concrete", "module": "zipfile", "simpleName": "ZipExtFile", "members": [{"kind": "Variable", "name": "MAX_N", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MIN_READ_SIZE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "MAX_SEEK_READ", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027243344"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027240208"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126027243904"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178295872"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "limit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178296320"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178296768"}, "name": "peek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178297216"}, "name": "read1"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178297664"}, "name": "seek"}], "typeVars": [], "bases": [{"nodeId": "140126115188064"}], "isAbstract": false}, "140126027243344": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, {"nodeId": "N"}]}, "140126027240208": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027243904": {"type": "Overloaded", "items": [{"nodeId": "140126183094784"}, {"nodeId": "140126183095232"}, {"nodeId": "140126183095680"}]}, "140126183094784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126039829728"}, {"nodeId": "140126027244576"}, {"nodeId": "140126039831408"}, {"nodeId": "140126027239984"}, {"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"]}, "140126027244576": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027239984": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126183095232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126039829728"}, {"nodeId": "140126027244800"}, {"nodeId": "140126039831408"}, {"nodeId": "140126027244464"}, {"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"]}, "140126027244800": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027244464": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126183095680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126039829056"}, {"nodeId": "140126027245136"}, {"nodeId": "140126039831408"}, {"nodeId": "140126027244688"}, {"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"]}, "140126027245136": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027244688": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178295872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126027245472"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126027245472": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126178296320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "limit"]}, "140126178296768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126178297216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126027245024"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n"]}, "140126027245024": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126178297664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039830064"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140126039831072": {"type": "Concrete", "module": "zipfile", "simpleName": "PyZipFile", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "optimize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178307520"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "basename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filterfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178307968"}, "name": "writepy"}], "typeVars": [], "bases": [{"nodeId": "140126039830736"}], "isAbstract": false}, "140126178307520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831072"}, {"nodeId": "140126027246704"}, {"nodeId": "140126027249280"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "optimize"]}, "140126027246704": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}]}, "140126027249280": {"type": "TypeAlias", "target": {"nodeId": "140126027241776"}}, "140126178307968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831072"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126027249840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pathname", "basename", "filterfunc"]}, "140126027249840": {"type": "Union", "items": [{"nodeId": "140126027516160"}, {"nodeId": "N"}]}, "140126027516160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126039831744": {"type": "Protocol", "module": "zipfile", "simpleName": "_PathOpenProtocol", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "force_zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178310656"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126178310656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039831744"}, {"nodeId": "140126027250176"}, {"nodeId": "140126027250288"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "pwd", "force_zip64"]}, "140126027250176": {"type": "TypeAlias", "target": {"nodeId": "140126027240432"}}, "140126027250288": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126039832080": {"type": "Concrete", "module": "zipfile", "simpleName": "Path", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126027413792"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126027402592"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126027401920"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178477888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178478336"}, "name": "open"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178479232"}, "name": "iterdir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178479680"}, "name": "is_dir"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178480128"}, "name": "is_file"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178480576"}, "name": "exists"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178481024"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178481472"}, "name": "read_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178481920"}, "name": "joinpath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178482816"}, "name": "__truediv__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027413792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027402592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027401920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126111297408", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178477888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}, {"nodeId": "140126027249728"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "root", "at"]}, "140126027249728": {"type": "Union", "items": [{"nodeId": "140126039830736"}, {"nodeId": "140126027250512"}, {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}]}, "140126027250512": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126178478336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}, {"nodeId": "140126027250624"}, {"nodeId": "A"}, {"nodeId": "140126027250848"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119713072", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "mode", "args", "pwd", "kwargs"]}, "140126027250624": {"type": "TypeAlias", "target": {"nodeId": "140126027241216"}}, "140126027241216": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126027250848": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126178479232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126039832080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178479680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178480128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178480576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178481024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}, {"nodeId": "140126027251408"}, {"nodeId": "140126027250400"}, {"nodeId": "140126027251072"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}, "140126027251408": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027250400": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027251072": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126178481472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126178481920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}, {"nodeId": "140126027251184"}], "returnType": {"nodeId": "140126039832080"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}, "140126027251184": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126178482816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039832080"}, {"nodeId": "140126027251520"}], "returnType": {"nodeId": "140126039832080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126027251520": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126039823344": {"type": "Concrete", "module": "ast", "simpleName": "_ABC", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178484160"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119315488"}], "isAbstract": false}, "140126178484160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039823344"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}, "140126039823680": {"type": "Concrete", "module": "ast", "simpleName": "Num", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027027664"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111206080"}], "isAbstract": false}, "140126027027664": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316496"}, {"nodeId": "140126119316832"}]}, "140126039824016": {"type": "Concrete", "module": "ast", "simpleName": "Str", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111206080"}], "isAbstract": false}, "140126039824352": {"type": "Concrete", "module": "ast", "simpleName": "Bytes", "members": [{"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126111206080"}], "isAbstract": false}, "140126039824688": {"type": "Concrete", "module": "ast", "simpleName": "NameConstant", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111206080"}], "isAbstract": false}, "140126039825024": {"type": "Concrete", "module": "ast", "simpleName": "Ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111206080"}], "isAbstract": false}, "140126039825360": {"type": "Concrete", "module": "ast", "simpleName": "slice", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991408"}], "isAbstract": false}, "140126039825696": {"type": "Concrete", "module": "ast", "simpleName": "ExtSlice", "members": [], "typeVars": [], "bases": [{"nodeId": "140126039825360"}], "isAbstract": false}, "140126039826032": {"type": "Concrete", "module": "ast", "simpleName": "Index", "members": [], "typeVars": [], "bases": [{"nodeId": "140126039825360"}], "isAbstract": false}, "140126039826368": {"type": "Concrete", "module": "ast", "simpleName": "Suite", "members": [], "typeVars": [], "bases": [{"nodeId": "140126110991744"}], "isAbstract": false}, "140126039826704": {"type": "Concrete", "module": "ast", "simpleName": "AugLoad", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126039827040": {"type": "Concrete", "module": "ast", "simpleName": "AugStore", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126039827376": {"type": "Concrete", "module": "ast", "simpleName": "Param", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111209104"}], "isAbstract": false}, "140126039827712": {"type": "Concrete", "module": "ast", "simpleName": "NodeVisitor", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178484608"}, "name": "visit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178485056"}, "name": "generic_visit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178485504"}, "name": "visit_Module"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178485952"}, "name": "visit_Interactive"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178486400"}, "name": "visit_Expression"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178486848"}, "name": "visit_FunctionDef"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178487296"}, "name": "visit_AsyncFunctionDef"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178487744"}, "name": "visit_ClassDef"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178488192"}, "name": "visit_Return"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178488640"}, "name": "visit_Delete"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178489088"}, "name": "visit_Assign"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178489536"}, "name": "visit_AugAssign"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178489984"}, "name": "visit_AnnAssign"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178490432"}, "name": "visit_For"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178490880"}, "name": "visit_AsyncFor"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178491328"}, "name": "visit_While"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178491776"}, "name": "visit_If"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178820160"}, "name": "visit_With"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178820608"}, "name": "visit_AsyncWith"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178821056"}, "name": "visit_Raise"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178821504"}, "name": "visit_Try"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178821952"}, "name": "visit_Assert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178822400"}, "name": "visit_Import"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178822848"}, "name": "visit_ImportFrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178823296"}, "name": "visit_Global"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178823744"}, "name": "visit_Nonlocal"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178824192"}, "name": "visit_Expr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178824640"}, "name": "visit_Pass"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178825088"}, "name": "visit_Break"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178825536"}, "name": "visit_Continue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178825984"}, "name": "visit_Slice"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178826432"}, "name": "visit_BoolOp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178826880"}, "name": "visit_BinOp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178827328"}, "name": "visit_UnaryOp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178827776"}, "name": "visit_Lambda"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178828224"}, "name": "visit_IfExp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178828672"}, "name": "visit_Dict"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178829120"}, "name": "visit_Set"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178829568"}, "name": "visit_ListComp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178830016"}, "name": "visit_SetComp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178830464"}, "name": "visit_DictComp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178830912"}, "name": "visit_GeneratorExp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178831360"}, "name": "visit_Await"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178831808"}, "name": "visit_Yield"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178832256"}, "name": "visit_YieldFrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178832704"}, "name": "visit_Compare"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178833152"}, "name": "visit_Call"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178833600"}, "name": "visit_FormattedValue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178834048"}, "name": "visit_JoinedStr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178834496"}, "name": "visit_Constant"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178834944"}, "name": "visit_NamedExpr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178835392"}, "name": "visit_TypeIgnore"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178835840"}, "name": "visit_Attribute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178918464"}, "name": "visit_Subscript"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178918912"}, "name": "visit_Starred"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178919360"}, "name": "visit_Name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178919808"}, "name": "visit_List"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178920256"}, "name": "visit_Tuple"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178920704"}, "name": "visit_Del"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178921152"}, "name": "visit_Load"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178921600"}, "name": "visit_Store"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178922048"}, "name": "visit_And"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178922496"}, "name": "visit_Or"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178922944"}, "name": "visit_Add"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178923392"}, "name": "visit_BitAnd"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178923840"}, "name": "visit_BitOr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178924288"}, "name": "visit_BitXor"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178924736"}, "name": "visit_Div"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178925184"}, "name": "visit_FloorDiv"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178925632"}, "name": "visit_LShift"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178926080"}, "name": "visit_Mod"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178926528"}, "name": "visit_Mult"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178926976"}, "name": "visit_MatMult"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178927424"}, "name": "visit_Pow"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178927872"}, "name": "visit_RShift"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178928320"}, "name": "visit_Sub"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178928768"}, "name": "visit_Invert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178929216"}, "name": "visit_Not"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178929664"}, "name": "visit_UAdd"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178930112"}, "name": "visit_USub"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178930560"}, "name": "visit_Eq"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178931008"}, "name": "visit_Gt"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178931456"}, "name": "visit_GtE"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178931904"}, "name": "visit_In"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178932352"}, "name": "visit_Is"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178932800"}, "name": "visit_IsNot"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178933248"}, "name": "visit_Lt"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178933696"}, "name": "visit_LtE"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126178934144"}, "name": "visit_NotEq"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173806656"}, "name": "visit_NotIn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173807104"}, "name": "visit_comprehension"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173807552"}, "name": "visit_ExceptHandler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173808000"}, "name": "visit_arguments"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173808448"}, "name": "visit_arg"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173808896"}, "name": "visit_keyword"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173809344"}, "name": "visit_alias"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173809792"}, "name": "visit_withitem"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173810240"}, "name": "visit_Match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173810688"}, "name": "visit_MatchValue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173811136"}, "name": "visit_MatchSequence"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173811584"}, "name": "visit_MatchStar"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173812032"}, "name": "visit_MatchMapping"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173812480"}, "name": "visit_MatchClass"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173812928"}, "name": "visit_MatchAs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173813376"}, "name": "visit_MatchOr"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173814272"}, "name": "visit_ExtSlice"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173814720"}, "name": "visit_Index"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173815168"}, "name": "visit_Suite"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173815616"}, "name": "visit_AugLoad"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173816064"}, "name": "visit_AugStore"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173816512"}, "name": "visit_Param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173816960"}, "name": "visit_Num"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173817408"}, "name": "visit_Str"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173817856"}, "name": "visit_Bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173818304"}, "name": "visit_NameConstant"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173818752"}, "name": "visit_Ellipsis"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126178484608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110991408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178485056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110991408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178485504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110993088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178485952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110993424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178486400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110993760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178486848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110994432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178487296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110994768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178487744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110995104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178488192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110995440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178488640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110995776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178489088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110996112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178489536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110996448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178489984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110996784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178490432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110997120"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178490880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110997456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178491328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110997792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178491776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110998128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178820160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110998464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178820608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110998800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178821056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110999136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178821504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110999472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178821952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110999808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178822400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111000144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178822848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111000480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178823296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111000816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178823744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111001152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178824192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111001488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178824640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111001824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178825088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111002160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178825536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111002496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178825984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111207088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178826432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111003168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178826880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111003504"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178827328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111003840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178827776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111004176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178828224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111004512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178828672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111004848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178829120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111005184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178829568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111005520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178830016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111005856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178830464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111006192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178830912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111203392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178831360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111203728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178831808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111204064"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178832256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111204400"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178832704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111204736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178833152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111205072"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178833600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111205408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178834048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111205744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178834496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111206080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178834944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111206416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178835392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126110992416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178835840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111206752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178918464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111207424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178918912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111207760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178919360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111208096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178919808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111208432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178920256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111208768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178920704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111209440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178921152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111209776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178921600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111210112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178922048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111210784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178922496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111211120"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178922944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111211792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178923392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111212128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178923840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111212464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178924288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111212800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178924736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111213136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178925184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111213472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178925632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111213808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178926080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111214144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178926528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111214480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178926976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111214816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178927424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111215152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178927872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111215488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178928320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111215824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178928768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111216496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178929216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111216832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178929664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111217168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178930112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111217504"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178930560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111218176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178931008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111218512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178931456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111218848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178931904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111219184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178932352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111285312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178932800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111285648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178933248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111285984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178933696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111286320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126178934144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111286656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173806656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111286992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173807104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111287328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173807552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111288000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173808000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111288336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173808448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111288672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173808896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111289008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173809344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111289344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173809792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111289680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173810240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111290016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173810688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111291024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173811136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111291696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173811584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111292032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173812032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111292368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173812480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111292704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173812928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111293040"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173813376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126111293376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173814272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039825696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173814720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039826032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173815168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039826368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173815616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039826704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173816064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039827040"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173816512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039827376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173816960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039823680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173817408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039824016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173817856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039824352"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173818304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039824688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126173818752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039827712"}, {"nodeId": "140126039825024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126039828048": {"type": "Concrete", "module": "ast", "simpleName": "NodeTransformer", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126173819200"}, "name": "generic_visit"}], "typeVars": [], "bases": [{"nodeId": "140126039827712"}], "isAbstract": false}, "140126173819200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039828048"}, {"nodeId": "140126110991408"}], "returnType": {"nodeId": "140126110991408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}, "140126010691248": {"type": "Concrete", "module": "numpy.lib.mixins", "simpleName": "NDArrayOperatorsMixin", "members": [{"kind": "Variable", "name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140125947899104"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174163040"}, "name": "__lt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174163488"}, "name": "__le__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174163936"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174164384"}, "name": "__ne__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174164832"}, "name": "__gt__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174165280"}, "name": "__ge__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174165728"}, "name": "__add__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174166176"}, "name": "__radd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174166624"}, "name": "__iadd__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174789920"}, "name": "__sub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174790368"}, "name": "__rsub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174790816"}, "name": "__isub__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174791264"}, "name": "__mul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174791712"}, "name": "__rmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174792160"}, "name": "__imul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174792608"}, "name": "__matmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174793056"}, "name": "__rmatmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174793504"}, "name": "__imatmul__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174793952"}, "name": "__truediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174794400"}, "name": "__rtruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174794848"}, "name": "__itruediv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174795296"}, "name": "__floordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174795744"}, "name": "__rfloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174796192"}, "name": "__ifloordiv__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174796640"}, "name": "__mod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174797088"}, "name": "__rmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174797536"}, "name": "__imod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174797984"}, "name": "__divmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174798432"}, "name": "__rdivmod__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174798880"}, "name": "__pow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174799328"}, "name": "__rpow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174799776"}, "name": "__ipow__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174800224"}, "name": "__lshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174800672"}, "name": "__rlshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174801120"}, "name": "__ilshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174801568"}, "name": "__rshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174802016"}, "name": "__rrshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174802464"}, "name": "__irshift__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174802912"}, "name": "__and__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174803360"}, "name": "__rand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174803808"}, "name": "__iand__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174804256"}, "name": "__xor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174804704"}, "name": "__rxor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174805152"}, "name": "__ixor__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126174805600"}, "name": "__or__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169628960"}, "name": "__ror__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169629408"}, "name": "__ior__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169629856"}, "name": "__neg__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169630304"}, "name": "__pos__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169630752"}, "name": "__abs__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169631200"}, "name": "__invert__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140125947899104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "140126010283328"}, {"nodeId": "140125989605824"}, {"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"]}, "140125989605824": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126174163040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174163488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174163936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174164384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174164832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174165280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174165728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174166176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174166624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174789920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174790368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174790816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174791264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174791712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174792160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174792608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174793056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174793504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174793952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174794400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174794848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174795296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174795744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174796192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174796640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174797088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174797536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174797984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174798432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126174798880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174799328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174799776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174800224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174800672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174801120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174801568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174802016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174802464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174802912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174803360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174803808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174804256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174804704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174805152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126174805600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126169628960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126169629408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126169629856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126169630304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126169630752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126169631200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010691248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126039822000": {"type": "Protocol", "module": "math", "simpleName": "_SupportsCeil", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169738688"}, "name": "__ceil__"}], "typeVars": [{"nodeId": ".1.140126039822000"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__ceil__"]}, "140126169738688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039822000", "args": [{"nodeId": ".1.140126039822000"}]}], "returnType": {"nodeId": ".1.140126039822000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126039822000": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039822000", "variance": "COVARIANT"}, "140126039822336": {"type": "Protocol", "module": "math", "simpleName": "_SupportsFloor", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126169975936"}, "name": "__floor__"}], "typeVars": [{"nodeId": ".1.140126039822336"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__floor__"]}, "140126169975936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039822336", "args": [{"nodeId": ".1.140126039822336"}]}], "returnType": {"nodeId": ".1.140126039822336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126039822336": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039822336", "variance": "COVARIANT"}, "140126039822672": {"type": "Protocol", "module": "math", "simpleName": "_SupportsTrunc", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170074240"}, "name": "__trunc__"}], "typeVars": [{"nodeId": ".1.140126039822672"}], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__trunc__"]}, "140126170074240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039822672", "args": [{"nodeId": ".1.140126039822672"}]}], "returnType": {"nodeId": ".1.140126039822672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126039822672": {"type": "TypeVar", "varName": "_T_co", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039822672", "variance": "COVARIANT"}, "140126014475952": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "_fromnxfunction", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170228624"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170228896"}, "name": "getdoc"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170229168"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126170228624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "funcname"]}, "140126170228896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126170229168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475952"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}, "140126014476288": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "_fromnxfunction_single", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170229440"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126014475952"}], "isAbstract": false}, "140126170229440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014476288"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}, "140126014476624": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "_fromnxfunction_seq", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170229712"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126014475952"}], "isAbstract": false}, "140126170229712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014476624"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}, "140126014476960": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "_fromnxfunction_allargs", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170229984"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126014475952"}], "isAbstract": false}, "140126170229984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014476960"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}, "140126010700320": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "MAxisConcatenator", "members": [{"kind": "Variable", "name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126061246976"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170399872"}, "name": "__getitem__"}], "typeVars": [], "bases": [{"nodeId": "140126014488048"}], "isAbstract": false}, "140126061246976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}, "140126170399872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700320"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126010700656": {"type": "Concrete", "module": "numpy.ma.extras", "simpleName": "mr_class", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170400144"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126010700320"}], "isAbstract": false}, "140126170400144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010700656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023548400": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MaskedArrayFutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119605440"}], "isAbstract": false}, "140126014472928": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_MaskedUFunc", "members": [{"kind": "Variable", "name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170405040"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126170405040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014472928"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc"]}, "140126014473264": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_MaskedUnaryOperation", "members": [{"kind": "Variable", "name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170405312"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170405584"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126014472928"}], "isAbstract": false}, "140126170405312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473264"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mufunc", "fill", "domain"]}, "140126170405584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473264"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "kwargs"]}, "140126014473600": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_MaskedBinaryOperation", "members": [{"kind": "Variable", "name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170405856"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170406128"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170406400"}, "name": "reduce"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170406672"}, "name": "outer"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170406944"}, "name": "accumulate"}], "typeVars": [], "bases": [{"nodeId": "140126014472928"}], "isAbstract": false}, "140126170405856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473600"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mbfunc", "fillx", "filly"]}, "140126170406128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473600"}, {"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"]}, "140126170406400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473600"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "target", "axis", "dtype"]}, "140126170406672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473600"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}, "140126170406944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473600"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}, "140126014473936": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_DomainedBinaryOperation", "members": [{"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170407216"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170407488"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126014472928"}], "isAbstract": false}, "140126170407216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473936"}, {"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"]}, "140126170407488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014473936"}, {"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"]}, "140126014474272": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_MaskedPrintOption", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "display", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170413200"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170413472"}, "name": "display"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170413744"}, "name": "set_display"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170414016"}, "name": "enabled"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170414288"}, "name": "enable"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126170413200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474272"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "display"]}, "140126170413472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126170413744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474272"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "s"]}, "140126170414016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126170414288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474272"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "shrink"]}, "140126014474608": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MaskedIterator", "members": [{"kind": "Variable", "name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dataiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maskiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126170414832"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165811264"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165811536"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165811808"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165812080"}, "name": "__next__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126170414832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474608"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ma"]}, "140126165811264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126165811536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474608"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126165811808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126165812080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126010699984": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "MaskedConstant", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165970688"}, "name": "__new__"}, {"kind": "Variable", "name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165970960"}, "name": "__array_finalize__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165971232"}, "name": "__array_prepare__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165971504"}, "name": "__array_wrap__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165971776"}, "name": "__format__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165972048"}, "name": "__reduce__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165972320"}, "name": "__iop__"}, {"kind": "Variable", "name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165972592"}, "name": "copy"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165972864"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165973136"}, "name": "__deepcopy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165973408"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "140126010699312", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140126011111488"}]}]}], "isAbstract": false}, "140126165970688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140126165970960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}, "140126165971232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}, "140126165971504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}, "140126165971776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}, "140126165972048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165972320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}, "140126165972592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126165972864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126165973136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "memo"]}, "140126165973408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010699984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "value"]}, "140126011111488": {"type": "TypeAlias", "target": {"nodeId": "140126010280976", "args": [{"nodeId": "140126014480656"}]}}, "140126014474944": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_extrema_operation", "members": [{"kind": "Variable", "name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fill_value_func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165974224"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165974496"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126165974768"}, "name": "reduce"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166073408"}, "name": "outer"}], "typeVars": [], "bases": [{"nodeId": "140126014472928"}], "isAbstract": false}, "140126165974224": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474944"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc", "compare", "fill_value"]}, "140126165974496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474944"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}, "140126165974768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474944"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}, "140126166073408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014474944"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}, "140126014475280": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_frommethod", "members": [{"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "methodname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166074496"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166074768"}, "name": "getdoc"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166075040"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126166074496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475280"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "methodname", "reversed"]}, "140126166074768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475280"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166075040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475280"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "params"]}, "140126014475616": {"type": "Concrete", "module": "numpy.ma.core", "simpleName": "_convert2ma", "members": [{"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166083200"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166083472"}, "name": "getdoc"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166083744"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126166083200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475616"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "funcname", "params"]}, "140126166083472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126166083744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126014475616"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}, "140126010688224": {"type": "Concrete", "module": "numpy.random.bit_generator", "simpleName": "SeedlessSeedSequence", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166386944"}, "name": "generate_state"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126166387392"}, "name": "spawn"}], "typeVars": [], "bases": [{"nodeId": "140126010687888"}], "isAbstract": false}, "140126166386944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126010688224"}, {"nodeId": "140126119316160"}, {"nodeId": "140125989435792"}], "returnType": {"nodeId": "140126014946128", "args": [{"nodeId": "A"}, {"nodeId": "140126010702336", "args": [{"nodeId": "140125989435568"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}, "140125989435792": {"type": "Union", "items": [{"nodeId": "140125989435680"}, {"nodeId": "140125989436240"}]}, "140125989435680": {"type": "TypeAlias", "target": {"nodeId": "140126006317616"}}, "140125989436240": {"type": "TypeAlias", "target": {"nodeId": "140126006317840"}}, "140125989435568": {"type": "Union", "items": [{"nodeId": "140125989434224"}, {"nodeId": "140125989436576"}]}, "140125989434224": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480992"}]}}, "140125989436576": {"type": "TypeAlias", "target": {"nodeId": "140126010280304", "args": [{"nodeId": "140126014480656"}]}}, "140126166387392": {"type": "Function", "typeVars": [".-1.140126166387392"], "argTypes": [{"nodeId": ".-1.140126166387392"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": ".-1.140126166387392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}, ".-1.140126166387392": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126166387392", "variance": "INVARIANT"}, "140126023543024": {"type": "Concrete", "module": "unittest.case", "simpleName": "FunctionTestCase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "testFunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "setUp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tearDown", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "description", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136724480"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136724928"}, "name": "runTest"}], "typeVars": [], "bases": [{"nodeId": "140126023542688"}], "isAbstract": false}, "140126136724480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023543024"}, {"nodeId": "140126031964288"}, {"nodeId": "140126018655328"}, {"nodeId": "140126018655664"}, {"nodeId": "140126018655888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "testFunc", "setUp", "tearDown", "description"]}, "140126031964288": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126018655328": {"type": "Union", "items": [{"nodeId": "140126031963616"}, {"nodeId": "N"}]}, "140126031963616": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126018655664": {"type": "Union", "items": [{"nodeId": "140126031963392"}, {"nodeId": "N"}]}, "140126031963392": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}, "140126018655888": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126136724928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023543024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023542688": {"type": "Concrete", "module": "unittest.case", "simpleName": "TestCase", "members": [{"kind": "Variable", "name": "failureException", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "longMessage", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "maxDiff", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126031772720"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_testMethodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_testMethodDoc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "methodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149486272"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149486720"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149487168"}, "name": "setUp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149487616"}, "name": "tearDown"}, {"kind": "Variable", "name": "setUpClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018934304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tearDownClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018936768"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149488960"}, "name": "run"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149489408"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149489856"}, "name": "skipTest"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149490304"}, "name": "subTest"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149490752"}, "name": "debug"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149491200"}, "name": "_addSkip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149491648"}, "name": "assertEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149492096"}, "name": "assertNotEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136500288"}, "name": "assertTrue"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136500736"}, "name": "assertFalse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136501184"}, "name": "assertIs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136501632"}, "name": "assertIsNot"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136502080"}, "name": "assertIsNone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136502528"}, "name": "assertIsNotNone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136502976"}, "name": "assertIn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136503424"}, "name": "assertNotIn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136503872"}, "name": "assertIsInstance"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136504320"}, "name": "assertNotIsInstance"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032220384"}, "items": [{"kind": "Variable", "name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertGreater"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032222400"}, "items": [{"kind": "Variable", "name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertGreaterEqual"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032226544"}, "items": [{"kind": "Variable", "name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertLess"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032226880"}, "items": [{"kind": "Variable", "name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertLessEqual"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032227216"}, "items": [{"kind": "Variable", "name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertRaises"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032227552"}, "items": [{"kind": "Variable", "name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertRaisesRegex"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032227888"}, "items": [{"kind": "Variable", "name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertWarns"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032228784"}, "items": [{"kind": "Variable", "name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertWarnsRegex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136511936"}, "name": "assertLogs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136512384"}, "name": "assertNoLogs"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032229904"}, "items": [{"kind": "Variable", "name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertAlmostEqual"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126032230464"}, "items": [{"kind": "Variable", "name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "assertNotAlmostEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136713280"}, "name": "assertRegex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unexpected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136713728"}, "name": "assertNotRegex"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136714176"}, "name": "assertCountEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typeobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136714624"}, "name": "addTypeEqualityFunc"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136715072"}, "name": "assertMultiLineEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "seq_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136715520"}, "name": "assertSequenceEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136715968"}, "name": "assertListEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tuple1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tuple2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136716416"}, "name": "assertTupleEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "set1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "set2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136716864"}, "name": "assertSetEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "d1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "d2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136717312"}, "name": "assertDictEqual"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136717760"}, "name": "fail"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136718208"}, "name": "countTestCases"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136718656"}, "name": "defaultTestResult"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136719104"}, "name": "id"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136719552"}, "name": "shortDescription"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136720000"}, "name": "addCleanup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136721344"}, "name": "doCleanups"}, {"kind": "Variable", "name": "addClassCleanup", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018939232"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "doClassCleanups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018939008"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "standardMsg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136723136"}, "name": "_formatMessage"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136723584"}, "name": "_getAssertEqualityFunc"}, {"kind": "Variable", "name": "failUnlessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018939904"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018940576"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failIfEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018941024"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertNotEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018941472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failUnless", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018941920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assert_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018942368"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failIf", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018942816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failUnlessRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018995248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failUnlessAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019004320"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019004656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failIfAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019004992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertNotAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019005328"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018943488"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertNotRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126018944608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "assertRaisesRegexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126019006112"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "dictionary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136724032"}, "name": "assertDictContainsSubset"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126031772720": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126149486272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "methodName"]}, "140126149486720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126149487168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149487616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126018934304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140126018936768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140126149488960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032222512"}], "returnType": {"nodeId": "140126032222736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}, "140126032222512": {"type": "Union", "items": [{"nodeId": "140126023541008"}, {"nodeId": "N"}]}, "140126023541008": {"type": "Concrete", "module": "unittest.result", "simpleName": "TestResult", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126032218704"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failures", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126032218928"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "skipped", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126032219152"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "expectedFailures", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126032219376"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "unexpectedSuccesses", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023542688"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "shouldStop", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "testsRun", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149605888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149606336"}, "name": "printErrors"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149606784"}, "name": "wasSuccessful"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136844352"}, "name": "stop"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136844800"}, "name": "startTest"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136845248"}, "name": "stopTest"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136845696"}, "name": "startTestRun"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136846144"}, "name": "stopTestRun"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136846592"}, "name": "addError"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136847040"}, "name": "addFailure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136847488"}, "name": "addSuccess"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136847936"}, "name": "addSkip"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136848384"}, "name": "addExpectedFailure"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136848832"}, "name": "addUnexpectedSuccess"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subtest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136849280"}, "name": "addSubTest"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126032218704": {"type": "Tuple", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}]}, "140126032218928": {"type": "Tuple", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}]}, "140126032219152": {"type": "Tuple", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}]}, "140126032219376": {"type": "Tuple", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}]}, "140126149605888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126032220608"}, {"nodeId": "140126032217136"}, {"nodeId": "140126032220832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity"]}, "140126032220608": {"type": "Union", "items": [{"nodeId": "140126119713744"}, {"nodeId": "N"}]}, "140126032217136": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126032220832": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126149606336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149606784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136844352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136844800": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126136845248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126136845696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136846144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136846592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126032220944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}, "140126032220944": {"type": "TypeAlias", "target": {"nodeId": "140126110979280"}}, "140126110979280": {"type": "Union", "items": [{"nodeId": "140126110978272"}, {"nodeId": "140126110979168"}]}, "140126110978272": {"type": "TypeAlias", "target": {"nodeId": "140126110978384"}}, "140126110978384": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126119323552"}, {"nodeId": "140126120025376"}]}, "140126110979168": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "140126136847040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126032221056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}, "140126032221056": {"type": "TypeAlias", "target": {"nodeId": "140126110979280"}}, "140126136847488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126136847936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "reason"]}, "140126136848384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126032221168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}, "140126032221168": {"type": "TypeAlias", "target": {"nodeId": "140126110979280"}}, "140126136848832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126136849280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126023542688"}, {"nodeId": "140126032221392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "subtest", "err"]}, "140126032221392": {"type": "Union", "items": [{"nodeId": "140126032221280"}, {"nodeId": "N"}]}, "140126032221280": {"type": "TypeAlias", "target": {"nodeId": "140126110979280"}}, "140126032222736": {"type": "Union", "items": [{"nodeId": "140126023541008"}, {"nodeId": "N"}]}, "140126149489408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032222848"}], "returnType": {"nodeId": "140126032222960"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}, "140126032222848": {"type": "Union", "items": [{"nodeId": "140126023541008"}, {"nodeId": "N"}]}, "140126032222960": {"type": "Union", "items": [{"nodeId": "140126023541008"}, {"nodeId": "N"}]}, "140126149489856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}, "140126149490304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126115885264", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "params"]}, "140126149490752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149491200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126023541008"}, {"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "result", "test_case", "reason"]}, "140126149491648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126149492096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126136500288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}, "140126136500736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}, "140126136501184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}, "140126136501632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}, "140126136502080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}, "140126136502528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}, "140126136502976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "140126032225312"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}, "140126032225312": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325569712", "args": [{"nodeId": "A"}]}]}, "140126136503424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "140126032225872"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}, "140126032225872": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325569712", "args": [{"nodeId": "A"}]}]}, "140126136503872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "140126032226096"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}, "140126032226096": {"type": "TypeAlias", "target": {"nodeId": "140126031773280"}}, "140126031773280": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "140126120027392"}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126031772832"}]}]}, "140126031772832": {"type": "Union", "items": [{"nodeId": "140126119315488"}, {"nodeId": "140126120027392"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}]}, "140126136504320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325561984"}, {"nodeId": "140126032226320"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}, "140126032226320": {"type": "TypeAlias", "target": {"nodeId": "140126031773280"}}, "140126032220384": {"type": "Overloaded", "items": [{"nodeId": "140126136504768"}, {"nodeId": "140126136505216"}]}, "140126136504768": {"type": "Function", "typeVars": [".-1.140126136504768"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116045408", "args": [{"nodeId": ".-1.140126136504768"}]}, {"nodeId": ".-1.140126136504768"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136504768": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136504768", "variance": "INVARIANT"}, "140126136505216": {"type": "Function", "typeVars": [".-1.140126136505216"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136505216"}, {"nodeId": "140126116045072", "args": [{"nodeId": ".-1.140126136505216"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136505216": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136505216", "variance": "INVARIANT"}, "140126032222400": {"type": "Overloaded", "items": [{"nodeId": "140126136505664"}, {"nodeId": "140126136506112"}]}, "140126136505664": {"type": "Function", "typeVars": [".-1.140126136505664"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116046080", "args": [{"nodeId": ".-1.140126136505664"}]}, {"nodeId": ".-1.140126136505664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136505664": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136505664", "variance": "INVARIANT"}, "140126136506112": {"type": "Function", "typeVars": [".-1.140126136506112"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136506112"}, {"nodeId": "140126116045744", "args": [{"nodeId": ".-1.140126136506112"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136506112": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136506112", "variance": "INVARIANT"}, "140126032226544": {"type": "Overloaded", "items": [{"nodeId": "140126136506560"}, {"nodeId": "140126136507008"}]}, "140126136506560": {"type": "Function", "typeVars": [".-1.140126136506560"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116045072", "args": [{"nodeId": ".-1.140126136506560"}]}, {"nodeId": ".-1.140126136506560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136506560": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136506560", "variance": "INVARIANT"}, "140126136507008": {"type": "Function", "typeVars": [".-1.140126136507008"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136507008"}, {"nodeId": "140126116045408", "args": [{"nodeId": ".-1.140126136507008"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136507008": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136507008", "variance": "INVARIANT"}, "140126032226880": {"type": "Overloaded", "items": [{"nodeId": "140126136507456"}, {"nodeId": "140126136507904"}]}, "140126136507456": {"type": "Function", "typeVars": [".-1.140126136507456"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116045072", "args": [{"nodeId": ".-1.140126136507456"}]}, {"nodeId": ".-1.140126136507456"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136507456": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136507456", "variance": "INVARIANT"}, "140126136507904": {"type": "Function", "typeVars": [".-1.140126136507904"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136507904"}, {"nodeId": "140126116045408", "args": [{"nodeId": ".-1.140126136507904"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}, ".-1.140126136507904": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136507904", "variance": "INVARIANT"}, "140126032227216": {"type": "Overloaded", "items": [{"nodeId": "140126136508352"}, {"nodeId": "140126136508800"}]}, "140126136508352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032228000"}, {"nodeId": "140126031968320"}, {"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"]}, "140126032228000": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126031968320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136508800": {"type": "Function", "typeVars": [".-1.140126136508800"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032228560"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543360", "args": [{"nodeId": ".-1.140126136508800"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}, "140126032228560": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126023543360": {"type": "Concrete", "module": "unittest.case", "simpleName": "_AssertRaisesContext", "members": [{"kind": "Variable", "name": "exception", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126023543360"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136725376"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136725824"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136726272"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126023543360"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126023543360": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126119323552"}, "def": "140126023543360", "variance": "INVARIANT"}, "140126136725376": {"type": "Function", "typeVars": [".-1.140126136725376"], "argTypes": [{"nodeId": ".-1.140126136725376"}], "returnType": {"nodeId": ".-1.140126136725376"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126136725376": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136725376", "variance": "INVARIANT"}, "140126136725824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023543360", "args": [{"nodeId": ".1.140126023543360"}]}, {"nodeId": "140126018656000"}, {"nodeId": "140126018656112"}, {"nodeId": "140126018656224"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126018656000": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126018656112": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126018656224": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126136726272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, ".-1.140126136508800": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126119323552"}, "def": "140126136508800", "variance": "INVARIANT"}, "140126032227552": {"type": "Overloaded", "items": [{"nodeId": "140126136509248"}, {"nodeId": "140126136509696"}]}, "140126136509248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032228896"}, {"nodeId": "140126032229008"}, {"nodeId": "140126031967424"}, {"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"]}, "140126032228896": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126032229008": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, "140126031967424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136509696": {"type": "Function", "typeVars": [".-1.140126136509696"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032229568"}, {"nodeId": "140126032229680"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543360", "args": [{"nodeId": ".-1.140126136509696"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}, "140126032229568": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126032229680": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, ".-1.140126136509696": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126119323552"}, "def": "140126136509696", "variance": "INVARIANT"}, "140126032227888": {"type": "Overloaded", "items": [{"nodeId": "140126136510144"}, {"nodeId": "140126136510592"}]}, "140126136510144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032230016"}, {"nodeId": "140126031966752"}, {"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"]}, "140126032230016": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126031966752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136510592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032230128"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "msg"]}, "140126032230128": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126023543696": {"type": "Concrete", "module": "unittest.case", "simpleName": "_AssertWarnsContext", "members": [{"kind": "Variable", "name": "warning", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023537312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023537312"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136726720"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136727168"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126136726720": {"type": "Function", "typeVars": [".-1.140126136726720"], "argTypes": [{"nodeId": ".-1.140126136726720"}], "returnType": {"nodeId": ".-1.140126136726720"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126136726720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136726720", "variance": "INVARIANT"}, "140126136727168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023543696"}, {"nodeId": "140126018656448"}, {"nodeId": "140126018656560"}, {"nodeId": "140126018656672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126018656448": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126018656560": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126018656672": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126032228784": {"type": "Overloaded", "items": [{"nodeId": "140126136511040"}, {"nodeId": "140126136511488"}]}, "140126136511040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032230576"}, {"nodeId": "140126032230688"}, {"nodeId": "140126031968768"}, {"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"]}, "140126032230576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126032230688": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, "140126031968768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136511488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032230800"}, {"nodeId": "140126032231024"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "expected_regex", "msg"]}, "140126032230800": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126032231024": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, "140126136511936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032231248"}, {"nodeId": "140126032231360"}], "returnType": {"nodeId": "140126023546048", "args": [{"nodeId": "140126032231472"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}, "140126032231248": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039833760"}, {"nodeId": "N"}]}, "140126039833760": {"type": "Concrete", "module": "logging", "simpleName": "Logger", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027999472"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "propagate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126039834096"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "disabled", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023535296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039833424"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132856512"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132856960"}, "name": "setLevel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132857408"}, "name": "isEnabledFor"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132857856"}, "name": "getEffectiveLevel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132858304"}, "name": "getChild"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132858752"}, "name": "debug"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132859200"}, "name": "info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132859648"}, "name": "warning"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132860096"}, "name": "warn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132860544"}, "name": "error"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132860992"}, "name": "exception"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132861440"}, "name": "critical"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132861888"}, "name": "log"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132862336"}, "name": "_log"}, {"kind": "Variable", "name": "fatal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126022906624"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123593728"}, "name": "addHandler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123594176"}, "name": "removeHandler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123594624"}, "name": "findCaller"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123595520"}, "name": "handle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123595968"}, "name": "makeRecord"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123596416"}, "name": "hasHandlers"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123596864"}, "name": "callHandlers"}], "typeVars": [], "bases": [{"nodeId": "140126039833088"}], "isAbstract": false}, "140126027999472": {"type": "Union", "items": [{"nodeId": "140126039833760"}, {"nodeId": "N"}]}, "140126039834096": {"type": "Concrete", "module": "logging", "simpleName": "Handler", "members": [{"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "formatter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027999584"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027994992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027999696"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123597312"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123597760"}, "name": "get_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123598208"}, "name": "set_name"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123598656"}, "name": "createLock"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123599104"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123599552"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123600000"}, "name": "setLevel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123600448"}, "name": "setFormatter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123600896"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123601344"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123601792"}, "name": "handle"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123602240"}, "name": "handleError"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123602688"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123603136"}, "name": "emit"}], "typeVars": [], "bases": [{"nodeId": "140126039833088"}], "isAbstract": false}, "140126027999584": {"type": "Union", "items": [{"nodeId": "140126023532608"}, {"nodeId": "N"}]}, "140126023532608": {"type": "Concrete", "module": "logging", "simpleName": "Formatter", "members": [{"kind": "Variable", "name": "converter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027641600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027999808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027995216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_style", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023535632"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_time_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "default_msec_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027995104"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "style", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "validate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123603584"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123604928"}, "name": "format"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123605376"}, "name": "formatTime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ei", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123737152"}, "name": "formatException"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123737600"}, "name": "formatMessage"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123738048"}, "name": "formatStack"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123738496"}, "name": "usesTime"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027641600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126027998352"}], "returnType": {"nodeId": "140126027995328"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126027998352": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126027995328": {"type": "TypeAlias", "target": {"nodeId": "140126035581904"}}, "140126027999808": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027995216": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126023535632": {"type": "Concrete", "module": "logging", "simpleName": "PercentStyle", "members": [{"kind": "Variable", "name": "default_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asctime_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asctime_search", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "validation_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124150336"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124151232"}, "name": "usesTime"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124151680"}, "name": "validate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124152128"}, "name": "format"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126124150336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023535632"}, {"nodeId": "140126119317840"}, {"nodeId": "140126022935136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "defaults"]}, "140126022935136": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126124151232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023535632"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126124151680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023535632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126124152128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023535632"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126027995104": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123603584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126028004848"}, {"nodeId": "140126028004960"}, {"nodeId": "140126028005072"}, {"nodeId": "140126325562992"}, {"nodeId": "140126022926400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "datefmt", "style", "validate", "defaults"]}, "140126028004848": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126028004960": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126028005072": {"type": "TypeAlias", "target": {"nodeId": "140126027993872"}}, "140126027993872": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126022926400": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126123604928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126023533616": {"type": "Concrete", "module": "logging", "simpleName": "LogRecord", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027995440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "asctime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "created", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027997680"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126028000032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "funcName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "levelname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "levelno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msecs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "process", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996000"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "processName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "relativeCreated", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996224"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "thread", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996112"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "threadName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996336"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123741632"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123742080"}, "name": "getMessage"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123742528"}, "name": "__setattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027995440": {"type": "Union", "items": [{"nodeId": "140126027995664"}, {"nodeId": "N"}]}, "140126027995664": {"type": "TypeAlias", "target": {"nodeId": "140126027994208"}}, "140126027994208": {"type": "Union", "items": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}]}, "140126027997680": {"type": "Union", "items": [{"nodeId": "140126027995888"}, {"nodeId": "N"}]}, "140126027995888": {"type": "TypeAlias", "target": {"nodeId": "140126027993648"}}, "140126027993648": {"type": "Union", "items": [{"nodeId": "140126027992304"}, {"nodeId": "140126027993536"}]}, "140126027992304": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126119323552"}, {"nodeId": "140126027992752"}]}, "140126027992752": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126027993536": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "140126028000032": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027996000": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126027996448": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027996224": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126027996112": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126027996336": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123741632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022926512"}, {"nodeId": "140126022927184"}, {"nodeId": "140126022927296"}, {"nodeId": "140126022927408"}], "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"]}, "140126022926512": {"type": "Union", "items": [{"nodeId": "140126022926960"}, {"nodeId": "N"}]}, "140126022926960": {"type": "TypeAlias", "target": {"nodeId": "140126027994208"}}, "140126022927184": {"type": "Union", "items": [{"nodeId": "140126022927072"}, {"nodeId": "N"}]}, "140126022927072": {"type": "TypeAlias", "target": {"nodeId": "140126027993648"}}, "140126022927296": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126022927408": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123742080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123742528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533616"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126123605376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126023533616"}, {"nodeId": "140126022926624"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "record", "datefmt"]}, "140126022926624": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123737152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126022926736"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ei"]}, "140126022926736": {"type": "TypeAlias", "target": {"nodeId": "140126027993648"}}, "140126123737600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126123738048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stack_info"]}, "140126123738496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532608"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126027994992": {"type": "Union", "items": [{"nodeId": "140126111609376"}, {"nodeId": "N"}]}, "140126027999696": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123597312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126028004512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}, "140126028004512": {"type": "TypeAlias", "target": {"nodeId": "140126027994320"}}, "140126027994320": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126123597760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123598208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126123598656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123599104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123599552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123600000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126028004736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126028004736": {"type": "TypeAlias", "target": {"nodeId": "140126027994320"}}, "140126123600448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126027996896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt"]}, "140126027996896": {"type": "Union", "items": [{"nodeId": "140126023532608"}, {"nodeId": "N"}]}, "140126123600896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123601344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123601792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126123602240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126123602688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126123603136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039834096"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126039833088": {"type": "Concrete", "module": "logging", "simpleName": "Filterer", "members": [{"kind": "Variable", "name": "filters", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023533280"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132853376"}, "name": "addFilter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132853824"}, "name": "removeFilter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132854272"}, "name": "filter"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126023533280": {"type": "Concrete", "module": "logging", "simpleName": "Filter", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "nlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123740736"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123741184"}, "name": "filter"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126123740736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533280"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140126123741184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533280"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126132853376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833088"}, {"nodeId": "140126028000480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}, "140126028000480": {"type": "TypeAlias", "target": {"nodeId": "140126027998912"}}, "140126027998912": {"type": "Union", "items": [{"nodeId": "140126023533280"}, {"nodeId": "140126027607712"}]}, "140126027607712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132853824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833088"}, {"nodeId": "140126027994544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}, "140126027994544": {"type": "TypeAlias", "target": {"nodeId": "140126027998912"}}, "140126132854272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833088"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126023535296": {"type": "Concrete", "module": "logging", "simpleName": "RootLogger", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124149888"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126039833760"}], "isAbstract": false}, "140126124149888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023535296"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126039833424": {"type": "Concrete", "module": "logging", "simpleName": "Manager", "members": [{"kind": "Variable", "name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023535296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "disable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "emittedNoHandlerWarning", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loggerDict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126027992528"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "loggerClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027998464"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "logRecordFactory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027999024"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "rootnode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132854720"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132855168"}, "name": "getLogger"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "klass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132855616"}, "name": "setLoggerClass"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132856064"}, "name": "setLogRecordFactory"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126027992528": {"type": "Union", "items": [{"nodeId": "140126039833760"}, {"nodeId": "140126023534960"}]}, "140126023534960": {"type": "Concrete", "module": "logging", "simpleName": "PlaceHolder", "members": [{"kind": "Variable", "name": "loggerMap", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126039833760"}, {"nodeId": "N"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124148992"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124149440"}, "name": "append"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126124148992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023534960"}, {"nodeId": "140126039833760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}, "140126124149440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023534960"}, {"nodeId": "140126039833760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}, "140126027998464": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126027999024": {"type": "Union", "items": [{"nodeId": "140126027640928"}, {"nodeId": "N"}]}, "140126027640928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023533616"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126132854720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833424"}, {"nodeId": "140126023535296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "rootnode"]}, "140126132855168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833424"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126039833760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126132855616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833424"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "klass"]}, "140126132856064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833424"}, {"nodeId": "140126027643840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "factory"]}, "140126027643840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023533616"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126132856512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126119317840"}, {"nodeId": "140126027997904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "level"]}, "140126027997904": {"type": "TypeAlias", "target": {"nodeId": "140126027994320"}}, "140126132856960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126028000816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126028000816": {"type": "TypeAlias", "target": {"nodeId": "140126027994320"}}, "140126132857408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126132857856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132858304": {"type": "Function", "typeVars": [".-1.140126132858304"], "argTypes": [{"nodeId": ".-1.140126132858304"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126132858304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}, ".-1.140126132858304": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132858304", "variance": "INVARIANT"}, "140126132858752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028001264"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028001376"}], "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"]}, "140126028001264": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126027993312": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126325562992"}, {"nodeId": "140126027993088"}, {"nodeId": "140126119323552"}]}, "140126027993088": {"type": "TypeAlias", "target": {"nodeId": "140126027993648"}}, "140126028001376": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132859200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028001488"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028001824"}], "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"]}, "140126028001488": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028001824": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132859648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028001712"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028002048"}], "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"]}, "140126028001712": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028002048": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132860096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028001600"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028002272"}], "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"]}, "140126028001600": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028002272": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132860544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028001936"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028002496"}], "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"]}, "140126028001936": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028002496": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132860992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028002160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028002720"}], "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"]}, "140126028002160": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028002720": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132861440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028002384"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028002944"}], "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"]}, "140126028002384": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028002944": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132861888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028002608"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126028003168"}], "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"]}, "140126028002608": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028003168": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126132862336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028002832"}, {"nodeId": "140126028003056"}, {"nodeId": "140126028003504"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "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"]}, "140126028002832": {"type": "TypeAlias", "target": {"nodeId": "140126027994208"}}, "140126028003056": {"type": "Union", "items": [{"nodeId": "140126028003392"}, {"nodeId": "N"}]}, "140126028003392": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126028003504": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126022906624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028002384"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126023075200"}], "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"]}, "140126023075200": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123593728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}, "140126123594176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126039834096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}, "140126123594624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126028003728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stack_info", "stacklevel"]}, "140126028003728": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126028003280"}]}, "140126028003280": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123595520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126123595968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126028003952"}, {"nodeId": "140126028004064"}, {"nodeId": "140126028004176"}, {"nodeId": "140126028004288"}, {"nodeId": "140126028004400"}], "returnType": {"nodeId": "140126023533616"}, "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"]}, "140126028003952": {"type": "TypeAlias", "target": {"nodeId": "140126027994208"}}, "140126028004064": {"type": "Union", "items": [{"nodeId": "140126028003616"}, {"nodeId": "N"}]}, "140126028003616": {"type": "TypeAlias", "target": {"nodeId": "140126027993648"}}, "140126028004176": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126028004288": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126028004400": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126123596416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123596864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039833760"}, {"nodeId": "140126023533616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}, "140126032231360": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126023546048": {"type": "Concrete", "module": "unittest._log", "simpleName": "_AssertLogsContext", "members": [{"kind": "Variable", "name": "LOGGING_FORMAT", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023542688"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132850464"}, "name": "__init__"}, {"kind": "Variable", "name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132851360"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132851808"}, "name": "__exit__"}], "typeVars": [{"nodeId": ".1.140126023546048"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126132850464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546048", "args": [{"nodeId": ".1.140126023546048"}]}, {"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test_case", "logger_name", "level", "no_logs"]}, ".1.140126023546048": {"type": "TypeVar", "varName": "_L", "values": [{"nodeId": "N"}, {"nodeId": "140126031769136"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126023546048", "variance": "INVARIANT"}, "140126031769136": {"type": "TypeAlias", "target": {"nodeId": "140126031770032"}}, "140126031770032": {"type": "Tuple", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126023533616"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126132851360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546048", "args": [{"nodeId": ".1.140126023546048"}]}], "returnType": {"nodeId": ".1.140126023546048"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132851808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546048", "args": [{"nodeId": ".1.140126023546048"}]}, {"nodeId": "140126032221952"}, {"nodeId": "140126032222064"}, {"nodeId": "140126032222176"}], "returnType": {"nodeId": "140126032222288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126032221952": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126032222064": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126032222176": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126032222288": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126032231472": {"type": "TypeAlias", "target": {"nodeId": "140126031770032"}}, "140126136512384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126032231584"}, {"nodeId": "140126032231696"}], "returnType": {"nodeId": "140126023546048", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}, "140126032231584": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126039833760"}, {"nodeId": "N"}]}, "140126032231696": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126032229904": {"type": "Overloaded", "items": [{"nodeId": "140126136512832"}, {"nodeId": "140126136513280"}, {"nodeId": "140126136513728"}, {"nodeId": "140126136514176"}]}, "140126136512832": {"type": "Function", "typeVars": [".-1.140126136512832"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136512832"}, {"nodeId": ".-1.140126136512832"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126136512832": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126136512832", "variance": "INVARIANT"}, "140126023542352": {"type": "Protocol", "module": "unittest.case", "simpleName": "_SupportsAbsAndDunderGE", "members": [], "typeVars": [], "bases": [{"nodeId": "140126116046080", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566016", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__abs__", "__ge__"]}, "140126136513280": {"type": "Function", "typeVars": [".-1.140126136513280"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136513280"}, {"nodeId": ".-1.140126136513280"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126136513280": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126136513280", "variance": "INVARIANT"}, "140126136513728": {"type": "Function", "typeVars": [".-1.140126136513728"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126136513728"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126136513728"}, {"nodeId": "140126032232144"}, {"nodeId": "A"}, {"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.140126136513728": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136513728", "variance": "INVARIANT"}, "140126032232144": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126136514176": {"type": "Function", "typeVars": [".-1.140126136514176"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136514176"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126136514176"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126018650176"}, {"nodeId": "A"}, {"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.140126136514176": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136514176", "variance": "INVARIANT"}, "140126018650176": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126032230464": {"type": "Overloaded", "items": [{"nodeId": "140126136514624"}, {"nodeId": "140126136515072"}, {"nodeId": "140126136515520"}, {"nodeId": "140126136515968"}]}, "140126136514624": {"type": "Function", "typeVars": [".-1.140126136514624"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136514624"}, {"nodeId": ".-1.140126136514624"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126136514624": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126136514624", "variance": "INVARIANT"}, "140126136515072": {"type": "Function", "typeVars": [".-1.140126136515072"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136515072"}, {"nodeId": ".-1.140126136515072"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126136515072": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126136515072", "variance": "INVARIANT"}, "140126136515520": {"type": "Function", "typeVars": [".-1.140126136515520"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126136515520"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126136515520"}, {"nodeId": "140126018650736"}, {"nodeId": "A"}, {"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.140126136515520": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136515520", "variance": "INVARIANT"}, "140126018650736": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126136515968": {"type": "Function", "typeVars": [".-1.140126136515968"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136515968"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126136515968"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126018650960"}, {"nodeId": "A"}, {"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.140126136515968": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136515968", "variance": "INVARIANT"}, "140126018650960": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126136713280": {"type": "Function", "typeVars": [".-1.140126136713280"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136713280"}, {"nodeId": "140126018651184"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}, ".-1.140126136713280": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136713280", "variance": "INVARIANT"}, "140126018651184": {"type": "Union", "items": [{"nodeId": ".-1.140126136713280"}, {"nodeId": "140126120032768", "args": [{"nodeId": ".-1.140126136713280"}]}]}, "140126136713728": {"type": "Function", "typeVars": [".-1.140126136713728"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126136713728"}, {"nodeId": "140126018651408"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}, ".-1.140126136713728": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126136713728", "variance": "INVARIANT"}, "140126018651408": {"type": "Union", "items": [{"nodeId": ".-1.140126136713728"}, {"nodeId": "140126120032768", "args": [{"nodeId": ".-1.140126136713728"}]}]}, "140126136714176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126136714624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "0"}, {"nodeId": "140126031964512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typeobj", "function"]}, "140126031964512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136715072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126136715520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140126018652752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seq1", "seq2", "msg", "seq_type"]}, "140126018652752": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126136715968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "list1", "list2", "msg"]}, "140126136716416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "tuple1", "tuple2", "msg"]}, "140126136716864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "140126325571056", "args": [{"nodeId": "140126325561984"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "set1", "set2", "msg"]}, "140126136717312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "140126325561984"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "140126325561984"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "d1", "d2", "msg"]}, "140126136717760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "140126136718208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136718656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136719104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136719552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "140126018654096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126018654096": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126136720000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126031963840"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}, "140126031963840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126136721344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126018939232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126031964064"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}, "140126031964064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126018939008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140126136723136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126018654208"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "standardMsg"]}, "140126018654208": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126136723584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126031969440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second"]}, "140126031969440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126018939904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126018940576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126018941024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126018941472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}, "140126018941920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}, "140126018942368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}, "140126018942816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}, "140126018995248": {"type": "Overloaded", "items": [{"nodeId": "140126018943712"}, {"nodeId": "140126018943936"}]}, "140126018943712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126019000848"}, {"nodeId": "140126018940128"}, {"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"]}, "140126019000848": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126018940128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126018943936": {"type": "Function", "typeVars": [".-1.140126018943936"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126018998160"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543360", "args": [{"nodeId": ".-1.140126018943936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}, "140126018998160": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, ".-1.140126018943936": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126119323552"}, "def": "140126018943936", "variance": "INVARIANT"}, "140126019004320": {"type": "Overloaded", "items": [{"nodeId": "140126019108928"}, {"nodeId": "140126019109152"}, {"nodeId": "140126019109376"}, {"nodeId": "140126019109600"}]}, "140126019108928": {"type": "Function", "typeVars": [".-1.140126019108928"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019108928"}, {"nodeId": ".-1.140126019108928"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019108928": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019108928", "variance": "INVARIANT"}, "140126019109152": {"type": "Function", "typeVars": [".-1.140126019109152"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019109152"}, {"nodeId": ".-1.140126019109152"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019109152": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019109152", "variance": "INVARIANT"}, "140126019109376": {"type": "Function", "typeVars": [".-1.140126019109376"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126019109376"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126019109376"}, {"nodeId": "140126018998272"}, {"nodeId": "A"}, {"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.140126019109376": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019109376", "variance": "INVARIANT"}, "140126018998272": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019109600": {"type": "Function", "typeVars": [".-1.140126019109600"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019109600"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126019109600"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126019004096"}, {"nodeId": "A"}, {"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.140126019109600": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019109600", "variance": "INVARIANT"}, "140126019004096": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019004656": {"type": "Overloaded", "items": [{"nodeId": "140126019110048"}, {"nodeId": "140126019110272"}, {"nodeId": "140126019110496"}, {"nodeId": "140126019110720"}]}, "140126019110048": {"type": "Function", "typeVars": [".-1.140126019110048"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019110048"}, {"nodeId": ".-1.140126019110048"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019110048": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019110048", "variance": "INVARIANT"}, "140126019110272": {"type": "Function", "typeVars": [".-1.140126019110272"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019110272"}, {"nodeId": ".-1.140126019110272"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019110272": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019110272", "variance": "INVARIANT"}, "140126019110496": {"type": "Function", "typeVars": [".-1.140126019110496"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126019110496"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126019110496"}, {"nodeId": "140126019004208"}, {"nodeId": "A"}, {"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.140126019110496": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019110496", "variance": "INVARIANT"}, "140126019004208": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019110720": {"type": "Function", "typeVars": [".-1.140126019110720"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019110720"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126019110720"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126019004432"}, {"nodeId": "A"}, {"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.140126019110720": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019110720", "variance": "INVARIANT"}, "140126019004432": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019004992": {"type": "Overloaded", "items": [{"nodeId": "140126019111168"}, {"nodeId": "140126019111392"}, {"nodeId": "140126019111616"}, {"nodeId": "140126019111840"}]}, "140126019111168": {"type": "Function", "typeVars": [".-1.140126019111168"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019111168"}, {"nodeId": ".-1.140126019111168"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019111168": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019111168", "variance": "INVARIANT"}, "140126019111392": {"type": "Function", "typeVars": [".-1.140126019111392"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019111392"}, {"nodeId": ".-1.140126019111392"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019111392": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019111392", "variance": "INVARIANT"}, "140126019111616": {"type": "Function", "typeVars": [".-1.140126019111616"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126019111616"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126019111616"}, {"nodeId": "140126019004544"}, {"nodeId": "A"}, {"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.140126019111616": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019111616", "variance": "INVARIANT"}, "140126019004544": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019111840": {"type": "Function", "typeVars": [".-1.140126019111840"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019111840"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126019111840"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126019004768"}, {"nodeId": "A"}, {"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.140126019111840": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019111840", "variance": "INVARIANT"}, "140126019004768": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019005328": {"type": "Overloaded", "items": [{"nodeId": "140126019112288"}, {"nodeId": "140126019112512"}, {"nodeId": "140126019112736"}, {"nodeId": "140126019112960"}]}, "140126019112288": {"type": "Function", "typeVars": [".-1.140126019112288"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019112288"}, {"nodeId": ".-1.140126019112288"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019112288": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019112288", "variance": "INVARIANT"}, "140126019112512": {"type": "Function", "typeVars": [".-1.140126019112512"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019112512"}, {"nodeId": ".-1.140126019112512"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140126023542352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}, ".-1.140126019112512": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126116047424", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140126019112512", "variance": "INVARIANT"}, "140126019112736": {"type": "Function", "typeVars": [".-1.140126019112736"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126116047424", "args": [{"nodeId": ".-1.140126019112736"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": ".-1.140126019112736"}, {"nodeId": "140126019004880"}, {"nodeId": "A"}, {"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.140126019112736": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019112736", "variance": "INVARIANT"}, "140126019004880": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126019112960": {"type": "Function", "typeVars": [".-1.140126019112960"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126019112960"}, {"nodeId": "140126116047760", "args": [{"nodeId": ".-1.140126019112960"}, {"nodeId": "140126325566016", "args": [{"nodeId": "140126325566352", "args": [{"nodeId": "140126325561984"}]}]}]}, {"nodeId": "140126019005104"}, {"nodeId": "A"}, {"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.140126019112960": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126019112960", "variance": "INVARIANT"}, "140126019005104": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126018943488": {"type": "Function", "typeVars": [".-1.140126018943488"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126018943488"}, {"nodeId": "140126019005216"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}, ".-1.140126018943488": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126018943488", "variance": "INVARIANT"}, "140126019005216": {"type": "Union", "items": [{"nodeId": ".-1.140126018943488"}, {"nodeId": "140126120032768", "args": [{"nodeId": ".-1.140126018943488"}]}]}, "140126018944608": {"type": "Function", "typeVars": [".-1.140126018944608"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": ".-1.140126018944608"}, {"nodeId": "140126019005440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}, ".-1.140126018944608": {"type": "TypeVar", "varName": "AnyStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126018944608", "variance": "INVARIANT"}, "140126019005440": {"type": "Union", "items": [{"nodeId": ".-1.140126018944608"}, {"nodeId": "140126120032768", "args": [{"nodeId": ".-1.140126018944608"}]}]}, "140126019006112": {"type": "Overloaded", "items": [{"nodeId": "140126019114080"}, {"nodeId": "140126019114304"}]}, "140126019114080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126019005552"}, {"nodeId": "140126019005664"}, {"nodeId": "140126018943264"}, {"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"]}, "140126019005552": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126019005664": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, "140126018943264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126019114304": {"type": "Function", "typeVars": [".-1.140126019114304"], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126019005776"}, {"nodeId": "140126019005888"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023543360", "args": [{"nodeId": ".-1.140126019114304"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}, "140126019005776": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119318848", "args": [{"nodeId": "0"}]}]}, "140126019005888": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}]}, ".-1.140126019114304": {"type": "TypeVar", "varName": "_E", "values": [], "upperBound": {"nodeId": "140126119323552"}, "def": "140126019114304", "variance": "INVARIANT"}, "140126136724032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542688"}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "subset", "dictionary", "msg"]}, "140126023542016": {"type": "Concrete", "module": "unittest.case", "simpleName": "SkipTest", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149485824"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126149485824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023542016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}, "140126023545040": {"type": "Concrete", "module": "unittest.loader", "simpleName": "TestLoader", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "testMethodPrefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sortTestMethodsUsing", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032217248"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032220048"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "suiteClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032217360"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149596928"}, "name": "loadTestsFromTestCase"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149597376"}, "name": "loadTestsFromModule"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149597824"}, "name": "loadTestsFromName"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149598272"}, "name": "loadTestsFromNames"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149598720"}, "name": "getTestCaseNames"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "top_level_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149599168"}, "name": "discover"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "full_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149599616"}, "name": "_match_path"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126032217248": {"type": "TypeAlias", "target": {"nodeId": "140126090163168"}}, "140126090163168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126032220048": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126032217360": {"type": "TypeAlias", "target": {"nodeId": "140126035490208"}}, "140126035490208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126023542688"}]}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126023546720": {"type": "Concrete", "module": "unittest.suite", "simpleName": "TestSuite", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136926496"}, "name": "run"}], "typeVars": [], "bases": [{"nodeId": "140126023546384"}], "isAbstract": false}, "140126136926496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546720"}, {"nodeId": "140126023541008"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "result", "debug"]}, "140126023546384": {"type": "Concrete", "module": "unittest.suite", "simpleName": "BaseTestSuite", "members": [{"kind": "Variable", "name": "_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126023542688"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_removed_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136856672"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136857120"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136857568"}, "name": "addTest"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136858016"}, "name": "addTests"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136858464"}, "name": "run"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136858912"}, "name": "debug"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136859360"}, "name": "countTestCases"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136859808"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136860256"}, "name": "__eq__"}], "typeVars": [], "bases": [{"nodeId": "140126325566688", "args": [{"nodeId": "140126032220160"}]}], "isAbstract": false}, "140126136856672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126018657344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tests"]}, "140126018657344": {"type": "TypeAlias", "target": {"nodeId": "140126031772272"}}, "140126031772272": {"type": "Union", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126023546720"}]}, "140126136857120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126023541008"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}, "140126136857568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126018657456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126018657456": {"type": "TypeAlias", "target": {"nodeId": "140126031772272"}}, "140126136858016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126018657568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "tests"]}, "140126018657568": {"type": "TypeAlias", "target": {"nodeId": "140126031772272"}}, "140126136858464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126023541008"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}, "140126136858912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136859360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136859808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126018657680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126018657680": {"type": "TypeAlias", "target": {"nodeId": "140126031772272"}}, "140126136860256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023546384"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126032220160": {"type": "TypeAlias", "target": {"nodeId": "140126031772272"}}, "140126149596928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}, "140126149597376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "140126120021680"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "module", "args", "pattern"]}, "140126149597824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "140126119317840"}, {"nodeId": "140126018659024"}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "module"]}, "140126018659024": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126149598272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126018659136"}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "names", "module"]}, "140126018659136": {"type": "Union", "items": [{"nodeId": "140126120021680"}, {"nodeId": "N"}]}, "140126149598720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}, "140126149599168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126018659248"}], "returnType": {"nodeId": "140126023546720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "start_dir", "pattern", "top_level_dir"]}, "140126018659248": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126149599616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545040"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "full_path", "pattern"]}, "140126023545712": {"type": "Concrete", "module": "unittest.main", "simpleName": "TestProgram", "members": [{"kind": "Variable", "name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023541008"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032217696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032217808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032217920"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032218032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "progName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032218144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032218256"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032218368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defaultTest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "testRunner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "testLoader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149602528"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149602976"}, "name": "usageExit"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149603424"}, "name": "parseArgs"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "from_discovery", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149603872"}, "name": "createTests"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149604320"}, "name": "runTests"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126032217696": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126120021680"}]}, "140126032217808": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126032217920": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126032218032": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126032218144": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126032218256": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126032218368": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126149602528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545712"}, {"nodeId": "140126018657792"}, {"nodeId": "140126018660256"}, {"nodeId": "140126018660368"}, {"nodeId": "140126018660480"}, {"nodeId": "140126023545040"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126018660592"}, {"nodeId": "140126018660704"}, {"nodeId": "140126018660816"}, {"nodeId": "140126018660928"}, {"nodeId": "140126325562992"}], "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"]}, "140126018657792": {"type": "Union", "items": [{"nodeId": "N"}, {"nodeId": "140126119317840"}, {"nodeId": "140126120021680"}]}, "140126018660256": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126018660368": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "N"}]}, "140126018660480": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126023545376"}, {"nodeId": "N"}]}, "140126023545376": {"type": "Protocol", "module": "unittest.main", "simpleName": "_TestRunner", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149602080"}, "name": "run"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["run"]}, "140126149602080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545376"}, {"nodeId": "140126018660032"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126018660032": {"type": "Union", "items": [{"nodeId": "140126023546720"}, {"nodeId": "140126023542688"}]}, "140126018660592": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126018660704": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126018660816": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126018660928": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126149602976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545712"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}, "140126149603424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545712"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "argv"]}, "140126149603872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545712"}, {"nodeId": "140126325562992"}, {"nodeId": "140126018658688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "from_discovery", "Loader"]}, "140126018658688": {"type": "Union", "items": [{"nodeId": "140126023545040"}, {"nodeId": "N"}]}, "140126149604320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023545712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023544368": {"type": "Concrete", "module": "unittest.runner", "simpleName": "TextTestResult", "members": [{"kind": "Variable", "name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dots", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "separator1", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "separator2", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "showAll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119713744"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136850400"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136850848"}, "name": "getDescription"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "flavour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136851296"}, "name": "printErrorList"}], "typeVars": [], "bases": [{"nodeId": "140126023541008"}], "isAbstract": false}, "140126136850400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544368"}, {"nodeId": "140126119713744"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "descriptions", "verbosity"]}, "140126136850848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544368"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126136851296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544368"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126018658016"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "flavour", "errors"]}, "140126018658016": {"type": "Tuple", "items": [{"nodeId": "140126023542688"}, {"nodeId": "140126119317840"}]}, "140126023544704": {"type": "Concrete", "module": "unittest.runner", "simpleName": "TextTestRunner", "members": [{"kind": "Variable", "name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126032216800"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136851744"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136852192"}, "name": "_makeResult"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136852640"}, "name": "run"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126032216800": {"type": "TypeAlias", "target": {"nodeId": "140126090163840"}}, "140126090163840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119713744"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126136851744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544704"}, {"nodeId": "140126018658128"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126018658352"}, {"nodeId": "140126018658464"}, {"nodeId": "140126325562992"}], "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"]}, "140126018658128": {"type": "Union", "items": [{"nodeId": "140126119713744"}, {"nodeId": "N"}]}, "140126018658352": {"type": "Union", "items": [{"nodeId": "140126018658240"}, {"nodeId": "N"}]}, "140126018658240": {"type": "TypeAlias", "target": {"nodeId": "140126090163840"}}, "140126018658464": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126136852192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544704"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136852640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544704"}, {"nodeId": "140126018658576"}], "returnType": {"nodeId": "140126023541008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}, "140126018658576": {"type": "Union", "items": [{"nodeId": "140126023546720"}, {"nodeId": "140126023542688"}]}, "140126023544032": {"type": "Concrete", "module": "unittest.async_case", "simpleName": "IsolatedAsyncioTestCase", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126031964736"}, "name": "asyncSetUp"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136927616"}, "name": "asyncTearDown"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126136928512"}, "name": "addAsyncCleanup"}], "typeVars": [], "bases": [{"nodeId": "140126023542688"}], "isAbstract": false}, "140126031964736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544032"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136927616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544032"}], "returnType": {"nodeId": "140126325568368", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126136928512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023544032"}, {"nodeId": "140126031963168"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}, "140126031963168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140126325568032", "args": [{"nodeId": "140126325561984"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126120028736": {"type": "Concrete", "module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126120028736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126120028736"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126191055616"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157288416"}, "name": "check_returncode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126157288864"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126120028736"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126120028736": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126120028736", "variance": "INVARIANT"}, "140126191055616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120028736", "args": [{"nodeId": ".1.140126120028736"}]}, {"nodeId": "140126107258320"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107258432"}, {"nodeId": "140126107258544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}, "140126107258320": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107258432": {"type": "Union", "items": [{"nodeId": ".1.140126120028736"}, {"nodeId": "N"}]}, "140126107258544": {"type": "Union", "items": [{"nodeId": ".1.140126120028736"}, {"nodeId": "N"}]}, "140126157288416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120028736", "args": [{"nodeId": ".1.140126120028736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126157288864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126120029072": {"type": "Concrete", "module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126120029408": {"type": "Concrete", "module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140360160"}, "name": "__init__"}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111737088"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111399184"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126120029072"}], "isAbstract": false}, "140126140360160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120029408"}, {"nodeId": "140126107409248"}, {"nodeId": "140126119316496"}, {"nodeId": "140126107409360"}, {"nodeId": "140126107409472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}, "140126107409248": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107409360": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126107409472": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126111737088": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126111399184": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126120029744": {"type": "Concrete", "module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126140360608"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126120029072"}], "isAbstract": false}, "140126140360608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120029744"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107409584"}, {"nodeId": "140126107409696"}, {"nodeId": "140126107409808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}, "140126107409584": {"type": "TypeAlias", "target": {"nodeId": "140126111384960"}}, "140126107409696": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126107409808": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126039821328": {"type": "Concrete", "module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126035871776"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035482144"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035487072"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035487296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035487520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035487744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035487968"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035488192"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035488416"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035488640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035488864"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126035489088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "140126035581680"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126119316160"}]}], "isAbstract": false}, "140126035871776": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126035482144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582240"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582240": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035487072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582352"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582352": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035487296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582464"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582464": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035487520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582576"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582576": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035487744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582688"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582688": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035487968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582800"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582800": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035488192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035582912"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035582912": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035488416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035583024"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035583024": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035488640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035583136"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035583136": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035488864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035583248"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035583248": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035489088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126035583360"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126035583360": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126035581680": {"type": "Union", "items": [{"nodeId": "A"}, {"nodeId": "140126119316160"}]}, "140126039821664": {"type": "Protocol", "module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}, "140126120031760": {"type": "Concrete", "module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120218064"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120220528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158023904"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126120218064": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126120220528": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126158023904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031760"}, {"nodeId": "140126119317840"}, {"nodeId": "140126107480496"}, {"nodeId": "140126107480160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}, "140126107480496": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "N"}]}, "140126107480160": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126120032096": {"type": "Concrete", "module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158024352"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140126119316160"}], "isAbstract": false}, "140126158024352": {"type": "Function", "typeVars": [".-1.140126158024352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126158024352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}, ".-1.140126158024352": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126158024352", "variance": "INVARIANT"}, "140126116039696": {"type": "Protocol", "module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158025472"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158025920"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158026368"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["close", "seek", "write"]}, "140126158025472": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116039696"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126158025920": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116039696"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126158026368": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116039696"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126116040032": {"type": "Protocol", "module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158026816"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158027264"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158027712"}, "name": "close"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["close", "read", "seek"]}, "140126158026816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116040032"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}, "140126158027264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116040032"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126158027712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116040032"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111600304": {"type": "Protocol", "module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140126116039696"}, {"nodeId": "140126116040032"}], "protocolMembers": ["close", "read", "seek", "write"]}, "140126116040368": {"type": "Protocol", "module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126158028160"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126158028160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116040368"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098802944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140126098802944": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126116040704": {"type": "Protocol", "module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144544832"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126144544832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116040704"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098803168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140126098803168": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126116041040": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144545280"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126144545280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116041040"}, {"nodeId": "140126116040032"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126111601984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140126111601984": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126116040032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153350656"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153351104"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153351552"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153352000"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153352448"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153352896"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153353344"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153353792"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153354240"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153354688"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126116042384"}], "isAbstract": false}, "140126153350656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126116040032"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140126153351104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}, "140126153351552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126098809104"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}, "140126098809104": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153352000": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126098809216"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}, "140126098809216": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153352448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153352896": {"type": "Function", "typeVars": [".-1.140126153352896"], "argTypes": [{"nodeId": ".-1.140126153352896"}], "returnType": {"nodeId": ".-1.140126153352896"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153352896": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153352896", "variance": "INVARIANT"}, "140126153353344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126098809328"}, {"nodeId": "140126098809440"}, {"nodeId": "140126098809552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098809328": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098809440": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098809552": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126153353792": {"type": "Function", "typeVars": [".-1.140126153353792"], "argTypes": [{"nodeId": ".-1.140126153353792"}], "returnType": {"nodeId": ".-1.140126153353792"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153353792": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153353792", "variance": "INVARIANT"}, "140126153354240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153354688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601984"}, {"nodeId": "140126119317840"}, {"nodeId": "140126098299744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126098299744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126116042384": {"type": "Concrete", "module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144557376"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144557824"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126144557376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042384"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098806976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140126098806976": {"type": "Tuple", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119316160"}]}, "140126144557824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042384"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126098807200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}, "140126098807200": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126116041376": {"type": "Protocol", "module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144545728"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126144545728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116041376"}, {"nodeId": "140126116039696"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126111601648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140126111601648": {"type": "Concrete", "module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126116039696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153347520"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153347968"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153348416"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153348864"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153349312"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153349760"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153350208"}, "name": "__getattr__"}], "typeVars": [], "bases": [{"nodeId": "140126116042384"}], "isAbstract": false}, "140126153347520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}, {"nodeId": "140126116039696"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}, "140126153347968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}, "140126153348416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140126153348864": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153349312": {"type": "Function", "typeVars": [".-1.140126153349312"], "argTypes": [{"nodeId": ".-1.140126153349312"}], "returnType": {"nodeId": ".-1.140126153349312"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153349312": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153349312", "variance": "INVARIANT"}, "140126153349760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}, {"nodeId": "140126098808544"}, {"nodeId": "140126098808656"}, {"nodeId": "140126098808768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098808544": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098808656": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098808768": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126153350208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601648"}, {"nodeId": "140126119317840"}, {"nodeId": "140126098299072"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}, "140126098299072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126116041712": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144546176"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126144546176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116041712"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126116042720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126116042720": {"type": "Concrete", "module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144558272"}, "name": "__init__"}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060881152"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144559168"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144559616"}, "name": "getstate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144560064"}, "name": "setstate"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126144558272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042720"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126060881152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042720"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140126144559168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126144559616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042720"}], "returnType": {"nodeId": "140126098807312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098807312": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126144560064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042720"}, {"nodeId": "140126098807424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}, "140126098807424": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126116042048": {"type": "Protocol", "module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144546624"}, "name": "__call__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__call__"]}, "140126144546624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116042048"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126116043056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126111600640": {"type": "Concrete", "module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060897312"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060895520"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060895744"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060893952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060891712"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126060893280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144549760"}, "name": "__new__"}], "typeVars": [], "bases": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126325561984"}]}], "isAbstract": false}, "140126060897312": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803392"}], "returnType": {"nodeId": "140126116040368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803392": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126060895520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803504"}], "returnType": {"nodeId": "140126116040704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803504": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126060895744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803616"}], "returnType": {"nodeId": "140126116041040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803616": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126060893952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803728"}], "returnType": {"nodeId": "140126116041376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803728": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126060891712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803840"}], "returnType": {"nodeId": "140126116041712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803840": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126060893280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126098803952"}], "returnType": {"nodeId": "140126116042048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126098803952": {"type": "Tuple", "items": [{"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}]}, "140126144549760": {"type": "Function", "typeVars": [".-1.140126144549760"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126098803280"}, {"nodeId": "140126098804064"}, {"nodeId": "140126098804176"}, {"nodeId": "140126098804288"}, {"nodeId": "140126098804400"}, {"nodeId": "140126098804512"}], "returnType": {"nodeId": ".-1.140126144549760"}, "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"]}, "140126098803280": {"type": "Union", "items": [{"nodeId": "140126116041040"}, {"nodeId": "N"}]}, "140126098804064": {"type": "Union", "items": [{"nodeId": "140126116041376"}, {"nodeId": "N"}]}, "140126098804176": {"type": "Union", "items": [{"nodeId": "140126116041712"}, {"nodeId": "N"}]}, "140126098804288": {"type": "Union", "items": [{"nodeId": "140126116042048"}, {"nodeId": "N"}]}, "140126098804400": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126098804512": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, ".-1.140126144549760": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126144549760", "variance": "INVARIANT"}, "140126111600976": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153344832"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060879360"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153345728"}, "name": "encode"}], "typeVars": [], "bases": [{"nodeId": "140126116042720"}], "isAbstract": true}, "140126153344832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111600976"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126060879360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111600976"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140126153345728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111600976"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140126111601312": {"type": "Concrete", "module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119716096"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153346176"}, "name": "__init__"}, {"kind": "Variable", "name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126060878240"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153347072"}, "name": "decode"}], "typeVars": [], "bases": [{"nodeId": "140126116043056"}], "isAbstract": true}, "140126153346176": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601312"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}, "140126060878240": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601312"}, {"nodeId": "140126098808096"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126098808320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}, "140126098808096": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126098808320": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126153347072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111601312"}, {"nodeId": "140126098808432"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}, "140126098808432": {"type": "TypeAlias", "target": {"nodeId": "140126110977600"}}, "140126111602320": {"type": "Concrete", "module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111600304"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153355136"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153355584"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153356032"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153356480"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153356928"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153357376"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153357824"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153358272"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153358720"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153490496"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153490944"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153491392"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153491840"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153492288"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153492736"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153493184"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153493632"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153494080"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153494528"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153494976"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153495424"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153495872"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140126119713744"}], "isAbstract": false}, "140126153355136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126111600304"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}, "140126153355584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126153356032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126098809888"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126098809888": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153356480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126098810000"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140126098810000": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153356928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153357376": {"type": "Function", "typeVars": [".-1.140126153357376"], "argTypes": [{"nodeId": ".-1.140126153357376"}], "returnType": {"nodeId": ".-1.140126153357376"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153357376": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153357376", "variance": "INVARIANT"}, "140126153357824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140126153358272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140126153358720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153490496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140126153490944": {"type": "Function", "typeVars": [".-1.140126153490944"], "argTypes": [{"nodeId": ".-1.140126153490944"}], "returnType": {"nodeId": ".-1.140126153490944"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153490944": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153490944", "variance": "INVARIANT"}, "140126153491392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126098810112"}, {"nodeId": "140126098810224"}, {"nodeId": "140126098810336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098810112": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098810224": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098810336": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126153491840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126153492288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153492736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153493184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153493632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153494080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153494528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}, {"nodeId": "140126098810560"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126098810560": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153494976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153495424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153495872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111602320"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126116043392": {"type": "Concrete", "module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153496320"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153496768"}, "name": "read"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153497216"}, "name": "readline"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153497664"}, "name": "readlines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153498112"}, "name": "__next__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153498560"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153499008"}, "name": "write"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153499456"}, "name": "writelines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153499904"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153500352"}, "name": "__getattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153500800"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153501248"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153501696"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153502144"}, "name": "close"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153502592"}, "name": "fileno"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153503040"}, "name": "flush"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153503488"}, "name": "isatty"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153503936"}, "name": "readable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153504384"}, "name": "truncate"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153504832"}, "name": "seekable"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153505280"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153505728"}, "name": "writable"}], "typeVars": [], "bases": [{"nodeId": "140126119713408"}], "isAbstract": false}, "140126153496320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126111600304"}, {"nodeId": "140126116040368"}, {"nodeId": "140126116040704"}, {"nodeId": "140126116041040"}, {"nodeId": "140126116041376"}, {"nodeId": "140126119317840"}], "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"]}, "140126153496768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126153497216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126098810672"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126098810672": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153497664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126098810784"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119716096"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}, "140126098810784": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153498112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153498560": {"type": "Function", "typeVars": [".-1.140126153498560"], "argTypes": [{"nodeId": ".-1.140126153498560"}], "returnType": {"nodeId": ".-1.140126153498560"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153498560": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153498560", "variance": "INVARIANT"}, "140126153499008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126119716096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}, "140126153499456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119716096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}, "140126153499904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153500352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126153500800": {"type": "Function", "typeVars": [".-1.140126153500800"], "argTypes": [{"nodeId": ".-1.140126153500800"}], "returnType": {"nodeId": ".-1.140126153500800"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140126153500800": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126153500800", "variance": "INVARIANT"}, "140126153501248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126098811008"}, {"nodeId": "140126098811120"}, {"nodeId": "140126098811232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126098811008": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126098811120": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126098811232": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126153501696": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}, "140126153502144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153502592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153503040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153503488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153503936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153504384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}, {"nodeId": "140126098811344"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}, "140126098811344": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126153504832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153505280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126153505728": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116043392"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115192096": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069945088"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126119594688"}], "isAbstract": false}, "140126069945088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115192096"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115192768": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144729536"}, "name": "load"}, {"kind": "Variable", "name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069941280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069940608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069941056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115227104"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126144731328"}, "name": "matches"}], "typeVars": [], "bases": [{"nodeId": "140126115192432"}], "isAbstract": false}, "140126144729536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102970304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102970304": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126069941280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102970528"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102970528": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126069940608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102970640"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102970640": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126069941056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102970752"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102970752": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126115227104": {"type": "Union", "items": [{"nodeId": "140126115194112"}, {"nodeId": "N"}]}, "140126144731328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126102970864"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126325562992"}, "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"]}, "140126102970864": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126115192432": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115226096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115225648"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128565920"}, "name": "_replace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128565024"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128566144"}, "name": "_asdict"}, {"kind": "Variable", "name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128566592"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140126119318848", "args": [{"nodeId": "140126119317840"}]}], "isAbstract": false}, "140126115226096": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126115225648": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}, "140126128565920": {"type": "Function", "typeVars": [".-1.140126128565920"], "argTypes": [{"nodeId": ".-1.140126128565920"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126128565920"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}, ".-1.140126128565920": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140126115225872"}, "def": "140126128565920", "variance": "INVARIANT"}, "140126115225872": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126128565024": {"type": "Function", "typeVars": [".-1.140126128565024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": ".-1.140126128565024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}, ".-1.140126128565024": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140126115225872"}, "def": "140126128565024", "variance": "INVARIANT"}, "140126128566144": {"type": "Function", "typeVars": [".-1.140126128566144"], "argTypes": [{"nodeId": ".-1.140126128566144"}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}, ".-1.140126128566144": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140126115225872"}, "def": "140126128566144", "variance": "INVARIANT"}, "140126128566592": {"type": "Function", "typeVars": [".-1.140126128566592"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126128566592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_cls", "iterable", "new", "len"]}, ".-1.140126128566592": {"type": "TypeVar", "varName": "_NT", "values": [], "upperBound": {"nodeId": "140126115225872"}, "def": "140126128566592", "variance": "INVARIANT"}, "140126115193440": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069933664"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069932992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126069932320"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126102969632"}, "items": [{"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "select"}], "typeVars": [], "bases": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126115193104"}]}], "isAbstract": false}, "140126069933664": {"type": "Function", "typeVars": [".-1.140126069933664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126102971088"}]}], "returnType": {"nodeId": ".-1.140126069933664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}, "140126102971088": {"type": "TypeAlias", "target": {"nodeId": "140126111490656"}}, ".-1.140126069933664": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126069933664", "variance": "INVARIANT"}, "140126069932992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193440"}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126069932320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193440"}], "returnType": {"nodeId": "140126119716768", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126102969632": {"type": "Overloaded", "items": [{"nodeId": "140126144734912"}, {"nodeId": "140126144735360"}]}, "140126144734912": {"type": "Function", "typeVars": [".-1.140126144734912"], "argTypes": [{"nodeId": ".-1.140126144734912"}], "returnType": {"nodeId": ".-1.140126144734912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126144734912": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126144734912", "variance": "INVARIANT"}, "140126144735360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115193440"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126115193104"}, "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"]}, "140126111300432": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "type": {"nodeId": "140126111300768"}}, {"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069910304"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126115197472"}], "isAbstract": true}, "140126069910304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111300432"}, {"nodeId": "140126111300768"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126115194112"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}, "140126111301104": {"type": "Concrete", "module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126069908064"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153576896"}, "name": "invalidate_caches"}], "typeVars": [], "bases": [{"nodeId": "140126111300432"}], "isAbstract": false}, "140126069908064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126111300768"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126115194448"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}, "140126153576896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111301104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}, "140126039819312": {"type": "Concrete", "module": "functools", "simpleName": "_lru_cache_wrapper", "members": [{"kind": "Variable", "name": "__wrapped__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040023424"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153587200"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153587648"}, "name": "cache_info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126153588096"}, "name": "cache_clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149345344"}, "name": "__copy__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149345792"}, "name": "__deepcopy__"}], "typeVars": [{"nodeId": ".1.140126039819312"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040023424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819312"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".1.140126039819312": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039819312", "variance": "INVARIANT"}, "140126153587200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}, {"nodeId": "140126119711056"}, {"nodeId": "140126119711056"}], "returnType": {"nodeId": ".1.140126039819312"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}, "140126153587648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}], "returnType": {"nodeId": "140126040243360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126040243360": {"type": "TypeAlias", "target": {"nodeId": "140126040239104"}}, "140126040239104": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126153588096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149345344": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}], "returnType": {"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149345792": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126039819312", "args": [{"nodeId": ".1.140126039819312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}, "140126039819648": {"type": "Concrete", "module": "functools", "simpleName": "partial", "members": [{"kind": "Variable", "name": "func", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040002784"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040004352"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040003680"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149350720"}, "name": "__new__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149351168"}, "name": "__call__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149351616"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126039819648"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040002784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819648", "args": [{"nodeId": ".1.140126039819648"}]}], "returnType": {"nodeId": "140126040019840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".1.140126039819648": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039819648", "variance": "INVARIANT"}, "140126040019840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040004352": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819648", "args": [{"nodeId": ".1.140126039819648"}]}], "returnType": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126040003680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819648", "args": [{"nodeId": ".1.140126039819648"}]}], "returnType": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149350720": {"type": "Function", "typeVars": [".-1.140126149350720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140126040019616"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140126149350720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}, "140126040019616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".-1.140126149350720": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126149350720", "variance": "INVARIANT"}, "140126149351168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819648", "args": [{"nodeId": ".1.140126039819648"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819648"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}, "140126149351616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126039819984": {"type": "Concrete", "module": "functools", "simpleName": "partialmethod", "members": [{"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040241456"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119318848", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040242800"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149352960"}, "name": "__get__"}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040337632"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149354304"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126039819984"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040241456": {"type": "Union", "items": [{"nodeId": "140126040023200"}, {"nodeId": "140126040241344"}]}, "140126040023200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819984"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".1.140126039819984": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039819984", "variance": "INVARIANT"}, "140126040241344": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126040242800": {"type": "Overloaded", "items": [{"nodeId": "140126149352064"}, {"nodeId": "140126149352512"}]}, "140126149352064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819984", "args": [{"nodeId": ".1.140126039819984"}]}, {"nodeId": "140126040019392"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}, "140126040019392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819984"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149352512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819984", "args": [{"nodeId": ".1.140126039819984"}]}, {"nodeId": "140126040147552"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}, "140126040147552": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126149352960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819984", "args": [{"nodeId": ".1.140126039819984"}]}, {"nodeId": "A"}, {"nodeId": "140126040148112"}], "returnType": {"nodeId": "140126040020960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}, "140126040148112": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126040020960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039819984"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040337632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039819984", "args": [{"nodeId": ".1.140126039819984"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149354304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126039820320": {"type": "Concrete", "module": "functools", "simpleName": "_SingleDispatchCallable", "members": [{"kind": "Variable", "name": "registry", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120020672", "args": [{"nodeId": "A"}, {"nodeId": "140126040022752"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149354752"}, "name": "dispatch"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040243584"}, "items": [{"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "register"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149356544"}, "name": "_clear_cache"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149356992"}, "name": "__call__"}], "typeVars": [{"nodeId": ".1.140126039820320"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040022752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, ".1.140126039820320": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039820320", "variance": "INVARIANT"}, "140126149354752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140126040018720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}, "140126040018720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040243584": {"type": "Overloaded", "items": [{"nodeId": "140126149355200"}, {"nodeId": "140126149355648"}, {"nodeId": "140126149356096"}]}, "140126149355200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126040025440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}, "140126040025440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126040018272"}], "returnType": {"nodeId": "140126040018048"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040018272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040018048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149355648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}, {"nodeId": "140126040018944"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126040017600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}, "140126040018944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040017600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149356096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}, {"nodeId": "0"}, {"nodeId": "140126040018496"}], "returnType": {"nodeId": "140126040017152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "func"]}, "140126040018496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040017152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149356544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149356992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820320"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820320"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}, "140126039820656": {"type": "Concrete", "module": "functools", "simpleName": "singledispatchmethod", "members": [{"kind": "Variable", "name": "dispatcher", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039820320", "args": [{"nodeId": ".1.140126039820656"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040022528"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149357888"}, "name": "__init__"}, {"kind": "Variable", "name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040338976"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040147104"}, "items": [{"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "register"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149360128"}, "name": "__get__"}], "typeVars": [{"nodeId": ".1.140126039820656"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126039820656": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039820656", "variance": "INVARIANT"}, "140126040022528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149357888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}, {"nodeId": "140126040016704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, "140126040016704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040338976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126040147104": {"type": "Overloaded", "items": [{"nodeId": "140126149358784"}, {"nodeId": "140126149359232"}, {"nodeId": "140126149359680"}]}, "140126149358784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126040025216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}, "140126040025216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126040015584"}], "returnType": {"nodeId": "140126040016032"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040015584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040016032": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149359232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}, {"nodeId": "140126039812448"}, {"nodeId": "N"}], "returnType": {"nodeId": "140126039812672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}, "140126039812448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126039812672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149359680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}, {"nodeId": "0"}, {"nodeId": "140126040016480"}], "returnType": {"nodeId": "140126040014208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "method"]}, "140126040016480": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126040014208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149360128": {"type": "Function", "typeVars": [".-1.140126149360128"], "argTypes": [{"nodeId": "140126039820656", "args": [{"nodeId": ".1.140126039820656"}]}, {"nodeId": ".-1.140126149360128"}, {"nodeId": "140126040151136"}], "returnType": {"nodeId": "140126040013088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}, ".-1.140126149360128": {"type": "TypeVar", "varName": "_S", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126149360128", "variance": "INVARIANT"}, "140126040151136": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126040013088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126039820992": {"type": "Concrete", "module": "functools", "simpleName": "cached_property", "members": [{"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040022304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "attrname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040242352"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149360576"}, "name": "__init__"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126040148672"}, "items": [{"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__get__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148690432"}, "name": "__set_name__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148690880"}, "name": "__class_getitem__"}], "typeVars": [{"nodeId": ".1.140126039820992"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040022304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".1.140126039820992": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126039820992", "variance": "INVARIANT"}, "140126040242352": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126149360576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820992", "args": [{"nodeId": ".1.140126039820992"}]}, {"nodeId": "140126040012416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}, "140126040012416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.140126039820992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040148672": {"type": "Overloaded", "items": [{"nodeId": "140126149361024"}, {"nodeId": "140126148689984"}]}, "140126149361024": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820992", "args": [{"nodeId": ".1.140126039820992"}]}, {"nodeId": "N"}, {"nodeId": "140126040151696"}], "returnType": {"nodeId": "140126039820992", "args": [{"nodeId": ".1.140126039820992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}, "140126040151696": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126148689984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820992", "args": [{"nodeId": ".1.140126039820992"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126040151920"}], "returnType": {"nodeId": ".1.140126039820992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}, "140126040151920": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126148690432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039820992", "args": [{"nodeId": ".1.140126039820992"}]}, {"nodeId": "0"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}, "140126148690880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126120026720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}, "140126039818304": {"type": "Concrete", "module": "numpy.polynomial.polyutils", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119604096"}], "isAbstract": false}, "140126111608032": {"type": "Concrete", "module": "threading", "simpleName": "ThreadError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126111608368": {"type": "Concrete", "module": "threading", "simpleName": "local", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148701184"}, "name": "__getattribute__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148701632"}, "name": "__setattr__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148702080"}, "name": "__delattr__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126148701184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608368"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126148701632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608368"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}, "140126148702080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608368"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126111608704": {"type": "Concrete", "module": "threading", "simpleName": "Thread", "members": [{"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ident", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126039910304"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148702976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148703424"}, "name": "start"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148703872"}, "name": "run"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148704320"}, "name": "join"}, {"kind": "Variable", "name": "native_id", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126039909408"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126148705216"}, "name": "is_alive"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149296192"}, "name": "getName"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149296640"}, "name": "setName"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149297088"}, "name": "isDaemon"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "daemonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149297536"}, "name": "setDaemon"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126039910304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "140126039958672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039958672": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126148702976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}, {"nodeId": "N"}, {"nodeId": "140126039958896"}, {"nodeId": "140126039959008"}, {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "140126039959344"}, {"nodeId": "140126039959456"}], "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"]}, "140126039958896": {"type": "Union", "items": [{"nodeId": "140126090357536"}, {"nodeId": "N"}]}, "140126090357536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126039959008": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126039959344": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126039959456": {"type": "Union", "items": [{"nodeId": "140126325562992"}, {"nodeId": "N"}]}, "140126148703424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148703872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126148704320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}, {"nodeId": "140126039959568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140126039959568": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126039909408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "140126039959680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039959680": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126148705216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149296192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149296640": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126149297088": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149297536": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111608704"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "daemonic"]}, "140126111609040": {"type": "Concrete", "module": "threading", "simpleName": "_DummyThread", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149297984"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126111608704"}], "isAbstract": false}, "140126149297984": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111609712": {"type": "Concrete", "module": "threading", "simpleName": "_RLock", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149300672"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149301120"}, "name": "release"}, {"kind": "Variable", "name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039805280"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149301568"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149300672": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609712"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126149301120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039805280": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609712"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126149301568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111609712"}, {"nodeId": "140126039960128"}, {"nodeId": "140126039960240"}, {"nodeId": "140126039960352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126039960128": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126039960240": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039960352": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126111610048": {"type": "Concrete", "module": "threading", "simpleName": "Condition", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149302016"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149302464"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149302912"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149303360"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149303808"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149304256"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "predicate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149304704"}, "name": "wait_for"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149305152"}, "name": "notify"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149305600"}, "name": "notify_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149306048"}, "name": "notifyAll"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149302016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126039960464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "lock"]}, "140126039960464": {"type": "Union", "items": [{"nodeId": "140126111609376"}, {"nodeId": "140126111609712"}, {"nodeId": "N"}]}, "140126149302464": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126149302912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126039960576"}, {"nodeId": "140126039960688"}, {"nodeId": "140126039960800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126039960576": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126039960688": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039960800": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126149303360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126149303808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149304256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126039960912"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140126039960912": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126149304704": {"type": "Function", "typeVars": [".-1.140126149304704"], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126090353280"}, {"nodeId": "140126039961024"}], "returnType": {"nodeId": ".-1.140126149304704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "predicate", "timeout"]}, "140126090353280": {"type": "Function", "typeVars": [".-1.140126090353280"], "argTypes": [], "returnType": {"nodeId": ".-1.140126090353280"}, "argKinds": [], "argNames": []}, ".-1.140126090353280": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126090353280", "variance": "INVARIANT"}, "140126039961024": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, ".-1.140126149304704": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126149304704", "variance": "INVARIANT"}, "140126149305152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126149305600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149306048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111610384": {"type": "Concrete", "module": "threading", "simpleName": "Semaphore", "members": [{"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149306496"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149306944"}, "name": "__exit__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149307392"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149307840"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149308288"}, "name": "release"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149306496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610384"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}, "140126149306944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610384"}, {"nodeId": "140126039961136"}, {"nodeId": "140126039961248"}, {"nodeId": "140126039961360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126039961136": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126039961248": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039961360": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126149307392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610384"}, {"nodeId": "140126325562992"}, {"nodeId": "140126039961472"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126039961472": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126149307840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610384"}, {"nodeId": "140126325562992"}, {"nodeId": "140126039961584"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}, "140126039961584": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126149308288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111610384"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}, "140126111610720": {"type": "Concrete", "module": "threading", "simpleName": "BoundedSemaphore", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111610384"}], "isAbstract": false}, "140126111611056": {"type": "Concrete", "module": "threading", "simpleName": "Event", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149309184"}, "name": "is_set"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149309632"}, "name": "isSet"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149310080"}, "name": "set"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149310528"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149310976"}, "name": "wait"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149309184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611056"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149309632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611056"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149310080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149310528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149310976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611056"}, {"nodeId": "140126039961696"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140126039961696": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126111611392": {"type": "Concrete", "module": "threading", "simpleName": "Timer", "members": [{"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "finished", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111611056"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090241952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316496"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149311424"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149311872"}, "name": "cancel"}], "typeVars": [], "bases": [{"nodeId": "140126111608704"}], "isAbstract": false}, "140126090241952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126149311424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611392"}, {"nodeId": "140126119316496"}, {"nodeId": "140126090358432"}, {"nodeId": "140126039962032"}, {"nodeId": "140126039962256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "interval", "function", "args", "kwargs"]}, "140126090358432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126325561984"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126039962032": {"type": "Union", "items": [{"nodeId": "140126325566688", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126039962256": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}, "140126149311872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111611728": {"type": "Concrete", "module": "threading", "simpleName": "Barrier", "members": [{"kind": "Variable", "name": "parties", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126039810656"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "n_waiting", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126039811104"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "broken", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126039811328"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parties", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "action", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149477760"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149478208"}, "name": "wait"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149478656"}, "name": "reset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149479104"}, "name": "abort"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126039810656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039811104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039811328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149477760": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}, {"nodeId": "140126119316160"}, {"nodeId": "140126039962368"}, {"nodeId": "140126039962480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "parties", "action", "timeout"]}, "140126039962368": {"type": "Union", "items": [{"nodeId": "140126090360000"}, {"nodeId": "N"}]}, "140126090360000": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}, "140126039962480": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126149478208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}, {"nodeId": "140126039962592"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}, "140126039962592": {"type": "Union", "items": [{"nodeId": "140126119316496"}, {"nodeId": "N"}]}, "140126149478656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126149479104": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111611728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126111612064": {"type": "Concrete", "module": "threading", "simpleName": "BrokenBarrierError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119329264"}], "isAbstract": false}, "140126023541680": {"type": "Concrete", "module": "unittest.case", "simpleName": "_BaseTestCaseContext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126149480896"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126149480896": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023541680"}, {"nodeId": "140126023542688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test_case"]}, "140126023536976": {"type": "Concrete", "module": "warnings", "simpleName": "_OptionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126111607024": {"type": "Concrete", "module": "json.decoder", "simpleName": "JSONDecodeError", "members": [{"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124155712"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119593344"}], "isAbstract": false}, "140126124155712": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607024"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "doc", "pos"]}, "140126111607360": {"type": "Concrete", "module": "json.decoder", "simpleName": "JSONDecoder", "members": [{"kind": "Variable", "name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128391552"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128392448"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040565216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040571040"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040565888"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124156160"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_w", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124156608"}, "name": "decode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "idx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124157056"}, "name": "raw_decode"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128391552": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126128392448": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040565216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040571040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040565888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126040609664"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040609664": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126124156160": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607360"}, {"nodeId": "140126040609888"}, {"nodeId": "140126040616160"}, {"nodeId": "140126040616384"}, {"nodeId": "140126040616608"}, {"nodeId": "140126325562992"}, {"nodeId": "140126040616832"}], "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"]}, "140126040609888": {"type": "Union", "items": [{"nodeId": "140126040566112"}, {"nodeId": "N"}]}, "140126040566112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040616160": {"type": "Union", "items": [{"nodeId": "140126040566336"}, {"nodeId": "N"}]}, "140126040566336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040616384": {"type": "Union", "items": [{"nodeId": "140126040566560"}, {"nodeId": "N"}]}, "140126040566560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040616608": {"type": "Union", "items": [{"nodeId": "140126040566784"}, {"nodeId": "N"}]}, "140126040566784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040616832": {"type": "Union", "items": [{"nodeId": "140126040567680"}, {"nodeId": "N"}]}, "140126040567680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126040617168"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126040617168": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "140126124156608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607360"}, {"nodeId": "140126119317840"}, {"nodeId": "140126040567008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "_w"]}, "140126040567008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126124157056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607360"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126040617952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "idx"]}, "140126040617952": {"type": "Tuple", "items": [{"nodeId": "A"}, {"nodeId": "140126119316160"}]}, "140126111606688": {"type": "Concrete", "module": "json.encoder", "simpleName": "JSONEncoder", "members": [{"kind": "Variable", "name": "item_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "key_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126040614144"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "separators", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124159072"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124159520"}, "name": "default"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124159968"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_one_shot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124160416"}, "name": "iterencode"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126040614144": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126124159072": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606688"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126040612016"}, {"nodeId": "140126040612128"}, {"nodeId": "140126040612912"}], "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"]}, "140126040612016": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126040612128": {"type": "Union", "items": [{"nodeId": "140126040615824"}, {"nodeId": "N"}]}, "140126040615824": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126040612912": {"type": "Union", "items": [{"nodeId": "140126040571264"}, {"nodeId": "N"}]}, "140126040571264": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126124159520": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606688"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}, "140126124159968": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606688"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}, "140126124160416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606688"}, {"nodeId": "A"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "o", "_one_shot"]}, "140126120030416": {"type": "Concrete", "module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126120030752": {"type": "Concrete", "module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126120215824"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111736528"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082157248"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131953824"}, "name": "opengroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131954272"}, "name": "closegroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131954720"}, "name": "checkgroup"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131955168"}, "name": "checklookbehindgroup"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126120215824": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126111736528": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126082157248": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030752"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126131953824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030752"}, {"nodeId": "140126107477696"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}, "140126107477696": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126131954272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030752"}, {"nodeId": "140126119316160"}, {"nodeId": "140126120031088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}, "140126120031088": {"type": "Concrete", "module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126111740672"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111729808"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120030752"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131955616"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131956512"}, "name": "dump"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131956960"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131957408"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131957856"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131958304"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131958752"}, "name": "insert"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131959200"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131959648"}, "name": "getwidth"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111740672": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126111738320": {"type": "Tuple", "items": [{"nodeId": "140126120032096"}, {"nodeId": "140126111737312"}]}, "140126111737312": {"type": "TypeAlias", "target": {"nodeId": "140126111737872"}}, "140126111737872": {"type": "Union", "items": [{"nodeId": "140126111739888"}, {"nodeId": "140126111740448"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126120031088"}]}, {"nodeId": "140126111737648"}, {"nodeId": "140126111737760"}]}, "140126111739888": {"type": "TypeAlias", "target": {"nodeId": "140126119319184", "args": [{"nodeId": "140126120217616"}]}}, "140126120217616": {"type": "Tuple", "items": [{"nodeId": "140126120032096"}, {"nodeId": "140126119316160"}]}, "140126111740448": {"type": "TypeAlias", "target": {"nodeId": "140126111482592"}}, "140126111482592": {"type": "Tuple", "items": [{"nodeId": "N"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126120031088"}]}]}, "140126111737648": {"type": "TypeAlias", "target": {"nodeId": "140126111482480"}}, "140126111482480": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126120031088"}, {"nodeId": "140126120031088"}]}, "140126111737760": {"type": "TypeAlias", "target": {"nodeId": "140126111742352"}}, "140126111742352": {"type": "Tuple", "items": [{"nodeId": "140126111385072"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}, {"nodeId": "140126120031088"}]}, "140126111385072": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126111729808": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126131955616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126120030752"}, {"nodeId": "140126107477920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}, "140126107477920": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126107477808"}]}, {"nodeId": "N"}]}, "140126107477808": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126131956512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}, "140126131956960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126131957408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126107478480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126107478480": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}]}, "140126131957856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126107478144"}], "returnType": {"nodeId": "140126107478032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126107478144": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}]}, "140126107478032": {"type": "Union", "items": [{"nodeId": "140126120031088"}, {"nodeId": "140126107478256"}]}, "140126107478256": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126131958304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126107478928"}, {"nodeId": "140126107478592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126107478928": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119318512"}]}, "140126107478592": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126131958752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126119316160"}, {"nodeId": "140126107479152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}, "140126107479152": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126131959200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}, {"nodeId": "140126107479264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}, "140126107479264": {"type": "TypeAlias", "target": {"nodeId": "140126111738320"}}, "140126131959648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031088"}], "returnType": {"nodeId": "140126107478704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107478704": {"type": "Tuple", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "140126131954720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030752"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}, "140126131955168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120030752"}, {"nodeId": "140126119316160"}, {"nodeId": "140126120031424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}, "140126120031424": {"type": "Concrete", "module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111741456"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131960096"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131960544"}, "name": "match"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131960992"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126131961440"}, "name": "getwhile"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132158752"}, "name": "getuntil"}, {"kind": "Variable", "name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126082135904"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132160096"}, "name": "tell"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132160544"}, "name": "seek"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132160992"}, "name": "error"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111741456": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126131960096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140126131960544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}, "140126131960992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}], "returnType": {"nodeId": "140126107478816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126107478816": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126131961440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "140126119316160"}, {"nodeId": "140126325566688", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}, "140126132158752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}, "140126082135904": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132160096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132160544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}, "140126132160992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126120031424"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126120031760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}, "140126110991072": {"type": "Concrete", "module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132166144"}, "name": "size"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126132166144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126110991072"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115191760": {"type": "Protocol", "module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132604704"}, "name": "joinpath"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132605152"}, "name": "parent"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132605600"}, "name": "read_text"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132606048"}, "name": "__truediv__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}, "140126132604704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191760"}], "returnType": {"nodeId": "140126115191760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132605152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191760"}], "returnType": {"nodeId": "140126115191760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132605600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191760"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132606048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115191760"}], "returnType": {"nodeId": "140126115191760"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126115694288": {"type": "Concrete", "module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115693280"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111812512"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111496704"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126115697648"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132607168"}, "name": "is_multipart"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132607616"}, "name": "set_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132608064"}, "name": "get_unixfrom"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132608512"}, "name": "attach"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132608960"}, "name": "get_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132609408"}, "name": "set_payload"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132609856"}, "name": "set_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132610304"}, "name": "get_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132610752"}, "name": "__len__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132611200"}, "name": "__contains__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132611648"}, "name": "__iter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132612096"}, "name": "__getitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132612544"}, "name": "__setitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132612992"}, "name": "__delitem__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132613440"}, "name": "keys"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132613888"}, "name": "values"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132614336"}, "name": "items"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132614784"}, "name": "get"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132615232"}, "name": "get_all"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132615680"}, "name": "add_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132616128"}, "name": "replace_header"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132616576"}, "name": "get_content_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132666432"}, "name": "get_content_maintype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132666880"}, "name": "get_content_subtype"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132667328"}, "name": "get_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132667776"}, "name": "set_default_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132668224"}, "name": "get_params"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unquote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132668672"}, "name": "get_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132669120"}, "name": "del_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132669568"}, "name": "set_type"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132670016"}, "name": "get_filename"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132670464"}, "name": "get_boundary"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132670912"}, "name": "set_boundary"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126103228416"}, "items": [{"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "get_content_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132672256"}, "name": "get_charsets"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132672704"}, "name": "walk"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132673152"}, "name": "get_content_disposition"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132673600"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132674048"}, "name": "as_bytes"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132674496"}, "name": "__bytes__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132674944"}, "name": "set_param"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132675392"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132675840"}, "name": "set_raw"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132676288"}, "name": "raw_items"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126115693280": {"type": "Concrete", "module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115231696"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115231920"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124410912"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124411360"}, "name": "clone"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124411808"}, "name": "handle_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124412256"}, "name": "register_defect"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124412704"}, "name": "header_max_count"}, {"kind": "Variable", "name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090530816"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090532608"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090533504"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090532832"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126090531040"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": true}, "140126115231696": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126115231920": {"type": "Union", "items": [{"nodeId": "140126128561216"}, {"nodeId": "N"}]}, "140126128561216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}], "returnType": {"nodeId": "140126115694288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126124410912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126103234240"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103234352"}], "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"]}, "140126103234240": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126103234352": {"type": "Union", "items": [{"nodeId": "140126102919808"}, {"nodeId": "N"}]}, "140126102919808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}], "returnType": {"nodeId": "140126115694288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126124411360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126115693280"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}, "140126124411808": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126115694288"}, {"nodeId": "140126115697648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140126115697648": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124409568"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126119593344"}], "isAbstract": false}, "140126124409568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115697648"}, {"nodeId": "140126103458464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}, "140126103458464": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126124412256": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126115694288"}, {"nodeId": "140126115697648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}, "140126124412704": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103234576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}, "140126103234576": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126090530816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126103234800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140126103234800": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126090532608": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103235024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126103235024": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126090533504": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126090532832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126090531040": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126111812512": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126111496704": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132607168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132607616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}, "140126132608064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126103236368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103236368": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132608512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126115694288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}, "140126132608960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126103236480"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}, "140126103236480": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126132609408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126103236704"}, {"nodeId": "140126103236816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}, "140126103236704": {"type": "TypeAlias", "target": {"nodeId": "140126115229680"}}, "140126115229680": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126115694288"}]}, {"nodeId": "140126119317840"}, {"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}]}, "140126103236816": {"type": "TypeAlias", "target": {"nodeId": "140126111496480"}}, "140126111496480": {"type": "Union", "items": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115704704": {"type": "Concrete", "module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115233600"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115807296"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115807408"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124302720"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124303168"}, "name": "get_body_encoding"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124303616"}, "name": "get_output_charset"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124304064"}, "name": "header_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124304512"}, "name": "header_encode_lines"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124304960"}, "name": "body_encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124305408"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124305856"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126115233600": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115807296": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115807408": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126124302720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}, "140126124303168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126124303616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}], "returnType": {"nodeId": "140126103460032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103460032": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126124304064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140126124304512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325567024", "args": [{"nodeId": "140126119316160"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}, "140126124304960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}, "140126124305408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126124305856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704704"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132609856": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126103236928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}, "140126103236928": {"type": "TypeAlias", "target": {"nodeId": "140126111496480"}}, "140126132610304": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126103237040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103237040": {"type": "TypeAlias", "target": {"nodeId": "140126111496480"}}, "140126132610752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132611200": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132611648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126132612096": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103237152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126103237152": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132612544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103237264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}, "140126103237264": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132612992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126132613440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132613888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126103237376"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103237376": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132614336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126103237712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103237712": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126103237488"}]}, "140126103237488": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132614784": {"type": "Function", "typeVars": [".-1.140126132614784"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": ".-1.140126132614784"}], "returnType": {"nodeId": "140126103237936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140126132614784": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132614784", "variance": "INVARIANT"}, "140126103237936": {"type": "Union", "items": [{"nodeId": "140126103237824"}, {"nodeId": ".-1.140126132614784"}]}, "140126103237824": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132615232": {"type": "Function", "typeVars": [".-1.140126132615232"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": ".-1.140126132615232"}], "returnType": {"nodeId": "140126103238160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}, ".-1.140126132615232": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132615232", "variance": "INVARIANT"}, "140126103238160": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126103238048"}]}, {"nodeId": ".-1.140126132615232"}]}, "140126103238048": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132615680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103238272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}, "140126103238272": {"type": "TypeAlias", "target": {"nodeId": "140126115809200"}}, "140126115809200": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}, {"nodeId": "140126115808192"}]}, "140126115808192": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126115808416"}, {"nodeId": "140126119317840"}]}, "140126115808416": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132616128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103238384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}, "140126103238384": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132616576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132666432": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132666880": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132667328": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132667776": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}, "140126132668224": {"type": "Function", "typeVars": [".-1.140126132668224"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": ".-1.140126132668224"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126103238720"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}, ".-1.140126132668224": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132668224", "variance": "INVARIANT"}, "140126103238720": {"type": "Union", "items": [{"nodeId": "140126119319184", "args": [{"nodeId": "140126103238608"}]}, {"nodeId": ".-1.140126132668224"}]}, "140126103238608": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126132668672": {"type": "Function", "typeVars": [".-1.140126132668672"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": ".-1.140126132668672"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "140126103238944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}, ".-1.140126132668672": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132668672", "variance": "INVARIANT"}, "140126103238944": {"type": "Union", "items": [{"nodeId": ".-1.140126132668672"}, {"nodeId": "140126103238832"}]}, "140126103238832": {"type": "TypeAlias", "target": {"nodeId": "140126115808640"}}, "140126115808640": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126115807856"}]}, "140126115807856": {"type": "Tuple", "items": [{"nodeId": "140126115233264"}, {"nodeId": "140126115807968"}, {"nodeId": "140126119317840"}]}, "140126115233264": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115807968": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132669120": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}, "140126132669568": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}, "140126132670016": {"type": "Function", "typeVars": [".-1.140126132670016"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": ".-1.140126132670016"}], "returnType": {"nodeId": "140126103239168"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140126132670016": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132670016", "variance": "INVARIANT"}, "140126103239168": {"type": "Union", "items": [{"nodeId": ".-1.140126132670016"}, {"nodeId": "140126119317840"}]}, "140126132670464": {"type": "Function", "typeVars": [".-1.140126132670464"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": ".-1.140126132670464"}], "returnType": {"nodeId": "140126103238496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140126132670464": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132670464", "variance": "INVARIANT"}, "140126103238496": {"type": "Union", "items": [{"nodeId": ".-1.140126132670464"}, {"nodeId": "140126119317840"}]}, "140126132670912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}, "140126103228416": {"type": "Overloaded", "items": [{"nodeId": "140126132671360"}, {"nodeId": "140126132671808"}]}, "140126132671360": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126103239392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103239392": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132671808": {"type": "Function", "typeVars": [".-1.140126132671808"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": ".-1.140126132671808"}], "returnType": {"nodeId": "140126103239504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}, ".-1.140126132671808": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132671808", "variance": "INVARIANT"}, "140126103239504": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": ".-1.140126132671808"}]}, "140126132672256": {"type": "Function", "typeVars": [".-1.140126132672256"], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": ".-1.140126132672256"}], "returnType": {"nodeId": "140126103239616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}, ".-1.140126132672256": {"type": "TypeVar", "varName": "_T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132672256", "variance": "INVARIANT"}, "140126103239616": {"type": "Union", "items": [{"nodeId": ".-1.140126132672256"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}]}, "140126132672704": {"type": "Function", "typeVars": [".-1.140126132672704"], "argTypes": [{"nodeId": ".-1.140126132672704"}], "returnType": {"nodeId": "140126325567696", "args": [{"nodeId": ".-1.140126132672704"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, ".-1.140126132672704": {"type": "TypeVar", "varName": "Self", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140126132672704", "variance": "INVARIANT"}, "140126132673152": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126103239728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103239728": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132673600": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126103239840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140126103239840": {"type": "Union", "items": [{"nodeId": "140126115693280"}, {"nodeId": "N"}]}, "140126132674048": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103239952"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}, "140126103239952": {"type": "Union", "items": [{"nodeId": "140126115693280"}, {"nodeId": "N"}]}, "140126132674496": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132674944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103240064"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}], "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"]}, "140126103240064": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132675392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126115693280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140126132675840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103240176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126103240176": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126132676288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694288"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126103240512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126103240512": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126103240288"}]}, "140126103240288": {"type": "TypeAlias", "target": {"nodeId": "A"}}, "140126115694624": {"type": "Concrete", "module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132676736"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132677184"}, "name": "get_body"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132677632"}, "name": "iter_attachments"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132678080"}, "name": "iter_parts"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132678528"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132678976"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132679424"}, "name": "make_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132679872"}, "name": "make_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132680320"}, "name": "make_mixed"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132680768"}, "name": "add_related"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132681216"}, "name": "add_alternative"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132681664"}, "name": "add_attachment"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132682112"}, "name": "clear"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132830272"}, "name": "clear_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132830720"}, "name": "as_string"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126132831168"}, "name": "is_attachment"}], "typeVars": [], "bases": [{"nodeId": "140126115694288"}], "isAbstract": false}, "140126132676736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126103453760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}, "140126103453760": {"type": "Union", "items": [{"nodeId": "140126115693280"}, {"nodeId": "N"}]}, "140126132677184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126103453872"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}, "140126103453872": {"type": "Union", "items": [{"nodeId": "140126115694288"}, {"nodeId": "N"}]}, "140126132677632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126115694288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132678080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}], "returnType": {"nodeId": "140126325567024", "args": [{"nodeId": "140126115694288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132678528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "A"}, {"nodeId": "140126103454096"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140126103454096": {"type": "Union", "items": [{"nodeId": "140126115704368"}, {"nodeId": "N"}]}, "140126115704368": {"type": "Concrete", "module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124308320"}, "name": "get_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124308768"}, "name": "set_content"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124309216"}, "name": "add_get_handler"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124309664"}, "name": "add_set_handler"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126124308320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704368"}, {"nodeId": "140126115694288"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}, "140126124308768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704368"}, {"nodeId": "140126115694288"}, {"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"]}, "140126124309216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704368"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102923616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}, "140126102923616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126124309664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115704368"}, {"nodeId": "140126119315488"}, {"nodeId": "140126102923392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}, "140126102923392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}, "140126132678976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "A"}, {"nodeId": "140126103454544"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140126103454544": {"type": "Union", "items": [{"nodeId": "140126115704368"}, {"nodeId": "N"}]}, "140126132679424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126103454768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140126103454768": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132679872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126103454880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140126103454880": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132680320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126103454992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}, "140126103454992": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126132680768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "A"}, {"nodeId": "140126103455216"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140126103455216": {"type": "Union", "items": [{"nodeId": "140126115704368"}, {"nodeId": "N"}]}, "140126132681216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "A"}, {"nodeId": "140126103455552"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140126103455552": {"type": "Union", "items": [{"nodeId": "140126115704368"}, {"nodeId": "N"}]}, "140126132681664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "A"}, {"nodeId": "140126103455888"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}, "140126103455888": {"type": "Union", "items": [{"nodeId": "140126115704368"}, {"nodeId": "N"}]}, "140126132682112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132830272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126132830720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103456112"}, {"nodeId": "140126103456224"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}, "140126103456112": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126103456224": {"type": "Union", "items": [{"nodeId": "140126115693280"}, {"nodeId": "N"}]}, "140126132831168": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115694624"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126115694960": {"type": "Concrete", "module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115694624"}], "isAbstract": false}, "140126111603328": {"type": "Concrete", "module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111602656"}], "isAbstract": false}, "140126111604000": {"type": "Concrete", "module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111603664"}, {"nodeId": "140126111602992"}], "isAbstract": false}, "140126111604336": {"type": "Concrete", "module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140126111603664"}, {"nodeId": "140126111603328"}], "isAbstract": false}, "140126111606352": {"type": "Concrete", "module": "numpy.compat.py3k", "simpleName": "contextlib_nullcontext", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124356144"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124356416"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "excinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124356688"}, "name": "__exit__"}, {"kind": "Variable", "name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126124356144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606352"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}, "140126124356416": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606352"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126124356688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606352"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}, "140126111607696": {"type": "Concrete", "module": "_thread", "simpleName": "LockType", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127894400"}, "name": "acquire"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127894848"}, "name": "release"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127895296"}, "name": "locked"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127895744"}, "name": "__enter__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126127896192"}, "name": "__exit__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126127894400": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607696"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316496"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}, "140126127894848": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127895296": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607696"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126127895744": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607696"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126127896192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111607696"}, {"nodeId": "140126039954752"}, {"nodeId": "140126039955088"}, {"nodeId": "140126039955200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}, "140126039954752": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "N"}]}, "140126039955088": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039955200": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126111612400": {"type": "Concrete", "module": "_thread", "simpleName": "_ExceptHookArgs", "members": [{"kind": "Variable", "name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039769376"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_type", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040515392"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040520992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "exc_traceback", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040521216"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "thread", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126040521440"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126110990736", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119318848", "args": [{"nodeId": "140126048395872"}]}], "isAbstract": false}, "140126039769376": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126040515392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039955984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039955984": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126039955648"}, {"nodeId": "140126039955760"}, {"nodeId": "140126039955872"}]}, "140126039955648": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039955760": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126039955872": {"type": "Union", "items": [{"nodeId": "140126111608704"}, {"nodeId": "N"}]}, "140126040520992": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039956432"}], "returnType": {"nodeId": "140126039956544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039956432": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126039956096"}, {"nodeId": "140126039956208"}, {"nodeId": "140126039956320"}]}, "140126039956096": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039956208": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126039956320": {"type": "Union", "items": [{"nodeId": "140126111608704"}, {"nodeId": "N"}]}, "140126039956544": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126040521216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039956992"}], "returnType": {"nodeId": "140126039957104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039956992": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126039956656"}, {"nodeId": "140126039956768"}, {"nodeId": "140126039956880"}]}, "140126039956656": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039956768": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126039956880": {"type": "Union", "items": [{"nodeId": "140126111608704"}, {"nodeId": "N"}]}, "140126039957104": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126040521440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126039957552"}], "returnType": {"nodeId": "140126039957664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126039957552": {"type": "Tuple", "items": [{"nodeId": "0"}, {"nodeId": "140126039957216"}, {"nodeId": "140126039957328"}, {"nodeId": "140126039957440"}]}, "140126039957216": {"type": "Union", "items": [{"nodeId": "140126119323552"}, {"nodeId": "N"}]}, "140126039957328": {"type": "Union", "items": [{"nodeId": "140126120025376"}, {"nodeId": "N"}]}, "140126039957440": {"type": "Union", "items": [{"nodeId": "140126111608704"}, {"nodeId": "N"}]}, "140126039957664": {"type": "Union", "items": [{"nodeId": "140126111608704"}, {"nodeId": "N"}]}, "140126048395872": {"type": "Union", "items": [{"nodeId": "0"}, {"nodeId": "140126119323552"}, {"nodeId": "140126120025376"}, {"nodeId": "140126111608704"}]}, "140126023532944": {"type": "Concrete", "module": "logging", "simpleName": "BufferingFormatter", "members": [{"kind": "Variable", "name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126023532608"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123738944"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123739392"}, "name": "formatHeader"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123739840"}, "name": "formatFooter"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123740288"}, "name": "format"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126123738944": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532944"}, {"nodeId": "140126022926848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "linefmt"]}, "140126022926848": {"type": "Union", "items": [{"nodeId": "140126023532608"}, {"nodeId": "N"}]}, "140126123739392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532944"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126023533616"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}, "140126123739840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532944"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126023533616"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}, "140126123740288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023532944"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126023533616"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}, "140126023536640": {"type": "Concrete", "module": "logging", "simpleName": "LoggerAdapter", "members": [{"kind": "Variable", "name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126023536640"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126039833424"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027996672"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123742976"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123743872"}, "name": "process"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123744320"}, "name": "debug"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123744768"}, "name": "info"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123745216"}, "name": "warning"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123745664"}, "name": "warn"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123746112"}, "name": "error"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123746560"}, "name": "exception"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123747008"}, "name": "critical"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123747456"}, "name": "log"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123751488"}, "name": "isEnabledFor"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123751936"}, "name": "getEffectiveLevel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123752384"}, "name": "setLevel"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123752832"}, "name": "hasHandlers"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126123982912"}, "name": "_log"}, {"kind": "Variable", "name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140126023126816"}, "isInitializedInClass": true}], "typeVars": [{"nodeId": ".1.140126023536640"}], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, ".1.140126023536640": {"type": "TypeVar", "varName": "_L", "values": [], "upperBound": {"nodeId": "140126027995552"}, "def": "140126023536640", "variance": "INVARIANT"}, "140126027995552": {"type": "Union", "items": [{"nodeId": "140126039833760"}, {"nodeId": "140126023536640", "args": [{"nodeId": "A"}]}]}, "140126027996672": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123742976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": ".1.140126023536640"}, {"nodeId": "140126022927744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "logger", "extra"]}, "140126022927744": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123743872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "A"}, {"nodeId": "140126119314144", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140126022928304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "kwargs"]}, "140126022928304": {"type": "Tuple", "items": [{"nodeId": "A"}, {"nodeId": "140126119314144", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}]}, "140126123744320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022928416"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022928528"}, {"nodeId": "140126325561984"}], "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"]}, "140126022928416": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022928528": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123744768": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022928640"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022928976"}, {"nodeId": "140126325561984"}], "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"]}, "140126022928640": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022928976": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123745216": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022928864"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022929200"}, {"nodeId": "140126325561984"}], "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"]}, "140126022928864": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022929200": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123745664": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022928752"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022929424"}, {"nodeId": "140126325561984"}], "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"]}, "140126022928752": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022929424": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123746112": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022929088"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022929648"}, {"nodeId": "140126325561984"}], "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"]}, "140126022929088": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022929648": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123746560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022929312"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022929872"}, {"nodeId": "140126325561984"}], "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"]}, "140126022929312": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022929872": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123747008": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022929536"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022930096"}, {"nodeId": "140126325561984"}], "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"]}, "140126022929536": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022930096": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123747456": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022929760"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126022930320"}, {"nodeId": "140126325561984"}], "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"]}, "140126022929760": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022930320": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126123751488": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126123751936": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}], "returnType": {"nodeId": "140126119316160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123752384": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126022929984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}, "140126022929984": {"type": "TypeAlias", "target": {"nodeId": "140126027994320"}}, "140126123752832": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126123982912": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126325561984"}, {"nodeId": "140126022930544"}, {"nodeId": "140126022930656"}, {"nodeId": "140126022930432"}, {"nodeId": "140126325562992"}], "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"]}, "140126022930544": {"type": "TypeAlias", "target": {"nodeId": "140126027994208"}}, "140126022930656": {"type": "Union", "items": [{"nodeId": "140126022930208"}, {"nodeId": "N"}]}, "140126022930208": {"type": "TypeAlias", "target": {"nodeId": "140126027993312"}}, "140126022930432": {"type": "Union", "items": [{"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "N"}]}, "140126023126816": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023536640", "args": [{"nodeId": ".1.140126023536640"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023533952": {"type": "Concrete", "module": "logging", "simpleName": "StreamHandler", "members": [{"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140126023533952"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126028000144"}, "items": [{"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124146752"}, "name": "setStream"}], "typeVars": [{"nodeId": ".1.140126023533952"}], "bases": [{"nodeId": "140126039834096"}], "isAbstract": false}, ".1.140126023533952": {"type": "TypeVar", "varName": "_StreamT", "values": [], "upperBound": {"nodeId": "140126110990400", "args": [{"nodeId": "140126119317840"}]}, "def": "140126023533952", "variance": "INVARIANT"}, "140126028000144": {"type": "Overloaded", "items": [{"nodeId": "140126123998144"}, {"nodeId": "140126123998592"}]}, "140126123998144": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533952", "args": [{"nodeId": "140126119713744"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "stream"]}, "140126123998592": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533952", "args": [{"nodeId": ".1.140126023533952"}]}, {"nodeId": ".1.140126023533952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}, "140126124146752": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023533952", "args": [{"nodeId": ".1.140126023533952"}]}, {"nodeId": ".1.140126023533952"}], "returnType": {"nodeId": "140126022934576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}, "140126022934576": {"type": "Union", "items": [{"nodeId": ".1.140126023533952"}, {"nodeId": "N"}]}, "140126023534288": {"type": "Concrete", "module": "logging", "simpleName": "FileHandler", "members": [{"kind": "Variable", "name": "baseFilename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126027994880"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126028000368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124147648"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124148544"}, "name": "_open"}], "typeVars": [], "bases": [{"nodeId": "140126023533952", "args": [{"nodeId": "140126115190752"}]}], "isAbstract": false}, "140126027994880": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126028000368": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126124147648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023534288"}, {"nodeId": "140126022934688"}, {"nodeId": "140126119317840"}, {"nodeId": "140126022934800"}, {"nodeId": "140126325562992"}, {"nodeId": "140126022934912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "mode", "encoding", "delay", "errors"]}, "140126022934688": {"type": "TypeAlias", "target": {"nodeId": "140126116103104"}}, "140126022934800": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126022934912": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126124148544": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126023534288"}], "returnType": {"nodeId": "140126115190752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}, "140126023534624": {"type": "Concrete", "module": "logging", "simpleName": "NullHandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140126039834096"}], "isAbstract": false}, "140126023535968": {"type": "Concrete", "module": "logging", "simpleName": "StrFormatStyle", "members": [{"kind": "Variable", "name": "fmt_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "field_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126023535632"}], "isAbstract": false}, "140126023536304": {"type": "Concrete", "module": "logging", "simpleName": "StringTemplateStyle", "members": [{"kind": "Variable", "name": "_tpl", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111605344"}, "isInitializedInClass": true}], "typeVars": [], "bases": [{"nodeId": "140126023535632"}], "isAbstract": false}, "140126111605344": {"type": "Concrete", "module": "string", "simpleName": "Template", "members": [{"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "delimiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "idpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "braceidpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111394032"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126111296736"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128394688"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128395136"}, "name": "substitute"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128395584"}, "name": "safe_substitute"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111394032": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128394688": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605344"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}, "140126128395136": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605344"}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}, "140126128395584": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605344"}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126325561984"}]}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}, "140126115695632": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126119324896"}], "isAbstract": false}, "140126115695968": {"type": "Concrete", "module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115695632"}], "isAbstract": false}, "140126115696304": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115695968"}], "isAbstract": false}, "140126115696640": {"type": "Concrete", "module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115695968"}], "isAbstract": false}, "140126115696976": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115695632"}, {"nodeId": "140126119593008"}], "isAbstract": false}, "140126115697312": {"type": "Concrete", "module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115695632"}], "isAbstract": false}, "140126115697984": {"type": "Concrete", "module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115698320": {"type": "Concrete", "module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115698656": {"type": "Concrete", "module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115698992": {"type": "Concrete", "module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115699328": {"type": "Concrete", "module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115699664": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115700000": {"type": "Concrete", "module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115700336": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115700672": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115701008": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115701344": {"type": "Concrete", "module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115701680": {"type": "Concrete", "module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115702016": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115697648"}], "isAbstract": false}, "140126115702352": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126115702688": {"type": "Concrete", "module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126115703024": {"type": "Concrete", "module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124410016"}, "name": "__init__"}], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126124410016": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115703024"}, {"nodeId": "140126103458576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}, "140126103458576": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126115703360": {"type": "Concrete", "module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126115703696": {"type": "Concrete", "module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126115704032": {"type": "Concrete", "module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140126115702016"}], "isAbstract": false}, "140126115693616": {"type": "Concrete", "module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124415392"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124415840"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124416288"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124416736"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124417184"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140126115693280"}], "isAbstract": false}, "140126124415392": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693616"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126103235248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140126103235248": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126124415840": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103235472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126103235472": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126124416288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103235584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126103235584": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126115695296"}]}, "140126115695296": {"type": "Concrete", "module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128402528"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128402976"}, "name": "append"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128403424"}, "name": "encode"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128403872"}, "name": "__eq__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128404320"}, "name": "__ne__"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126128402528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115695296"}, {"nodeId": "140126103456336"}, {"nodeId": "140126103456448"}, {"nodeId": "140126103456560"}, {"nodeId": "140126103456672"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "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"]}, "140126103456336": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103456448": {"type": "Union", "items": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126103456560": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126103456672": {"type": "Union", "items": [{"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128402976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115695296"}, {"nodeId": "140126103456784"}, {"nodeId": "140126103456896"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}, "140126103456784": {"type": "Union", "items": [{"nodeId": "140126119716096"}, {"nodeId": "140126119716432"}, {"nodeId": "140126119317840"}]}, "140126103456896": {"type": "Union", "items": [{"nodeId": "140126115704704"}, {"nodeId": "140126119317840"}, {"nodeId": "N"}]}, "140126128403424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115695296"}, {"nodeId": "140126119317840"}, {"nodeId": "140126103457008"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}, "140126103457008": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126128403872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115695296"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126128404320": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115695296"}, {"nodeId": "140126325561984"}], "returnType": {"nodeId": "140126325562992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126124416736": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126124417184": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693616"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126115693952": {"type": "Concrete", "module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126128561440"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126115704368"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124417632"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124418080"}, "name": "header_source_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124418528"}, "name": "header_store_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124418976"}, "name": "header_fetch_parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124419424"}, "name": "fold"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124419872"}, "name": "fold_binary"}], "typeVars": [], "bases": [{"nodeId": "140126115693280"}], "isAbstract": false}, "140126128561440": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126124417632": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126103235696"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126103235808"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119317840"}, {"nodeId": "140126102924512"}, {"nodeId": "140126115704368"}], "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"]}, "140126103235696": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126103235808": {"type": "Union", "items": [{"nodeId": "140126102924288"}, {"nodeId": "N"}]}, "140126102924288": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693280"}], "returnType": {"nodeId": "140126115694288"}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140126102924512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}, "140126124418080": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126103236032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}, "140126103236032": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126124418528": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126103236256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126103236256": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}, "140126124418976": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126124419424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126124419872": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126115693952"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119716096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}, "140126111606016": {"type": "Concrete", "module": "textwrap", "simpleName": "TextWrapper", "members": [{"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126325562992"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126044806096"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "sentence_end_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "wordsep_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "wordsep_simple_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126120032768", "args": [{"nodeId": "140126119317840"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "unicode_whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}]}, "isInitializedInClass": true}, {"kind": "Variable", "name": "uspace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": true}, {"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": true}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124421888"}, "name": "__init__"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124422336"}, "name": "_munge_whitespace"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124422784"}, "name": "_split"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124423232"}, "name": "_fix_sentence_endings"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "reversed_chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cur_line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "cur_len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124423680"}, "name": "_handle_long_word"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124424128"}, "name": "_wrap_chunks"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126124424576"}, "name": "_split_chunks"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128390208"}, "name": "wrap"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128390656"}, "name": "fill"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126044806096": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126124421888": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126325562992"}, {"nodeId": "140126119316160"}, {"nodeId": "140126044805984"}, {"nodeId": "140126119317840"}], "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"]}, "140126044805984": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "N"}]}, "140126124422336": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}, "140126124422784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}, "140126124423232": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}, "140126124423680": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "reversed_chunks", "cur_line", "cur_len", "width"]}, "140126124424128": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}, "140126124424576": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}, "140126128390208": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}, "140126128390656": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111606016"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}, "140126111605680": {"type": "Concrete", "module": "string", "simpleName": "Formatter", "members": [{"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111398624"}, "items": [{"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "format"}, {"kind": "OverloadedFuncDef", "type": {"nodeId": "140126111389888"}, "items": [{"kind": "Variable", "name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "name": "vformat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "recursion_depth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "auto_arg_index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128398720"}, "name": "_vformat"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128399168"}, "name": "parse"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "field_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128399616"}, "name": "get_field"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128400064"}, "name": "get_value"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128400512"}, "name": "check_unused_args"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128400960"}, "name": "format_field"}, {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}, {"kind": "Variable", "name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126128401408"}, "name": "convert_field"}], "typeVars": [], "bases": [{"nodeId": "140126325561984"}], "isAbstract": false}, "140126111398624": {"type": "Overloaded", "items": [{"nodeId": "140126128396928"}, {"nodeId": "140126128397376"}]}, "140126128396928": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}, "140126128397376": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}, "140126111389888": {"type": "Overloaded", "items": [{"nodeId": "140126128397824"}, {"nodeId": "140126128398272"}]}, "140126128397824": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "140126119317840"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}, "140126128398272": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140126119317840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}, "140126128398720": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, {"nodeId": "140126119716768", "args": [{"nodeId": "140126044800496"}]}, {"nodeId": "140126119316160"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126044800720"}, "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"]}, "140126044800496": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126044800720": {"type": "Tuple", "items": [{"nodeId": "140126119317840"}, {"nodeId": "140126119316160"}]}, "140126128399168": {"type": "Function", "typeVars": [".-1.140126128399168"], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": ".-1.140126128399168"}], "returnType": {"nodeId": "140126325566688", "args": [{"nodeId": "140126044801280"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_string"]}, ".-1.140126128399168": {"type": "TypeVar", "varName": "StrOrLiteralStr", "values": [{"nodeId": "140126119317840"}, {"nodeId": "140126119317840"}], "upperBound": {"nodeId": "140126325561984"}, "def": "140126128399168", "variance": "INVARIANT"}, "140126044801280": {"type": "Tuple", "items": [{"nodeId": ".-1.140126128399168"}, {"nodeId": "140126044800832"}, {"nodeId": "140126044800944"}, {"nodeId": "140126044801056"}]}, "140126044800832": {"type": "Union", "items": [{"nodeId": ".-1.140126128399168"}, {"nodeId": "N"}]}, "140126044800944": {"type": "Union", "items": [{"nodeId": ".-1.140126128399168"}, {"nodeId": "N"}]}, "140126044801056": {"type": "Union", "items": [{"nodeId": ".-1.140126128399168"}, {"nodeId": "N"}]}, "140126128399616": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119317840"}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "field_name", "args", "kwargs"]}, "140126128400064": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126044801728"}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "args", "kwargs"]}, "140126044801728": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126128400512": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "140126119716768", "args": [{"nodeId": "140126044802176"}]}, {"nodeId": "140126325570384", "args": [{"nodeId": "A"}]}, {"nodeId": "140126119313808", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "used_args", "args", "kwargs"]}, "140126044802176": {"type": "Union", "items": [{"nodeId": "140126119316160"}, {"nodeId": "140126119317840"}]}, "140126128400960": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "A"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "format_spec"]}, "140126128401408": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126111605680"}, {"nodeId": "A"}, {"nodeId": "140126119317840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "conversion"]}, "140126141090944": {"type": "Overloaded", "items": [{"nodeId": "140125941878560"}, {"nodeId": "140125941875648"}, {"nodeId": "140125941875424"}, {"nodeId": "140125941885056"}]}, "140125941878560": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}, "140125941875648": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}, "140125941875424": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050448", "args": [{"nodeId": "0"}, {"nodeId": "140126119316160"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125941885056": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566688", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125941399024": {"type": "Overloaded", "items": [{"nodeId": "140125941885952"}, {"nodeId": "140125941878784"}, {"nodeId": "140125941886624"}, {"nodeId": "140125941888192"}]}, "140125941885952": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}, "140125941878784": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "140126119316160"}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "140126119317840"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}, "140125941886624": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126116050448", "args": [{"nodeId": "0"}, {"nodeId": "140126119316160"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125941888192": {"type": "Function", "typeVars": [], "argTypes": [{"nodeId": "140126325566688", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "140126119708032", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}, "140125941887744": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "140126006462160"}, "argKinds": [], "argNames": []}, "140125940384704": {"type": "Function", "typeVars": [], "argTypes": [], "returnType": {"nodeId": "140126006463168"}, "argKinds": [], "argNames": []}, "140125940386048": {"type": "Function", "typeVars": [".-1.140125940386048"], "argTypes": [{"nodeId": "140126325566016", "args": [{"nodeId": ".-1.140125940386048"}]}], "returnType": {"nodeId": ".-1.140125940386048"}, "argKinds": ["ARG_POS"], "argNames": [null]}, ".-1.140125940386048": {"type": "TypeVar", "varName": "T", "values": [], "upperBound": {"nodeId": "140126325561984"}, "def": "140125940386048", "variance": "INVARIANT"}}, "types": {"subtypes": [{"startOffset": 226, "endOffset": 226, "line": 13, "type": {"nodeId": "140125941350096"}}, {"startOffset": 205, "endOffset": 223, "line": 13, "type": {"nodeId": "140126141090944"}}, {"startOffset": 325, "endOffset": 325, "line": 18, "type": {"nodeId": "140125941350208"}}, {"startOffset": 304, "endOffset": 322, "line": 18, "type": {"nodeId": "140125941399024"}}, {"startOffset": 372, "endOffset": 375, "line": 22, "type": {"nodeId": "N"}}, {"startOffset": 390, "endOffset": 390, "line": 25, "type": {"nodeId": "140125941887744"}}, {"startOffset": 379, "endOffset": 388, "line": 25, "type": {"nodeId": "140125941635040"}}, {"startOffset": 510, "endOffset": 513, "line": 35, "type": {"nodeId": "140126006463168"}}, {"startOffset": 558, "endOffset": 561, "line": 39, "type": {"nodeId": "N"}}, {"startOffset": 576, "endOffset": 580, "line": 42, "type": {"nodeId": "140125940384704"}}, {"startOffset": 565, "endOffset": 574, "line": 42, "type": {"nodeId": "140126086304416"}}, {"startOffset": 587, "endOffset": 587, "line": 45, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}}, {"startOffset": 674, "endOffset": 674, "line": 52, "type": {"nodeId": "140126325566016", "args": [{"nodeId": "0"}]}}, {"startOffset": 670, "endOffset": 672, "line": 52, "type": {"nodeId": "140125940386048"}}, {"startOffset": 678, "endOffset": 679, "line": 55, "type": {"nodeId": "140126119316160"}}]}, "definitions": {"subtypes": {"__name__": {"kind": "Variable", "name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, "__doc__": {"kind": "Variable", "name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, "__file__": {"kind": "Variable", "name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, "__package__": {"kind": "Variable", "name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119317840"}, "isInitializedInClass": false}, "__annotations__": {"kind": "Variable", "name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319520", "args": [{"nodeId": "140126119317840"}, {"nodeId": "A"}]}, "isInitializedInClass": false}, "P": {"kind": "ClassDef", "type": {"nodeId": "140126006461824"}}, "S": {"kind": "ClassDef", "type": {"nodeId": "140126006462160"}}, "S1": {"kind": "ClassDef", "type": {"nodeId": "140126006462496"}}, "func_for_P": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125941635040"}, "name": "func_for_P"}, "R": {"kind": "ClassDef", "type": {"nodeId": "140126006462832"}}, "RImpl": {"kind": "ClassDef", "type": {"nodeId": "140126006463168"}}, "func_for_R": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140126086304416"}, "name": "func_for_R"}, "a": {"kind": "Variable", "name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119319184", "args": [{"nodeId": "140126119316160"}]}, "isInitializedInClass": false}, "func_abs": {"kind": "FuncDef", "args": [{"kind": "Variable", "name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}], "type": {"nodeId": "140125941609440"}, "name": "func_abs"}, "b": {"kind": "Variable", "name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "140126119316160"}, "isInitializedInClass": false}}, "collections": {"UserDict": {"kind": "ClassDef", "type": {"nodeId": "140126119719120"}}, "UserList": {"kind": "ClassDef", "type": {"nodeId": "140126119719456"}}, "UserString": {"kind": "ClassDef", "type": {"nodeId": "140126119719792"}}, "deque": {"kind": "ClassDef", "type": {"nodeId": "140126119720128"}}, "Counter": {"kind": "ClassDef", "type": {"nodeId": "140126119708032"}}, "_OrderedDictKeysView": {"kind": "ClassDef", "type": {"nodeId": "140126116038688"}}, "_OrderedDictItemsView": {"kind": "ClassDef", "type": {"nodeId": "140126116039024"}}, "_OrderedDictValuesView": {"kind": "ClassDef", "type": {"nodeId": "140126116039360"}}, "_odict_keys": {"kind": "ClassDef", "type": {"nodeId": "140126119720464"}}, "_odict_items": {"kind": "ClassDef", "type": {"nodeId": "140126119720800"}}, "_odict_values": {"kind": "ClassDef", "type": {"nodeId": "140126119721136"}}, "OrderedDict": {"kind": "ClassDef", "type": {"nodeId": "140126119721472"}}, "defaultdict": {"kind": "ClassDef", "type": {"nodeId": "140126119708368"}}, "ChainMap": {"kind": "ClassDef", "type": {"nodeId": "140126119721808"}}}, "numpy": {"PytestTester": {"kind": "ClassDef", "type": {"nodeId": "140126039832752"}}, "_ctypes": {"kind": "ClassDef", "type": {"nodeId": "140126014943440"}}, "_SupportsArray": {"kind": "ClassDef", "type": {"nodeId": "140126014477296"}}, "_NestedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126023538320"}}, "_UnknownType": {"kind": "ClassDef", "type": {"nodeId": "140126014477968"}}, "_SupportsDType": {"kind": "ClassDef", "type": {"nodeId": "140126023548064"}}, "NBitBase": {"kind": "ClassDef", "type": {"nodeId": "140126014478976"}}, "_256Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479312"}}, "_128Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479648"}}, "_96Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479984"}}, "_80Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480320"}}, "_64Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480656"}}, "_32Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480992"}}, "_16Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014481328"}}, "_8Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014481664"}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697632"}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697968"}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698304"}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698640"}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010698976"}}, "_BoolOp": {"kind": "ClassDef", "type": {"nodeId": "140126014935376"}}, "_BoolBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014935712"}}, "_BoolSub": {"kind": "ClassDef", "type": {"nodeId": "140126014936048"}}, "_BoolTrueDiv": {"kind": "ClassDef", "type": {"nodeId": "140126014936384"}}, "_BoolMod": {"kind": "ClassDef", "type": {"nodeId": "140126014936720"}}, "_BoolDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014937056"}}, "_TD64Div": {"kind": "ClassDef", "type": {"nodeId": "140126014937392"}}, "_IntTrueDiv": {"kind": "ClassDef", "type": {"nodeId": "140126014937728"}}, "_UnsignedIntOp": {"kind": "ClassDef", "type": {"nodeId": "140126014938064"}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014938400"}}, "_UnsignedIntMod": {"kind": "ClassDef", "type": {"nodeId": "140126014938736"}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014939072"}}, "_SignedIntOp": {"kind": "ClassDef", "type": {"nodeId": "140126014939408"}}, "_SignedIntBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014939744"}}, "_SignedIntMod": {"kind": "ClassDef", "type": {"nodeId": "140126014940080"}}, "_SignedIntDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014940416"}}, "_FloatOp": {"kind": "ClassDef", "type": {"nodeId": "140126014940752"}}, "_FloatMod": {"kind": "ClassDef", "type": {"nodeId": "140126014941088"}}, "_FloatDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014941424"}}, "_ComplexOp": {"kind": "ClassDef", "type": {"nodeId": "140126014941760"}}, "_NumberOp": {"kind": "ClassDef", "type": {"nodeId": "140126014942096"}}, "_ComparisonOp": {"kind": "ClassDef", "type": {"nodeId": "140126014943104"}}, "flagsobj": {"kind": "ClassDef", "type": {"nodeId": "140126014934032"}}, "Arrayterator": {"kind": "ClassDef", "type": {"nodeId": "140126010700992"}}, "_IOProtocol": {"kind": "ClassDef", "type": {"nodeId": "140126014943776"}}, "_MemMapIOProtocol": {"kind": "ClassDef", "type": {"nodeId": "140126014944112"}}, "_SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140126014944448"}}, "dtype": {"kind": "ClassDef", "type": {"nodeId": "140126010702336"}}, "flatiter": {"kind": "ClassDef", "type": {"nodeId": "140126010702672"}}, "_ArrayOrScalarCommon": {"kind": "ClassDef", "type": {"nodeId": "140126014944784"}}, "_SupportsItem": {"kind": "ClassDef", "type": {"nodeId": "140126014945120"}}, "_SupportsReal": {"kind": "ClassDef", "type": {"nodeId": "140126014945456"}}, "_SupportsImag": {"kind": "ClassDef", "type": {"nodeId": "140126014945792"}}, "ndarray": {"kind": "ClassDef", "type": {"nodeId": "140126014946128"}}, "generic": {"kind": "ClassDef", "type": {"nodeId": "140126014946464"}}, "number": {"kind": "ClassDef", "type": {"nodeId": "140126014946800"}}, "bool_": {"kind": "ClassDef", "type": {"nodeId": "140126010277952"}}, "object_": {"kind": "ClassDef", "type": {"nodeId": "140126010278288"}}, "_DatetimeScalar": {"kind": "ClassDef", "type": {"nodeId": "140126010278624"}}, "datetime64": {"kind": "ClassDef", "type": {"nodeId": "140126010278960"}}, "integer": {"kind": "ClassDef", "type": {"nodeId": "140126010279296"}}, "signedinteger": {"kind": "ClassDef", "type": {"nodeId": "140126010279632"}}, "timedelta64": {"kind": "ClassDef", "type": {"nodeId": "140126010279968"}}, "unsignedinteger": {"kind": "ClassDef", "type": {"nodeId": "140126010280304"}}, "inexact": {"kind": "ClassDef", "type": {"nodeId": "140126010280640"}}, "floating": {"kind": "ClassDef", "type": {"nodeId": "140126010280976"}}, "complexfloating": {"kind": "ClassDef", "type": {"nodeId": "140126010281312"}}, "flexible": {"kind": "ClassDef", "type": {"nodeId": "140126010281648"}}, "void": {"kind": "ClassDef", "type": {"nodeId": "140126010281984"}}, "character": {"kind": "ClassDef", "type": {"nodeId": "140126010282320"}}, "bytes_": {"kind": "ClassDef", "type": {"nodeId": "140126010282656"}}, "str_": {"kind": "ClassDef", "type": {"nodeId": "140126010282992"}}, "ufunc": {"kind": "ClassDef", "type": {"nodeId": "140126010283328"}}, "_CopyMode": {"kind": "ClassDef", "type": {"nodeId": "140126010283664"}}, "ModuleDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140126010284000"}}, "VisibleDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140126010284336"}}, "ComplexWarning": {"kind": "ClassDef", "type": {"nodeId": "140126010284672"}}, "RankWarning": {"kind": "ClassDef", "type": {"nodeId": "140126010285008"}}, "TooHardError": {"kind": "ClassDef", "type": {"nodeId": "140126010285344"}}, "AxisError": {"kind": "ClassDef", "type": {"nodeId": "140126010285680"}}, "errstate": {"kind": "ClassDef", "type": {"nodeId": "140126010286016"}}, "ndenumerate": {"kind": "ClassDef", "type": {"nodeId": "140126010703008"}}, "ndindex": {"kind": "ClassDef", "type": {"nodeId": "140126010286352"}}, "DataSource": {"kind": "ClassDef", "type": {"nodeId": "140126010286688"}}, "broadcast": {"kind": "ClassDef", "type": {"nodeId": "140126010287024"}}, "busdaycalendar": {"kind": "ClassDef", "type": {"nodeId": "140126010287360"}}, "finfo": {"kind": "ClassDef", "type": {"nodeId": "140126010703344"}}, "iinfo": {"kind": "ClassDef", "type": {"nodeId": "140126010287696"}}, "format_parser": {"kind": "ClassDef", "type": {"nodeId": "140126010288032"}}, "recarray": {"kind": "ClassDef", "type": {"nodeId": "140126010288368"}}, "record": {"kind": "ClassDef", "type": {"nodeId": "140126010288704"}}, "nditer": {"kind": "ClassDef", "type": {"nodeId": "140126010289040"}}, "memmap": {"kind": "ClassDef", "type": {"nodeId": "140126010289376"}}, "vectorize": {"kind": "ClassDef", "type": {"nodeId": "140126010289712"}}, "poly1d": {"kind": "ClassDef", "type": {"nodeId": "140126010290048"}}, "matrix": {"kind": "ClassDef", "type": {"nodeId": "140126010290384"}}, "chararray": {"kind": "ClassDef", "type": {"nodeId": "140126010290720"}}, "_SupportsDLPack": {"kind": "ClassDef", "type": {"nodeId": "140126010291056"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140126120018992"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140126325563664"}}, "_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140126325564000"}}, "ParamSpecArgs": {"kind": "ClassDef", "type": {"nodeId": "140126325564336"}}, "ParamSpecKwargs": {"kind": "ClassDef", "type": {"nodeId": "140126325564672"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140126325565008"}}, "NewType": {"kind": "ClassDef", "type": {"nodeId": "140126325565344"}}, "_Alias": {"kind": "ClassDef", "type": {"nodeId": "140126325565680"}}, "_ProtocolMeta": {"kind": "ClassDef", "type": {"nodeId": "140126119708704"}}, "SupportsInt": {"kind": "ClassDef", "type": {"nodeId": "140126119709040"}}, "SupportsFloat": {"kind": "ClassDef", "type": {"nodeId": "140126119709376"}}, "SupportsComplex": {"kind": "ClassDef", "type": {"nodeId": "140126119709712"}}, "SupportsBytes": {"kind": "ClassDef", "type": {"nodeId": "140126119710048"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140126119710384"}}, "SupportsAbs": {"kind": "ClassDef", "type": {"nodeId": "140126325566016"}}, "SupportsRound": {"kind": "ClassDef", "type": {"nodeId": "140126325566352"}}, "Sized": {"kind": "ClassDef", "type": {"nodeId": "140126119710720"}}, "Hashable": {"kind": "ClassDef", "type": {"nodeId": "140126119711056"}}, "Iterable": {"kind": "ClassDef", "type": {"nodeId": "140126325566688"}}, "Iterator": {"kind": "ClassDef", "type": {"nodeId": "140126325567024"}}, "Reversible": {"kind": "ClassDef", "type": {"nodeId": "140126325567360"}}, "Generator": {"kind": "ClassDef", "type": {"nodeId": "140126325567696"}}, "Awaitable": {"kind": "ClassDef", "type": {"nodeId": "140126325568032"}}, "Coroutine": {"kind": "ClassDef", "type": {"nodeId": "140126325568368"}}, "AwaitableGenerator": {"kind": "ClassDef", "type": {"nodeId": "140126119711392"}}, "AsyncIterable": {"kind": "ClassDef", "type": {"nodeId": "140126325568704"}}, "AsyncIterator": {"kind": "ClassDef", "type": {"nodeId": "140126325569040"}}, "AsyncGenerator": {"kind": "ClassDef", "type": {"nodeId": "140126325569376"}}, "Container": {"kind": "ClassDef", "type": {"nodeId": "140126325569712"}}, "Collection": {"kind": "ClassDef", "type": {"nodeId": "140126325570048"}}, "Sequence": {"kind": "ClassDef", "type": {"nodeId": "140126325570384"}}, "MutableSequence": {"kind": "ClassDef", "type": {"nodeId": "140126325570720"}}, "AbstractSet": {"kind": "ClassDef", "type": {"nodeId": "140126325571056"}}, "MutableSet": {"kind": "ClassDef", "type": {"nodeId": "140126119313472"}}, "MappingView": {"kind": "ClassDef", "type": {"nodeId": "140126119711728"}}, "ItemsView": {"kind": "ClassDef", "type": {"nodeId": "140126119712064"}}, "KeysView": {"kind": "ClassDef", "type": {"nodeId": "140126119712400"}}, "ValuesView": {"kind": "ClassDef", "type": {"nodeId": "140126119712736"}}, "Mapping": {"kind": "ClassDef", "type": {"nodeId": "140126119313808"}}, "MutableMapping": {"kind": "ClassDef", "type": {"nodeId": "140126119314144"}}, "IO": {"kind": "ClassDef", "type": {"nodeId": "140126119713072"}}, "BinaryIO": {"kind": "ClassDef", "type": {"nodeId": "140126119713408"}}, "TextIO": {"kind": "ClassDef", "type": {"nodeId": "140126119713744"}}, "ByteString": {"kind": "ClassDef", "type": {"nodeId": "140126119714080"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140126119714416"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140126119714752"}}, "ForwardRef": {"kind": "ClassDef", "type": {"nodeId": "140126119314480"}}}, "builtins": {"object": {"kind": "ClassDef", "type": {"nodeId": "140126325561984"}}, "bool": {"kind": "ClassDef", "type": {"nodeId": "140126325562992"}}, "function": {"kind": "ClassDef", "type": {"nodeId": "140126325563328"}}, "staticmethod": {"kind": "ClassDef", "type": {"nodeId": "140126119314816"}}, "classmethod": {"kind": "ClassDef", "type": {"nodeId": "140126119315152"}}, "type": {"kind": "ClassDef", "type": {"nodeId": "140126119315488"}}, "super": {"kind": "ClassDef", "type": {"nodeId": "140126119315824"}}, "int": {"kind": "ClassDef", "type": {"nodeId": "140126119316160"}}, "float": {"kind": "ClassDef", "type": {"nodeId": "140126119316496"}}, "complex": {"kind": "ClassDef", "type": {"nodeId": "140126119316832"}}, "_FormatMapMapping": {"kind": "ClassDef", "type": {"nodeId": "140126119317168"}}, "_TranslateTable": {"kind": "ClassDef", "type": {"nodeId": "140126119317504"}}, "str": {"kind": "ClassDef", "type": {"nodeId": "140126119317840"}}, "bytes": {"kind": "ClassDef", "type": {"nodeId": "140126119716096"}}, "bytearray": {"kind": "ClassDef", "type": {"nodeId": "140126119716432"}}, "memoryview": {"kind": "ClassDef", "type": {"nodeId": "140126119318176"}}, "slice": {"kind": "ClassDef", "type": {"nodeId": "140126119318512"}}, "tuple": {"kind": "ClassDef", "type": {"nodeId": "140126119318848"}}, "list": {"kind": "ClassDef", "type": {"nodeId": "140126119319184"}}, "dict": {"kind": "ClassDef", "type": {"nodeId": "140126119319520"}}, "set": {"kind": "ClassDef", "type": {"nodeId": "140126119716768"}}, "frozenset": {"kind": "ClassDef", "type": {"nodeId": "140126119717104"}}, "enumerate": {"kind": "ClassDef", "type": {"nodeId": "140126119717440"}}, "range": {"kind": "ClassDef", "type": {"nodeId": "140126119319856"}}, "property": {"kind": "ClassDef", "type": {"nodeId": "140126119320192"}}, "_NotImplementedType": {"kind": "ClassDef", "type": {"nodeId": "140126119320528"}}, "_PathLike": {"kind": "ClassDef", "type": {"nodeId": "140126111293712"}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "type": {"nodeId": "140126119320864"}}, "filter": {"kind": "ClassDef", "type": {"nodeId": "140126119717776"}}, "_GetItemIterable": {"kind": "ClassDef", "type": {"nodeId": "140126119321200"}}, "map": {"kind": "ClassDef", "type": {"nodeId": "140126119718112"}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "type": {"nodeId": "140126111294048"}}, "_SupportsPow2": {"kind": "ClassDef", "type": {"nodeId": "140126119321536"}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "type": {"nodeId": "140126119321872"}}, "_SupportsPow3": {"kind": "ClassDef", "type": {"nodeId": "140126119322208"}}, "reversed": {"kind": "ClassDef", "type": {"nodeId": "140126119718448"}}, "_SupportsRound1": {"kind": "ClassDef", "type": {"nodeId": "140126119322544"}}, "_SupportsRound2": {"kind": "ClassDef", "type": {"nodeId": "140126119322880"}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "type": {"nodeId": "140126111294384"}}, "zip": {"kind": "ClassDef", "type": {"nodeId": "140126119718784"}}, "ellipsis": {"kind": "ClassDef", "type": {"nodeId": "140126119323216"}}, "BaseException": {"kind": "ClassDef", "type": {"nodeId": "140126119323552"}}, "GeneratorExit": {"kind": "ClassDef", "type": {"nodeId": "140126119323888"}}, "KeyboardInterrupt": {"kind": "ClassDef", "type": {"nodeId": "140126119324224"}}, "SystemExit": {"kind": "ClassDef", "type": {"nodeId": "140126119324560"}}, "Exception": {"kind": "ClassDef", "type": {"nodeId": "140126119324896"}}, "StopIteration": {"kind": "ClassDef", "type": {"nodeId": "140126119325232"}}, "OSError": {"kind": "ClassDef", "type": {"nodeId": "140126119325568"}}, "ArithmeticError": {"kind": "ClassDef", "type": {"nodeId": "140126119325904"}}, "AssertionError": {"kind": "ClassDef", "type": {"nodeId": "140126119326240"}}, "AttributeError": {"kind": "ClassDef", "type": {"nodeId": "140126119326576"}}, "BufferError": {"kind": "ClassDef", "type": {"nodeId": "140126119326912"}}, "EOFError": {"kind": "ClassDef", "type": {"nodeId": "140126119327248"}}, "ImportError": {"kind": "ClassDef", "type": {"nodeId": "140126119327584"}}, "LookupError": {"kind": "ClassDef", "type": {"nodeId": "140126119327920"}}, "MemoryError": {"kind": "ClassDef", "type": {"nodeId": "140126119328256"}}, "NameError": {"kind": "ClassDef", "type": {"nodeId": "140126119328592"}}, "ReferenceError": {"kind": "ClassDef", "type": {"nodeId": "140126119328928"}}, "RuntimeError": {"kind": "ClassDef", "type": {"nodeId": "140126119329264"}}, "StopAsyncIteration": {"kind": "ClassDef", "type": {"nodeId": "140126119592000"}}, "SyntaxError": {"kind": "ClassDef", "type": {"nodeId": "140126119592336"}}, "SystemError": {"kind": "ClassDef", "type": {"nodeId": "140126119592672"}}, "TypeError": {"kind": "ClassDef", "type": {"nodeId": "140126119593008"}}, "ValueError": {"kind": "ClassDef", "type": {"nodeId": "140126119593344"}}, "FloatingPointError": {"kind": "ClassDef", "type": {"nodeId": "140126119593680"}}, "OverflowError": {"kind": "ClassDef", "type": {"nodeId": "140126119594016"}}, "ZeroDivisionError": {"kind": "ClassDef", "type": {"nodeId": "140126119594352"}}, "ModuleNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140126119594688"}}, "IndexError": {"kind": "ClassDef", "type": {"nodeId": "140126119595024"}}, "KeyError": {"kind": "ClassDef", "type": {"nodeId": "140126119595360"}}, "UnboundLocalError": {"kind": "ClassDef", "type": {"nodeId": "140126119595696"}}, "BlockingIOError": {"kind": "ClassDef", "type": {"nodeId": "140126119596032"}}, "ChildProcessError": {"kind": "ClassDef", "type": {"nodeId": "140126119596368"}}, "ConnectionError": {"kind": "ClassDef", "type": {"nodeId": "140126119596704"}}, "BrokenPipeError": {"kind": "ClassDef", "type": {"nodeId": "140126119597040"}}, "ConnectionAbortedError": {"kind": "ClassDef", "type": {"nodeId": "140126119597376"}}, "ConnectionRefusedError": {"kind": "ClassDef", "type": {"nodeId": "140126119597712"}}, "ConnectionResetError": {"kind": "ClassDef", "type": {"nodeId": "140126119598048"}}, "FileExistsError": {"kind": "ClassDef", "type": {"nodeId": "140126119598384"}}, "FileNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140126119598720"}}, "InterruptedError": {"kind": "ClassDef", "type": {"nodeId": "140126119599056"}}, "IsADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140126119599392"}}, "NotADirectoryError": {"kind": "ClassDef", "type": {"nodeId": "140126119599728"}}, "PermissionError": {"kind": "ClassDef", "type": {"nodeId": "140126119600064"}}, "ProcessLookupError": {"kind": "ClassDef", "type": {"nodeId": "140126119600400"}}, "TimeoutError": {"kind": "ClassDef", "type": {"nodeId": "140126119600736"}}, "NotImplementedError": {"kind": "ClassDef", "type": {"nodeId": "140126119601072"}}, "RecursionError": {"kind": "ClassDef", "type": {"nodeId": "140126119601408"}}, "IndentationError": {"kind": "ClassDef", "type": {"nodeId": "140126119601744"}}, "TabError": {"kind": "ClassDef", "type": {"nodeId": "140126119602080"}}, "UnicodeError": {"kind": "ClassDef", "type": {"nodeId": "140126119602416"}}, "UnicodeDecodeError": {"kind": "ClassDef", "type": {"nodeId": "140126119602752"}}, "UnicodeEncodeError": {"kind": "ClassDef", "type": {"nodeId": "140126119603088"}}, "UnicodeTranslateError": {"kind": "ClassDef", "type": {"nodeId": "140126119603424"}}, "Warning": {"kind": "ClassDef", "type": {"nodeId": "140126119603760"}}, "UserWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119604096"}}, "DeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119604432"}}, "SyntaxWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119604768"}}, "RuntimeWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119605104"}}, "FutureWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119605440"}}, "PendingDeprecationWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119605776"}}, "ImportWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119606112"}}, "UnicodeWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119606448"}}, "BytesWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119606784"}}, "ResourceWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119607120"}}, "EncodingWarning": {"kind": "ClassDef", "type": {"nodeId": "140126119607456"}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140126120027728"}}, "_flags": {"kind": "ClassDef", "type": {"nodeId": "140126111294720"}}, "_float_info": {"kind": "ClassDef", "type": {"nodeId": "140126111295056"}}, "_hash_info": {"kind": "ClassDef", "type": {"nodeId": "140126111295392"}}, "_implementation": {"kind": "ClassDef", "type": {"nodeId": "140126120028064"}}, "_int_info": {"kind": "ClassDef", "type": {"nodeId": "140126111295728"}}, "_version_info": {"kind": "ClassDef", "type": {"nodeId": "140126111296064"}}, "UnraisableHookArgs": {"kind": "ClassDef", "type": {"nodeId": "140126120028400"}}, "_asyncgen_hooks": {"kind": "ClassDef", "type": {"nodeId": "140126111296400"}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "type": {"nodeId": "140126119715088"}}, "dict_values": {"kind": "ClassDef", "type": {"nodeId": "140126119715424"}}, "dict_items": {"kind": "ClassDef", "type": {"nodeId": "140126119715760"}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "type": {"nodeId": "140126116044064"}}, "SupportsNext": {"kind": "ClassDef", "type": {"nodeId": "140126116044400"}}, "SupportsAnext": {"kind": "ClassDef", "type": {"nodeId": "140126116044736"}}, "SupportsDunderLT": {"kind": "ClassDef", "type": {"nodeId": "140126116045072"}}, "SupportsDunderGT": {"kind": "ClassDef", "type": {"nodeId": "140126116045408"}}, "SupportsDunderLE": {"kind": "ClassDef", "type": {"nodeId": "140126116045744"}}, "SupportsDunderGE": {"kind": "ClassDef", "type": {"nodeId": "140126116046080"}}, "SupportsAllComparisons": {"kind": "ClassDef", "type": {"nodeId": "140126116046416"}}, "SupportsAdd": {"kind": "ClassDef", "type": {"nodeId": "140126116046752"}}, "SupportsRAdd": {"kind": "ClassDef", "type": {"nodeId": "140126116047088"}}, "SupportsSub": {"kind": "ClassDef", "type": {"nodeId": "140126116047424"}}, "SupportsRSub": {"kind": "ClassDef", "type": {"nodeId": "140126116047760"}}, "SupportsDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126116048096"}}, "SupportsRDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126116048432"}}, "SupportsIter": {"kind": "ClassDef", "type": {"nodeId": "140126116048768"}}, "SupportsAiter": {"kind": "ClassDef", "type": {"nodeId": "140126116049104"}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140126116049440"}}, "SupportsTrunc": {"kind": "ClassDef", "type": {"nodeId": "140126116049776"}}, "SupportsItems": {"kind": "ClassDef", "type": {"nodeId": "140126116050112"}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140126116050448"}}, "SupportsGetItem": {"kind": "ClassDef", "type": {"nodeId": "140126116050784"}}, "SupportsItemAccess": {"kind": "ClassDef", "type": {"nodeId": "140126116051120"}}, "HasFileno": {"kind": "ClassDef", "type": {"nodeId": "140126116051456"}}, "SupportsRead": {"kind": "ClassDef", "type": {"nodeId": "140126116051792"}}, "SupportsReadline": {"kind": "ClassDef", "type": {"nodeId": "140126116052128"}}, "SupportsNoArgReadline": {"kind": "ClassDef", "type": {"nodeId": "140126116052464"}}, "SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140126110990400"}}, "structseq": {"kind": "ClassDef", "type": {"nodeId": "140126110990736"}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "type": {"nodeId": "140126119722144"}}, "_TypedDict": {"kind": "ClassDef", "type": {"nodeId": "140126119722480"}}, "SupportsIndex": {"kind": "ClassDef", "type": {"nodeId": "140126120017984"}}, "NamedTuple": {"kind": "ClassDef", "type": {"nodeId": "140126120018320"}}, "TypeVar": {"kind": "ClassDef", "type": {"nodeId": "140126120018656"}}, "ParamSpec": {"kind": "ClassDef", "type": {"nodeId": "140126120018992"}}, "TypeVarTuple": {"kind": "ClassDef", "type": {"nodeId": "140126120019328"}}}, "types": {"_Cell": {"kind": "ClassDef", "type": {"nodeId": "140126120019664"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140126120020000"}}, "CodeType": {"kind": "ClassDef", "type": {"nodeId": "140126120020336"}}, "MappingProxyType": {"kind": "ClassDef", "type": {"nodeId": "140126120020672"}}, "SimpleNamespace": {"kind": "ClassDef", "type": {"nodeId": "140126120021008"}}, "_LoaderProtocol": {"kind": "ClassDef", "type": {"nodeId": "140126120021344"}}, "ModuleType": {"kind": "ClassDef", "type": {"nodeId": "140126120021680"}}, "GeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140126120022016"}}, "AsyncGeneratorType": {"kind": "ClassDef", "type": {"nodeId": "140126120022352"}}, "CoroutineType": {"kind": "ClassDef", "type": {"nodeId": "140126120022688"}}, "_StaticFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140126120023024"}}, "MethodType": {"kind": "ClassDef", "type": {"nodeId": "140126120023360"}}, "BuiltinFunctionType": {"kind": "ClassDef", "type": {"nodeId": "140126120023696"}}, "WrapperDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140126120024032"}}, "MethodWrapperType": {"kind": "ClassDef", "type": {"nodeId": "140126120024368"}}, "MethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140126120024704"}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140126120025040"}}, "TracebackType": {"kind": "ClassDef", "type": {"nodeId": "140126120025376"}}, "FrameType": {"kind": "ClassDef", "type": {"nodeId": "140126120025712"}}, "GetSetDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140126120026048"}}, "MemberDescriptorType": {"kind": "ClassDef", "type": {"nodeId": "140126120026384"}}, "GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "140126120026720"}}, "NoneType": {"kind": "ClassDef", "type": {"nodeId": "140126120027056"}}, "UnionType": {"kind": "ClassDef", "type": {"nodeId": "140126120027392"}}}, "numpy.core._internal": {"_ctypes": {"kind": "ClassDef", "type": {"nodeId": "140126014943440"}}}, "numpy._typing._callable": {"_BoolOp": {"kind": "ClassDef", "type": {"nodeId": "140126014935376"}}, "_BoolBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014935712"}}, "_BoolSub": {"kind": "ClassDef", "type": {"nodeId": "140126014936048"}}, "_BoolTrueDiv": {"kind": "ClassDef", "type": {"nodeId": "140126014936384"}}, "_BoolMod": {"kind": "ClassDef", "type": {"nodeId": "140126014936720"}}, "_BoolDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014937056"}}, "_TD64Div": {"kind": "ClassDef", "type": {"nodeId": "140126014937392"}}, "_IntTrueDiv": {"kind": "ClassDef", "type": {"nodeId": "140126014937728"}}, "_UnsignedIntOp": {"kind": "ClassDef", "type": {"nodeId": "140126014938064"}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014938400"}}, "_UnsignedIntMod": {"kind": "ClassDef", "type": {"nodeId": "140126014938736"}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014939072"}}, "_SignedIntOp": {"kind": "ClassDef", "type": {"nodeId": "140126014939408"}}, "_SignedIntBitOp": {"kind": "ClassDef", "type": {"nodeId": "140126014939744"}}, "_SignedIntMod": {"kind": "ClassDef", "type": {"nodeId": "140126014940080"}}, "_SignedIntDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014940416"}}, "_FloatOp": {"kind": "ClassDef", "type": {"nodeId": "140126014940752"}}, "_FloatMod": {"kind": "ClassDef", "type": {"nodeId": "140126014941088"}}, "_FloatDivMod": {"kind": "ClassDef", "type": {"nodeId": "140126014941424"}}, "_ComplexOp": {"kind": "ClassDef", "type": {"nodeId": "140126014941760"}}, "_NumberOp": {"kind": "ClassDef", "type": {"nodeId": "140126014942096"}}, "_SupportsLT": {"kind": "ClassDef", "type": {"nodeId": "140126014942432"}}, "_SupportsGT": {"kind": "ClassDef", "type": {"nodeId": "140126014942768"}}, "_ComparisonOp": {"kind": "ClassDef", "type": {"nodeId": "140126014943104"}}}, "numpy.core.records": {"_SupportsReadInto": {"kind": "ClassDef", "type": {"nodeId": "140126010691920"}}}, "numpy.core.multiarray": {"_SupportsLenAndGetItem": {"kind": "ClassDef", "type": {"nodeId": "140126014933696"}}, "flagsobj": {"kind": "ClassDef", "type": {"nodeId": "140126014934032"}}}, "numpy.core.numerictypes": {"_CastFunc": {"kind": "ClassDef", "type": {"nodeId": "140126014933024"}}, "_typedict": {"kind": "ClassDef", "type": {"nodeId": "140126010701328"}}}, "numpy.lib.arraypad": {"_ModeFunc": {"kind": "ClassDef", "type": {"nodeId": "140126014932688"}}}, "numpy.lib.arrayterator": {"Arrayterator": {"kind": "ClassDef", "type": {"nodeId": "140126010700992"}}}, "numpy.lib.function_base": {"_TrimZerosSequence": {"kind": "ClassDef", "type": {"nodeId": "140126014932016"}}, "_SupportsWriteFlush": {"kind": "ClassDef", "type": {"nodeId": "140126014932352"}}}, "numpy.lib.index_tricks": {"nd_grid": {"kind": "ClassDef", "type": {"nodeId": "140126014487040"}}, "MGridClass": {"kind": "ClassDef", "type": {"nodeId": "140126014487376"}}, "OGridClass": {"kind": "ClassDef", "type": {"nodeId": "140126014487712"}}, "AxisConcatenator": {"kind": "ClassDef", "type": {"nodeId": "140126014488048"}}, "RClass": {"kind": "ClassDef", "type": {"nodeId": "140126014931008"}}, "CClass": {"kind": "ClassDef", "type": {"nodeId": "140126014931344"}}, "IndexExpression": {"kind": "ClassDef", "type": {"nodeId": "140126014931680"}}}, "numpy.lib.npyio": {"_SupportsGetItem": {"kind": "ClassDef", "type": {"nodeId": "140126014485024"}}, "_SupportsRead": {"kind": "ClassDef", "type": {"nodeId": "140126014485360"}}, "_SupportsReadSeek": {"kind": "ClassDef", "type": {"nodeId": "140126014485696"}}, "_SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140126014486032"}}, "BagObj": {"kind": "ClassDef", "type": {"nodeId": "140126014486368"}}, "NpzFile": {"kind": "ClassDef", "type": {"nodeId": "140126014486704"}}}, "numpy.lib.shape_base": {"_ArrayWrap": {"kind": "ClassDef", "type": {"nodeId": "140126014483680"}}, "_ArrayPrepare": {"kind": "ClassDef", "type": {"nodeId": "140126014484016"}}, "_SupportsArrayWrap": {"kind": "ClassDef", "type": {"nodeId": "140126014484352"}}, "_SupportsArrayPrepare": {"kind": "ClassDef", "type": {"nodeId": "140126014484688"}}}, "numpy.lib.stride_tricks": {"DummyArray": {"kind": "ClassDef", "type": {"nodeId": "140126014483344"}}}, "numpy.lib.type_check": {"_SupportsReal": {"kind": "ClassDef", "type": {"nodeId": "140126014482672"}}, "_SupportsImag": {"kind": "ClassDef", "type": {"nodeId": "140126014483008"}}}, "numpy.lib.utils": {"_SupportsWrite": {"kind": "ClassDef", "type": {"nodeId": "140126014482000"}}, "_Deprecate": {"kind": "ClassDef", "type": {"nodeId": "140126014482336"}}}, "numpy._pytesttester": {"PytestTester": {"kind": "ClassDef", "type": {"nodeId": "140126039832752"}}}, "numpy._typing": {"NBitBase": {"kind": "ClassDef", "type": {"nodeId": "140126014478976"}}, "_256Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479312"}}, "_128Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479648"}}, "_96Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014479984"}}, "_80Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480320"}}, "_64Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480656"}}, "_32Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014480992"}}, "_16Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014481328"}}, "_8Bit": {"kind": "ClassDef", "type": {"nodeId": "140126014481664"}}, "_NestedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126023538320"}}, "_SupportsDType": {"kind": "ClassDef", "type": {"nodeId": "140126023548064"}}, "_SupportsArray": {"kind": "ClassDef", "type": {"nodeId": "140126014477296"}}, "_SupportsArrayFunc": {"kind": "ClassDef", "type": {"nodeId": "140126014477632"}}, "_UnknownType": {"kind": "ClassDef", "type": {"nodeId": "140126014477968"}}, "_GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "140126023547056"}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697632"}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697968"}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698304"}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698640"}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010698976"}}}, "numpy.ctypeslib": {"_ndptr": {"kind": "ClassDef", "type": {"nodeId": "140126014478304"}}, "_concrete_ndptr": {"kind": "ClassDef", "type": {"nodeId": "140126014478640"}}}, "numpy.lib": {"NumpyVersion": {"kind": "ClassDef", "type": {"nodeId": "140126039823008"}}, "Arrayterator": {"kind": "ClassDef", "type": {"nodeId": "140126010700992"}}}, "numpy.linalg": {"LinAlgError": {"kind": "ClassDef", "type": {"nodeId": "140126010691584"}}}, "numpy.ma": {"MAError": {"kind": "ClassDef", "type": {"nodeId": "140126014472256"}}, "MaskError": {"kind": "ClassDef", "type": {"nodeId": "140126014472592"}}, "MaskedArray": {"kind": "ClassDef", "type": {"nodeId": "140126010699312"}}, "mvoid": {"kind": "ClassDef", "type": {"nodeId": "140126010699648"}}}, "numpy.polynomial": {"Chebyshev": {"kind": "ClassDef", "type": {"nodeId": "140126010690912"}}, "Hermite": {"kind": "ClassDef", "type": {"nodeId": "140126010690576"}}, "HermiteE": {"kind": "ClassDef", "type": {"nodeId": "140126010690240"}}, "Laguerre": {"kind": "ClassDef", "type": {"nodeId": "140126010689904"}}, "Legendre": {"kind": "ClassDef", "type": {"nodeId": "140126010689568"}}, "Polynomial": {"kind": "ClassDef", "type": {"nodeId": "140126010689232"}}}, "numpy.random": {"Generator": {"kind": "ClassDef", "type": {"nodeId": "140126010696960"}}, "MT19937": {"kind": "ClassDef", "type": {"nodeId": "140126010696624"}}, "PCG64": {"kind": "ClassDef", "type": {"nodeId": "140126010695280"}}, "PCG64DXSM": {"kind": "ClassDef", "type": {"nodeId": "140126010695616"}}, "Philox": {"kind": "ClassDef", "type": {"nodeId": "140126010694272"}}, "SFC64": {"kind": "ClassDef", "type": {"nodeId": "140126010693264"}}, "BitGenerator": {"kind": "ClassDef", "type": {"nodeId": "140126010688896"}}, "SeedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126010688560"}}, "RandomState": {"kind": "ClassDef", "type": {"nodeId": "140126010692256"}}}, "numpy.testing": {"IgnoreException": {"kind": "ClassDef", "type": {"nodeId": "140126010291728"}}, "clear_and_catch_warnings": {"kind": "ClassDef", "type": {"nodeId": "140126010292064"}}, "KnownFailureException": {"kind": "ClassDef", "type": {"nodeId": "140126010291392"}}, "suppress_warnings": {"kind": "ClassDef", "type": {"nodeId": "140126010293072"}}}, "os": {"_Environ": {"kind": "ClassDef", "type": {"nodeId": "140126115186048"}}, "stat_result": {"kind": "ClassDef", "type": {"nodeId": "140126111297072"}}, "PathLike": {"kind": "ClassDef", "type": {"nodeId": "140126111297408"}}, "DirEntry": {"kind": "ClassDef", "type": {"nodeId": "140126115186384"}}, "statvfs_result": {"kind": "ClassDef", "type": {"nodeId": "140126111297744"}}, "uname_result": {"kind": "ClassDef", "type": {"nodeId": "140126111298080"}}, "terminal_size": {"kind": "ClassDef", "type": {"nodeId": "140126111298416"}}, "_ScandirIterator": {"kind": "ClassDef", "type": {"nodeId": "140126111298752"}}, "_wrap_close": {"kind": "ClassDef", "type": {"nodeId": "140126111299088"}}, "times_result": {"kind": "ClassDef", "type": {"nodeId": "140126111299424"}}, "waitid_result": {"kind": "ClassDef", "type": {"nodeId": "140126111299760"}}, "sched_param": {"kind": "ClassDef", "type": {"nodeId": "140126111300096"}}}, "mmap": {"mmap": {"kind": "ClassDef", "type": {"nodeId": "140126115186720"}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "type": {"nodeId": "140126115705040"}}, "PyDLL": {"kind": "ClassDef", "type": {"nodeId": "140126115705376"}}, "LibraryLoader": {"kind": "ClassDef", "type": {"nodeId": "140126111599296"}}, "_CDataMeta": {"kind": "ClassDef", "type": {"nodeId": "140126115705712"}}, "_CData": {"kind": "ClassDef", "type": {"nodeId": "140126115706048"}}, "_CanCastTo": {"kind": "ClassDef", "type": {"nodeId": "140126115706384"}}, "_PointerLike": {"kind": "ClassDef", "type": {"nodeId": "140126115706720"}}, "_FuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140126115707056"}}, "_NamedFuncPointer": {"kind": "ClassDef", "type": {"nodeId": "140126115707392"}}, "ArgumentError": {"kind": "ClassDef", "type": {"nodeId": "140126115707728"}}, "_CArgObject": {"kind": "ClassDef", "type": {"nodeId": "140126115708064"}}, "_Pointer": {"kind": "ClassDef", "type": {"nodeId": "140126111599632"}}, "_SimpleCData": {"kind": "ClassDef", "type": {"nodeId": "140126115708400"}}, "c_byte": {"kind": "ClassDef", "type": {"nodeId": "140126115872832"}}, "c_char": {"kind": "ClassDef", "type": {"nodeId": "140126115873168"}}, "c_char_p": {"kind": "ClassDef", "type": {"nodeId": "140126115873504"}}, "c_double": {"kind": "ClassDef", "type": {"nodeId": "140126115873840"}}, "c_longdouble": {"kind": "ClassDef", "type": {"nodeId": "140126115874176"}}, "c_float": {"kind": "ClassDef", "type": {"nodeId": "140126115874512"}}, "c_int": {"kind": "ClassDef", "type": {"nodeId": "140126115874848"}}, "c_int8": {"kind": "ClassDef", "type": {"nodeId": "140126115875184"}}, "c_int16": {"kind": "ClassDef", "type": {"nodeId": "140126115875520"}}, "c_int32": {"kind": "ClassDef", "type": {"nodeId": "140126115875856"}}, "c_int64": {"kind": "ClassDef", "type": {"nodeId": "140126115876192"}}, "c_long": {"kind": "ClassDef", "type": {"nodeId": "140126115876528"}}, "c_longlong": {"kind": "ClassDef", "type": {"nodeId": "140126115876864"}}, "c_short": {"kind": "ClassDef", "type": {"nodeId": "140126115877200"}}, "c_size_t": {"kind": "ClassDef", "type": {"nodeId": "140126115877536"}}, "c_ssize_t": {"kind": "ClassDef", "type": {"nodeId": "140126115877872"}}, "c_ubyte": {"kind": "ClassDef", "type": {"nodeId": "140126115878208"}}, "c_uint": {"kind": "ClassDef", "type": {"nodeId": "140126115878544"}}, "c_uint8": {"kind": "ClassDef", "type": {"nodeId": "140126115878880"}}, "c_uint16": {"kind": "ClassDef", "type": {"nodeId": "140126115879216"}}, "c_uint32": {"kind": "ClassDef", "type": {"nodeId": "140126115879552"}}, "c_uint64": {"kind": "ClassDef", "type": {"nodeId": "140126115879888"}}, "c_ulong": {"kind": "ClassDef", "type": {"nodeId": "140126115880224"}}, "c_ulonglong": {"kind": "ClassDef", "type": {"nodeId": "140126115880560"}}, "c_ushort": {"kind": "ClassDef", "type": {"nodeId": "140126115880896"}}, "c_void_p": {"kind": "ClassDef", "type": {"nodeId": "140126115881232"}}, "c_wchar": {"kind": "ClassDef", "type": {"nodeId": "140126115881568"}}, "c_wchar_p": {"kind": "ClassDef", "type": {"nodeId": "140126115881904"}}, "c_bool": {"kind": "ClassDef", "type": {"nodeId": "140126115882240"}}, "py_object": {"kind": "ClassDef", "type": {"nodeId": "140126115882576"}}, "_CField": {"kind": "ClassDef", "type": {"nodeId": "140126115882912"}}, "_StructUnionMeta": {"kind": "ClassDef", "type": {"nodeId": "140126115883248"}}, "_StructUnionBase": {"kind": "ClassDef", "type": {"nodeId": "140126115883584"}}, "Union": {"kind": "ClassDef", "type": {"nodeId": "140126115883920"}}, "Structure": {"kind": "ClassDef", "type": {"nodeId": "140126115884256"}}, "BigEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140126115884592"}}, "LittleEndianStructure": {"kind": "ClassDef", "type": {"nodeId": "140126115884928"}}, "Array": {"kind": "ClassDef", "type": {"nodeId": "140126111599968"}}}, "array": {"array": {"kind": "ClassDef", "type": {"nodeId": "140126116043728"}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "type": {"nodeId": "140126023538656"}}, "timezone": {"kind": "ClassDef", "type": {"nodeId": "140126023538992"}}, "date": {"kind": "ClassDef", "type": {"nodeId": "140126023539664"}}, "time": {"kind": "ClassDef", "type": {"nodeId": "140126023540000"}}, "timedelta": {"kind": "ClassDef", "type": {"nodeId": "140126023540336"}}, "datetime": {"kind": "ClassDef", "type": {"nodeId": "140126023540672"}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "type": {"nodeId": "140126115199488"}}, "EnumMeta": {"kind": "ClassDef", "type": {"nodeId": "140126115199824"}}, "Enum": {"kind": "ClassDef", "type": {"nodeId": "140126115200160"}}, "IntEnum": {"kind": "ClassDef", "type": {"nodeId": "140126115200496"}}, "auto": {"kind": "ClassDef", "type": {"nodeId": "140126111598960"}}, "Flag": {"kind": "ClassDef", "type": {"nodeId": "140126115692608"}}, "IntFlag": {"kind": "ClassDef", "type": {"nodeId": "140126115692944"}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "type": {"nodeId": "140126119607792"}}, "abstractclassmethod": {"kind": "ClassDef", "type": {"nodeId": "140126119706688"}}, "abstractstaticmethod": {"kind": "ClassDef", "type": {"nodeId": "140126119707024"}}, "abstractproperty": {"kind": "ClassDef", "type": {"nodeId": "140126119707360"}}, "ABC": {"kind": "ClassDef", "type": {"nodeId": "140126119707696"}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "type": {"nodeId": "140126115885264"}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "type": {"nodeId": "140126115885600"}}, "ContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140126115885936"}}, "_GeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140126115886272"}}, "AsyncContextDecorator": {"kind": "ClassDef", "type": {"nodeId": "140126115886608"}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "type": {"nodeId": "140126115886944"}}, "_SupportsClose": {"kind": "ClassDef", "type": {"nodeId": "140126115887280"}}, "closing": {"kind": "ClassDef", "type": {"nodeId": "140126115887616"}}, "_SupportsAclose": {"kind": "ClassDef", "type": {"nodeId": "140126115887952"}}, "aclosing": {"kind": "ClassDef", "type": {"nodeId": "140126115888288"}}, "suppress": {"kind": "ClassDef", "type": {"nodeId": "140126115888624"}}, "_RedirectStream": {"kind": "ClassDef", "type": {"nodeId": "140126116036672"}}, "redirect_stdout": {"kind": "ClassDef", "type": {"nodeId": "140126116037008"}}, "redirect_stderr": {"kind": "ClassDef", "type": {"nodeId": "140126116037344"}}, "ExitStack": {"kind": "ClassDef", "type": {"nodeId": "140126116037680"}}, "AsyncExitStack": {"kind": "ClassDef", "type": {"nodeId": "140126116038016"}}, "nullcontext": {"kind": "ClassDef", "type": {"nodeId": "140126116038352"}}}, "re": {"Match": {"kind": "ClassDef", "type": {"nodeId": "140126120032432"}}, "Pattern": {"kind": "ClassDef", "type": {"nodeId": "140126120032768"}}, "RegexFlag": {"kind": "ClassDef", "type": {"nodeId": "140126111296736"}}}, "_ast": {"AST": {"kind": "ClassDef", "type": {"nodeId": "140126110991408"}}, "mod": {"kind": "ClassDef", "type": {"nodeId": "140126110991744"}}, "type_ignore": {"kind": "ClassDef", "type": {"nodeId": "140126110992080"}}, "TypeIgnore": {"kind": "ClassDef", "type": {"nodeId": "140126110992416"}}, "FunctionType": {"kind": "ClassDef", "type": {"nodeId": "140126110992752"}}, "Module": {"kind": "ClassDef", "type": {"nodeId": "140126110993088"}}, "Interactive": {"kind": "ClassDef", "type": {"nodeId": "140126110993424"}}, "Expression": {"kind": "ClassDef", "type": {"nodeId": "140126110993760"}}, "stmt": {"kind": "ClassDef", "type": {"nodeId": "140126110994096"}}, "FunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140126110994432"}}, "AsyncFunctionDef": {"kind": "ClassDef", "type": {"nodeId": "140126110994768"}}, "ClassDef": {"kind": "ClassDef", "type": {"nodeId": "140126110995104"}}, "Return": {"kind": "ClassDef", "type": {"nodeId": "140126110995440"}}, "Delete": {"kind": "ClassDef", "type": {"nodeId": "140126110995776"}}, "Assign": {"kind": "ClassDef", "type": {"nodeId": "140126110996112"}}, "AugAssign": {"kind": "ClassDef", "type": {"nodeId": "140126110996448"}}, "AnnAssign": {"kind": "ClassDef", "type": {"nodeId": "140126110996784"}}, "For": {"kind": "ClassDef", "type": {"nodeId": "140126110997120"}}, "AsyncFor": {"kind": "ClassDef", "type": {"nodeId": "140126110997456"}}, "While": {"kind": "ClassDef", "type": {"nodeId": "140126110997792"}}, "If": {"kind": "ClassDef", "type": {"nodeId": "140126110998128"}}, "With": {"kind": "ClassDef", "type": {"nodeId": "140126110998464"}}, "AsyncWith": {"kind": "ClassDef", "type": {"nodeId": "140126110998800"}}, "Raise": {"kind": "ClassDef", "type": {"nodeId": "140126110999136"}}, "Try": {"kind": "ClassDef", "type": {"nodeId": "140126110999472"}}, "Assert": {"kind": "ClassDef", "type": {"nodeId": "140126110999808"}}, "Import": {"kind": "ClassDef", "type": {"nodeId": "140126111000144"}}, "ImportFrom": {"kind": "ClassDef", "type": {"nodeId": "140126111000480"}}, "Global": {"kind": "ClassDef", "type": {"nodeId": "140126111000816"}}, "Nonlocal": {"kind": "ClassDef", "type": {"nodeId": "140126111001152"}}, "Expr": {"kind": "ClassDef", "type": {"nodeId": "140126111001488"}}, "Pass": {"kind": "ClassDef", "type": {"nodeId": "140126111001824"}}, "Break": {"kind": "ClassDef", "type": {"nodeId": "140126111002160"}}, "Continue": {"kind": "ClassDef", "type": {"nodeId": "140126111002496"}}, "expr": {"kind": "ClassDef", "type": {"nodeId": "140126111002832"}}, "BoolOp": {"kind": "ClassDef", "type": {"nodeId": "140126111003168"}}, "BinOp": {"kind": "ClassDef", "type": {"nodeId": "140126111003504"}}, "UnaryOp": {"kind": "ClassDef", "type": {"nodeId": "140126111003840"}}, "Lambda": {"kind": "ClassDef", "type": {"nodeId": "140126111004176"}}, "IfExp": {"kind": "ClassDef", "type": {"nodeId": "140126111004512"}}, "Dict": {"kind": "ClassDef", "type": {"nodeId": "140126111004848"}}, "Set": {"kind": "ClassDef", "type": {"nodeId": "140126111005184"}}, "ListComp": {"kind": "ClassDef", "type": {"nodeId": "140126111005520"}}, "SetComp": {"kind": "ClassDef", "type": {"nodeId": "140126111005856"}}, "DictComp": {"kind": "ClassDef", "type": {"nodeId": "140126111006192"}}, "GeneratorExp": {"kind": "ClassDef", "type": {"nodeId": "140126111203392"}}, "Await": {"kind": "ClassDef", "type": {"nodeId": "140126111203728"}}, "Yield": {"kind": "ClassDef", "type": {"nodeId": "140126111204064"}}, "YieldFrom": {"kind": "ClassDef", "type": {"nodeId": "140126111204400"}}, "Compare": {"kind": "ClassDef", "type": {"nodeId": "140126111204736"}}, "Call": {"kind": "ClassDef", "type": {"nodeId": "140126111205072"}}, "FormattedValue": {"kind": "ClassDef", "type": {"nodeId": "140126111205408"}}, "JoinedStr": {"kind": "ClassDef", "type": {"nodeId": "140126111205744"}}, "Constant": {"kind": "ClassDef", "type": {"nodeId": "140126111206080"}}, "NamedExpr": {"kind": "ClassDef", "type": {"nodeId": "140126111206416"}}, "Attribute": {"kind": "ClassDef", "type": {"nodeId": "140126111206752"}}, "Slice": {"kind": "ClassDef", "type": {"nodeId": "140126111207088"}}, "Subscript": {"kind": "ClassDef", "type": {"nodeId": "140126111207424"}}, "Starred": {"kind": "ClassDef", "type": {"nodeId": "140126111207760"}}, "Name": {"kind": "ClassDef", "type": {"nodeId": "140126111208096"}}, "List": {"kind": "ClassDef", "type": {"nodeId": "140126111208432"}}, "Tuple": {"kind": "ClassDef", "type": {"nodeId": "140126111208768"}}, "expr_context": {"kind": "ClassDef", "type": {"nodeId": "140126111209104"}}, "Del": {"kind": "ClassDef", "type": {"nodeId": "140126111209440"}}, "Load": {"kind": "ClassDef", "type": {"nodeId": "140126111209776"}}, "Store": {"kind": "ClassDef", "type": {"nodeId": "140126111210112"}}, "boolop": {"kind": "ClassDef", "type": {"nodeId": "140126111210448"}}, "And": {"kind": "ClassDef", "type": {"nodeId": "140126111210784"}}, "Or": {"kind": "ClassDef", "type": {"nodeId": "140126111211120"}}, "operator": {"kind": "ClassDef", "type": {"nodeId": "140126111211456"}}, "Add": {"kind": "ClassDef", "type": {"nodeId": "140126111211792"}}, "BitAnd": {"kind": "ClassDef", "type": {"nodeId": "140126111212128"}}, "BitOr": {"kind": "ClassDef", "type": {"nodeId": "140126111212464"}}, "BitXor": {"kind": "ClassDef", "type": {"nodeId": "140126111212800"}}, "Div": {"kind": "ClassDef", "type": {"nodeId": "140126111213136"}}, "FloorDiv": {"kind": "ClassDef", "type": {"nodeId": "140126111213472"}}, "LShift": {"kind": "ClassDef", "type": {"nodeId": "140126111213808"}}, "Mod": {"kind": "ClassDef", "type": {"nodeId": "140126111214144"}}, "Mult": {"kind": "ClassDef", "type": {"nodeId": "140126111214480"}}, "MatMult": {"kind": "ClassDef", "type": {"nodeId": "140126111214816"}}, "Pow": {"kind": "ClassDef", "type": {"nodeId": "140126111215152"}}, "RShift": {"kind": "ClassDef", "type": {"nodeId": "140126111215488"}}, "Sub": {"kind": "ClassDef", "type": {"nodeId": "140126111215824"}}, "unaryop": {"kind": "ClassDef", "type": {"nodeId": "140126111216160"}}, "Invert": {"kind": "ClassDef", "type": {"nodeId": "140126111216496"}}, "Not": {"kind": "ClassDef", "type": {"nodeId": "140126111216832"}}, "UAdd": {"kind": "ClassDef", "type": {"nodeId": "140126111217168"}}, "USub": {"kind": "ClassDef", "type": {"nodeId": "140126111217504"}}, "cmpop": {"kind": "ClassDef", "type": {"nodeId": "140126111217840"}}, "Eq": {"kind": "ClassDef", "type": {"nodeId": "140126111218176"}}, "Gt": {"kind": "ClassDef", "type": {"nodeId": "140126111218512"}}, "GtE": {"kind": "ClassDef", "type": {"nodeId": "140126111218848"}}, "In": {"kind": "ClassDef", "type": {"nodeId": "140126111219184"}}, "Is": {"kind": "ClassDef", "type": {"nodeId": "140126111285312"}}, "IsNot": {"kind": "ClassDef", "type": {"nodeId": "140126111285648"}}, "Lt": {"kind": "ClassDef", "type": {"nodeId": "140126111285984"}}, "LtE": {"kind": "ClassDef", "type": {"nodeId": "140126111286320"}}, "NotEq": {"kind": "ClassDef", "type": {"nodeId": "140126111286656"}}, "NotIn": {"kind": "ClassDef", "type": {"nodeId": "140126111286992"}}, "comprehension": {"kind": "ClassDef", "type": {"nodeId": "140126111287328"}}, "excepthandler": {"kind": "ClassDef", "type": {"nodeId": "140126111287664"}}, "ExceptHandler": {"kind": "ClassDef", "type": {"nodeId": "140126111288000"}}, "arguments": {"kind": "ClassDef", "type": {"nodeId": "140126111288336"}}, "arg": {"kind": "ClassDef", "type": {"nodeId": "140126111288672"}}, "keyword": {"kind": "ClassDef", "type": {"nodeId": "140126111289008"}}, "alias": {"kind": "ClassDef", "type": {"nodeId": "140126111289344"}}, "withitem": {"kind": "ClassDef", "type": {"nodeId": "140126111289680"}}, "Match": {"kind": "ClassDef", "type": {"nodeId": "140126111290016"}}, "pattern": {"kind": "ClassDef", "type": {"nodeId": "140126111290352"}}, "match_case": {"kind": "ClassDef", "type": {"nodeId": "140126111290688"}}, "MatchValue": {"kind": "ClassDef", "type": {"nodeId": "140126111291024"}}, "MatchSingleton": {"kind": "ClassDef", "type": {"nodeId": "140126111291360"}}, "MatchSequence": {"kind": "ClassDef", "type": {"nodeId": "140126111291696"}}, "MatchStar": {"kind": "ClassDef", "type": {"nodeId": "140126111292032"}}, "MatchMapping": {"kind": "ClassDef", "type": {"nodeId": "140126111292368"}}, "MatchClass": {"kind": "ClassDef", "type": {"nodeId": "140126111292704"}}, "MatchAs": {"kind": "ClassDef", "type": {"nodeId": "140126111293040"}}, "MatchOr": {"kind": "ClassDef", "type": {"nodeId": "140126111293376"}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "type": {"nodeId": "140126115187056"}}, "IOBase": {"kind": "ClassDef", "type": {"nodeId": "140126115187392"}}, "RawIOBase": {"kind": "ClassDef", "type": {"nodeId": "140126115187728"}}, "BufferedIOBase": {"kind": "ClassDef", "type": {"nodeId": "140126115188064"}}, "FileIO": {"kind": "ClassDef", "type": {"nodeId": "140126115188400"}}, "BytesIO": {"kind": "ClassDef", "type": {"nodeId": "140126115188736"}}, "BufferedReader": {"kind": "ClassDef", "type": {"nodeId": "140126115189072"}}, "BufferedWriter": {"kind": "ClassDef", "type": {"nodeId": "140126115189408"}}, "BufferedRandom": {"kind": "ClassDef", "type": {"nodeId": "140126115189744"}}, "BufferedRWPair": {"kind": "ClassDef", "type": {"nodeId": "140126115190080"}}, "TextIOBase": {"kind": "ClassDef", "type": {"nodeId": "140126115190416"}}, "TextIOWrapper": {"kind": "ClassDef", "type": {"nodeId": "140126115190752"}}, "StringIO": {"kind": "ClassDef", "type": {"nodeId": "140126115191088"}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126111604672"}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "type": {"nodeId": "140126115195456"}}, "Loader": {"kind": "ClassDef", "type": {"nodeId": "140126115195792"}}, "ResourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140126115196128"}}, "InspectLoader": {"kind": "ClassDef", "type": {"nodeId": "140126115196464"}}, "ExecutionLoader": {"kind": "ClassDef", "type": {"nodeId": "140126115196800"}}, "SourceLoader": {"kind": "ClassDef", "type": {"nodeId": "140126115197136"}}, "MetaPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140126115197472"}}, "PathEntryFinder": {"kind": "ClassDef", "type": {"nodeId": "140126115197808"}}, "FileLoader": {"kind": "ClassDef", "type": {"nodeId": "140126115198144"}}, "ResourceReader": {"kind": "ClassDef", "type": {"nodeId": "140126115198480"}}, "Traversable": {"kind": "ClassDef", "type": {"nodeId": "140126115198816"}}, "TraversableResources": {"kind": "ClassDef", "type": {"nodeId": "140126115199152"}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "type": {"nodeId": "140126115194784"}}, "BuiltinImporter": {"kind": "ClassDef", "type": {"nodeId": "140126111596608"}}, "FrozenImporter": {"kind": "ClassDef", "type": {"nodeId": "140126111596944"}}, "WindowsRegistryFinder": {"kind": "ClassDef", "type": {"nodeId": "140126111597280"}}, "PathFinder": {"kind": "ClassDef", "type": {"nodeId": "140126115195120"}}, "FileFinder": {"kind": "ClassDef", "type": {"nodeId": "140126111597616"}}, "SourceFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140126111597952"}}, "SourcelessFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140126111598288"}}, "ExtensionFileLoader": {"kind": "ClassDef", "type": {"nodeId": "140126111598624"}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "type": {"nodeId": "140126120033104"}}, "PickleBuffer": {"kind": "ClassDef", "type": {"nodeId": "140126120033440"}}, "PickleError": {"kind": "ClassDef", "type": {"nodeId": "140126120033776"}}, "PicklingError": {"kind": "ClassDef", "type": {"nodeId": "140126115184704"}}, "UnpicklingError": {"kind": "ClassDef", "type": {"nodeId": "140126115185040"}}, "Pickler": {"kind": "ClassDef", "type": {"nodeId": "140126115185376"}}, "Unpickler": {"kind": "ClassDef", "type": {"nodeId": "140126115185712"}}}, "numpy._typing._generic_alias": {"_GenericAlias": {"kind": "ClassDef", "type": {"nodeId": "140126023547056"}}}, "numpy._typing._nested_sequence": {"_NestedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126023538320"}}}, "__future__": {"_Feature": {"kind": "ClassDef", "type": {"nodeId": "140126039832416"}}}, "numpy.ma.mrecords": {"MaskedRecords": {"kind": "ClassDef", "type": {"nodeId": "140126006460480"}}}, "zipfile": {"BadZipFile": {"kind": "ClassDef", "type": {"nodeId": "140126039828384"}}, "LargeZipFile": {"kind": "ClassDef", "type": {"nodeId": "140126039828720"}}, "_ZipStream": {"kind": "ClassDef", "type": {"nodeId": "140126039829056"}}, "_SupportsReadSeekTell": {"kind": "ClassDef", "type": {"nodeId": "140126039829392"}}, "_ClosableZipStream": {"kind": "ClassDef", "type": {"nodeId": "140126039829728"}}, "ZipExtFile": {"kind": "ClassDef", "type": {"nodeId": "140126039830064"}}, "_Writer": {"kind": "ClassDef", "type": {"nodeId": "140126039830400"}}, "ZipFile": {"kind": "ClassDef", "type": {"nodeId": "140126039830736"}}, "PyZipFile": {"kind": "ClassDef", "type": {"nodeId": "140126039831072"}}, "ZipInfo": {"kind": "ClassDef", "type": {"nodeId": "140126039831408"}}, "_PathOpenProtocol": {"kind": "ClassDef", "type": {"nodeId": "140126039831744"}}, "Path": {"kind": "ClassDef", "type": {"nodeId": "140126039832080"}}}, "ast": {"_ABC": {"kind": "ClassDef", "type": {"nodeId": "140126039823344"}}, "Num": {"kind": "ClassDef", "type": {"nodeId": "140126039823680"}}, "Str": {"kind": "ClassDef", "type": {"nodeId": "140126039824016"}}, "Bytes": {"kind": "ClassDef", "type": {"nodeId": "140126039824352"}}, "NameConstant": {"kind": "ClassDef", "type": {"nodeId": "140126039824688"}}, "Ellipsis": {"kind": "ClassDef", "type": {"nodeId": "140126039825024"}}, "slice": {"kind": "ClassDef", "type": {"nodeId": "140126039825360"}}, "ExtSlice": {"kind": "ClassDef", "type": {"nodeId": "140126039825696"}}, "Index": {"kind": "ClassDef", "type": {"nodeId": "140126039826032"}}, "Suite": {"kind": "ClassDef", "type": {"nodeId": "140126039826368"}}, "AugLoad": {"kind": "ClassDef", "type": {"nodeId": "140126039826704"}}, "AugStore": {"kind": "ClassDef", "type": {"nodeId": "140126039827040"}}, "Param": {"kind": "ClassDef", "type": {"nodeId": "140126039827376"}}, "NodeVisitor": {"kind": "ClassDef", "type": {"nodeId": "140126039827712"}}, "NodeTransformer": {"kind": "ClassDef", "type": {"nodeId": "140126039828048"}}}, "numpy._typing._dtype_like": {"_SupportsDType": {"kind": "ClassDef", "type": {"nodeId": "140126023548064"}}}, "numpy._typing._array_like": {"_SupportsArray": {"kind": "ClassDef", "type": {"nodeId": "140126014477296"}}, "_SupportsArrayFunc": {"kind": "ClassDef", "type": {"nodeId": "140126014477632"}}, "_UnknownType": {"kind": "ClassDef", "type": {"nodeId": "140126014477968"}}}, "numpy._typing._ufunc": {"_SupportsArrayUFunc": {"kind": "ClassDef", "type": {"nodeId": "140126010697296"}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697632"}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010697968"}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698304"}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "type": {"nodeId": "140126010698640"}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "type": {"nodeId": "140126010698976"}}}, "numpy.lib.mixins": {"NDArrayOperatorsMixin": {"kind": "ClassDef", "type": {"nodeId": "140126010691248"}}}, "numpy.lib._version": {"NumpyVersion": {"kind": "ClassDef", "type": {"nodeId": "140126039823008"}}}, "math": {"_SupportsCeil": {"kind": "ClassDef", "type": {"nodeId": "140126039822000"}}, "_SupportsFloor": {"kind": "ClassDef", "type": {"nodeId": "140126039822336"}}, "_SupportsTrunc": {"kind": "ClassDef", "type": {"nodeId": "140126039822672"}}}, "numpy.ma.extras": {"_fromnxfunction": {"kind": "ClassDef", "type": {"nodeId": "140126014475952"}}, "_fromnxfunction_single": {"kind": "ClassDef", "type": {"nodeId": "140126014476288"}}, "_fromnxfunction_seq": {"kind": "ClassDef", "type": {"nodeId": "140126014476624"}}, "_fromnxfunction_allargs": {"kind": "ClassDef", "type": {"nodeId": "140126014476960"}}, "MAxisConcatenator": {"kind": "ClassDef", "type": {"nodeId": "140126010700320"}}, "mr_class": {"kind": "ClassDef", "type": {"nodeId": "140126010700656"}}}, "numpy.ma.core": {"MaskedArrayFutureWarning": {"kind": "ClassDef", "type": {"nodeId": "140126023548400"}}, "MAError": {"kind": "ClassDef", "type": {"nodeId": "140126014472256"}}, "MaskError": {"kind": "ClassDef", "type": {"nodeId": "140126014472592"}}, "_MaskedUFunc": {"kind": "ClassDef", "type": {"nodeId": "140126014472928"}}, "_MaskedUnaryOperation": {"kind": "ClassDef", "type": {"nodeId": "140126014473264"}}, "_MaskedBinaryOperation": {"kind": "ClassDef", "type": {"nodeId": "140126014473600"}}, "_DomainedBinaryOperation": {"kind": "ClassDef", "type": {"nodeId": "140126014473936"}}, "_MaskedPrintOption": {"kind": "ClassDef", "type": {"nodeId": "140126014474272"}}, "MaskedIterator": {"kind": "ClassDef", "type": {"nodeId": "140126014474608"}}, "MaskedArray": {"kind": "ClassDef", "type": {"nodeId": "140126010699312"}}, "mvoid": {"kind": "ClassDef", "type": {"nodeId": "140126010699648"}}, "MaskedConstant": {"kind": "ClassDef", "type": {"nodeId": "140126010699984"}}, "_extrema_operation": {"kind": "ClassDef", "type": {"nodeId": "140126014474944"}}, "_frommethod": {"kind": "ClassDef", "type": {"nodeId": "140126014475280"}}, "_convert2ma": {"kind": "ClassDef", "type": {"nodeId": "140126014475616"}}}, "numpy.polynomial.chebyshev": {"Chebyshev": {"kind": "ClassDef", "type": {"nodeId": "140126010690912"}}}, "numpy.polynomial.hermite": {"Hermite": {"kind": "ClassDef", "type": {"nodeId": "140126010690576"}}}, "numpy.polynomial.hermite_e": {"HermiteE": {"kind": "ClassDef", "type": {"nodeId": "140126010690240"}}}, "numpy.polynomial.laguerre": {"Laguerre": {"kind": "ClassDef", "type": {"nodeId": "140126010689904"}}}, "numpy.polynomial.legendre": {"Legendre": {"kind": "ClassDef", "type": {"nodeId": "140126010689568"}}}, "numpy.polynomial.polynomial": {"Polynomial": {"kind": "ClassDef", "type": {"nodeId": "140126010689232"}}}, "numpy.random._generator": {"Generator": {"kind": "ClassDef", "type": {"nodeId": "140126010696960"}}}, "numpy.random._mt19937": {"MT19937": {"kind": "ClassDef", "type": {"nodeId": "140126010696624"}}}, "numpy.random._pcg64": {"PCG64": {"kind": "ClassDef", "type": {"nodeId": "140126010695280"}}, "PCG64DXSM": {"kind": "ClassDef", "type": {"nodeId": "140126010695616"}}}, "numpy.random._philox": {"Philox": {"kind": "ClassDef", "type": {"nodeId": "140126010694272"}}}, "numpy.random._sfc64": {"SFC64": {"kind": "ClassDef", "type": {"nodeId": "140126010693264"}}}, "numpy.random.bit_generator": {"ISeedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126010687552"}}, "ISpawnableSeedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126010687888"}}, "SeedlessSeedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126010688224"}}, "SeedSequence": {"kind": "ClassDef", "type": {"nodeId": "140126010688560"}}, "BitGenerator": {"kind": "ClassDef", "type": {"nodeId": "140126010688896"}}}, "numpy.random.mtrand": {"RandomState": {"kind": "ClassDef", "type": {"nodeId": "140126010692256"}}}, "numpy.testing._private.utils": {"KnownFailureException": {"kind": "ClassDef", "type": {"nodeId": "140126010291392"}}, "IgnoreException": {"kind": "ClassDef", "type": {"nodeId": "140126010291728"}}, "clear_and_catch_warnings": {"kind": "ClassDef", "type": {"nodeId": "140126010292064"}}, "_clear_and_catch_warnings_with_records": {"kind": "ClassDef", "type": {"nodeId": "140126010292400"}}, "_clear_and_catch_warnings_without_records": {"kind": "ClassDef", "type": {"nodeId": "140126010292736"}}, "suppress_warnings": {"kind": "ClassDef", "type": {"nodeId": "140126010293072"}}}, "unittest": {"FunctionTestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023543024"}}, "SkipTest": {"kind": "ClassDef", "type": {"nodeId": "140126023542016"}}, "TestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023542688"}}, "TestLoader": {"kind": "ClassDef", "type": {"nodeId": "140126023545040"}}, "TestProgram": {"kind": "ClassDef", "type": {"nodeId": "140126023545712"}}, "TestResult": {"kind": "ClassDef", "type": {"nodeId": "140126023541008"}}, "TextTestResult": {"kind": "ClassDef", "type": {"nodeId": "140126023544368"}}, "TextTestRunner": {"kind": "ClassDef", "type": {"nodeId": "140126023544704"}}, "BaseTestSuite": {"kind": "ClassDef", "type": {"nodeId": "140126023546384"}}, "TestSuite": {"kind": "ClassDef", "type": {"nodeId": "140126023546720"}}, "IsolatedAsyncioTestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023544032"}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "type": {"nodeId": "140126120028736"}}, "SubprocessError": {"kind": "ClassDef", "type": {"nodeId": "140126120029072"}}, "TimeoutExpired": {"kind": "ClassDef", "type": {"nodeId": "140126120029408"}}, "CalledProcessError": {"kind": "ClassDef", "type": {"nodeId": "140126120029744"}}, "Popen": {"kind": "ClassDef", "type": {"nodeId": "140126120030080"}}}, "time": {"struct_time": {"kind": "ClassDef", "type": {"nodeId": "140126039821328"}}, "_ClockInfo": {"kind": "ClassDef", "type": {"nodeId": "140126039821664"}}}, "sre_constants": {"error": {"kind": "ClassDef", "type": {"nodeId": "140126120031760"}}, "_NamedIntConstant": {"kind": "ClassDef", "type": {"nodeId": "140126120032096"}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "type": {"nodeId": "140126116039696"}}, "_ReadableStream": {"kind": "ClassDef", "type": {"nodeId": "140126116040032"}}, "_Stream": {"kind": "ClassDef", "type": {"nodeId": "140126111600304"}}, "_Encoder": {"kind": "ClassDef", "type": {"nodeId": "140126116040368"}}, "_Decoder": {"kind": "ClassDef", "type": {"nodeId": "140126116040704"}}, "_StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140126116041040"}}, "_StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140126116041376"}}, "_IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140126116041712"}}, "_IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126116042048"}}, "CodecInfo": {"kind": "ClassDef", "type": {"nodeId": "140126111600640"}}, "Codec": {"kind": "ClassDef", "type": {"nodeId": "140126116042384"}}, "IncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140126116042720"}}, "IncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126116043056"}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "type": {"nodeId": "140126111600976"}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126111601312"}}, "StreamWriter": {"kind": "ClassDef", "type": {"nodeId": "140126111601648"}}, "StreamReader": {"kind": "ClassDef", "type": {"nodeId": "140126111601984"}}, "StreamReaderWriter": {"kind": "ClassDef", "type": {"nodeId": "140126111602320"}}, "StreamRecoder": {"kind": "ClassDef", "type": {"nodeId": "140126116043392"}}}, "importlib": {"Loader": {"kind": "ClassDef", "type": {"nodeId": "140126115195792"}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140126115191424"}}, "PackageNotFoundError": {"kind": "ClassDef", "type": {"nodeId": "140126115192096"}}, "EntryPoint": {"kind": "ClassDef", "type": {"nodeId": "140126115192768"}}, "EntryPoints": {"kind": "ClassDef", "type": {"nodeId": "140126115193104"}}, "SelectableGroups": {"kind": "ClassDef", "type": {"nodeId": "140126115193440"}}, "PackagePath": {"kind": "ClassDef", "type": {"nodeId": "140126111605008"}}, "FileHash": {"kind": "ClassDef", "type": {"nodeId": "140126115193776"}}, "Distribution": {"kind": "ClassDef", "type": {"nodeId": "140126115194112"}}, "DistributionFinder": {"kind": "ClassDef", "type": {"nodeId": "140126111300432"}}, "MetadataPathFinder": {"kind": "ClassDef", "type": {"nodeId": "140126111301104"}}, "PathDistribution": {"kind": "ClassDef", "type": {"nodeId": "140126115194448"}}}, "functools": {"_lru_cache_wrapper": {"kind": "ClassDef", "type": {"nodeId": "140126039819312"}}, "partial": {"kind": "ClassDef", "type": {"nodeId": "140126039819648"}}, "partialmethod": {"kind": "ClassDef", "type": {"nodeId": "140126039819984"}}, "_SingleDispatchCallable": {"kind": "ClassDef", "type": {"nodeId": "140126039820320"}}, "singledispatchmethod": {"kind": "ClassDef", "type": {"nodeId": "140126039820656"}}, "cached_property": {"kind": "ClassDef", "type": {"nodeId": "140126039820992"}}}, "numpy.polynomial._polybase": {"ABCPolyBase": {"kind": "ClassDef", "type": {"nodeId": "140126039818640"}}}, "numpy.polynomial.polyutils": {"RankWarning": {"kind": "ClassDef", "type": {"nodeId": "140126039818304"}}}, "threading": {"ThreadError": {"kind": "ClassDef", "type": {"nodeId": "140126111608032"}}, "local": {"kind": "ClassDef", "type": {"nodeId": "140126111608368"}}, "Thread": {"kind": "ClassDef", "type": {"nodeId": "140126111608704"}}, "_DummyThread": {"kind": "ClassDef", "type": {"nodeId": "140126111609040"}}, "Lock": {"kind": "ClassDef", "type": {"nodeId": "140126111609376"}}, "_RLock": {"kind": "ClassDef", "type": {"nodeId": "140126111609712"}}, "Condition": {"kind": "ClassDef", "type": {"nodeId": "140126111610048"}}, "Semaphore": {"kind": "ClassDef", "type": {"nodeId": "140126111610384"}}, "BoundedSemaphore": {"kind": "ClassDef", "type": {"nodeId": "140126111610720"}}, "Event": {"kind": "ClassDef", "type": {"nodeId": "140126111611056"}}, "Timer": {"kind": "ClassDef", "type": {"nodeId": "140126111611392"}}, "Barrier": {"kind": "ClassDef", "type": {"nodeId": "140126111611728"}}, "BrokenBarrierError": {"kind": "ClassDef", "type": {"nodeId": "140126111612064"}}}, "unittest.case": {"_BaseTestCaseContext": {"kind": "ClassDef", "type": {"nodeId": "140126023541680"}}, "SkipTest": {"kind": "ClassDef", "type": {"nodeId": "140126023542016"}}, "_SupportsAbsAndDunderGE": {"kind": "ClassDef", "type": {"nodeId": "140126023542352"}}, "TestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023542688"}}, "FunctionTestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023543024"}}, "_AssertRaisesContext": {"kind": "ClassDef", "type": {"nodeId": "140126023543360"}}, "_AssertWarnsContext": {"kind": "ClassDef", "type": {"nodeId": "140126023543696"}}}, "warnings": {"_OptionError": {"kind": "ClassDef", "type": {"nodeId": "140126023536976"}}, "WarningMessage": {"kind": "ClassDef", "type": {"nodeId": "140126023537312"}}, "catch_warnings": {"kind": "ClassDef", "type": {"nodeId": "140126023537648"}}}, "unittest.loader": {"TestLoader": {"kind": "ClassDef", "type": {"nodeId": "140126023545040"}}}, "unittest.main": {"_TestRunner": {"kind": "ClassDef", "type": {"nodeId": "140126023545376"}}, "TestProgram": {"kind": "ClassDef", "type": {"nodeId": "140126023545712"}}}, "unittest.result": {"TestResult": {"kind": "ClassDef", "type": {"nodeId": "140126023541008"}}}, "unittest.runner": {"TextTestResult": {"kind": "ClassDef", "type": {"nodeId": "140126023544368"}}, "TextTestRunner": {"kind": "ClassDef", "type": {"nodeId": "140126023544704"}}}, "unittest.suite": {"BaseTestSuite": {"kind": "ClassDef", "type": {"nodeId": "140126023546384"}}, "TestSuite": {"kind": "ClassDef", "type": {"nodeId": "140126023546720"}}}, "unittest.async_case": {"IsolatedAsyncioTestCase": {"kind": "ClassDef", "type": {"nodeId": "140126023544032"}}}, "json": {"JSONDecodeError": {"kind": "ClassDef", "type": {"nodeId": "140126111607024"}}, "JSONDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126111607360"}}, "JSONEncoder": {"kind": "ClassDef", "type": {"nodeId": "140126111606688"}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "type": {"nodeId": "140126120030416"}}, "_State": {"kind": "ClassDef", "type": {"nodeId": "140126120030752"}}, "SubPattern": {"kind": "ClassDef", "type": {"nodeId": "140126120031088"}}, "Tokenizer": {"kind": "ClassDef", "type": {"nodeId": "140126120031424"}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "type": {"nodeId": "140126110991072"}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "type": {"nodeId": "140126115191424"}}, "SimplePath": {"kind": "ClassDef", "type": {"nodeId": "140126115191760"}}}, "email.message": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140126115694288"}}, "MIMEPart": {"kind": "ClassDef", "type": {"nodeId": "140126115694624"}}, "EmailMessage": {"kind": "ClassDef", "type": {"nodeId": "140126115694960"}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "type": {"nodeId": "140126111602656"}}, "PurePosixPath": {"kind": "ClassDef", "type": {"nodeId": "140126111602992"}}, "PureWindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140126111603328"}}, "Path": {"kind": "ClassDef", "type": {"nodeId": "140126111603664"}}, "PosixPath": {"kind": "ClassDef", "type": {"nodeId": "140126111604000"}}, "WindowsPath": {"kind": "ClassDef", "type": {"nodeId": "140126111604336"}}}, "numpy.compat": {"contextlib_nullcontext": {"kind": "ClassDef", "type": {"nodeId": "140126111606352"}}}, "_thread": {"LockType": {"kind": "ClassDef", "type": {"nodeId": "140126111607696"}}, "_ExceptHookArgs": {"kind": "ClassDef", "type": {"nodeId": "140126111612400"}}}, "unittest._log": {"_AssertLogsContext": {"kind": "ClassDef", "type": {"nodeId": "140126023546048"}}}, "logging": {"Filterer": {"kind": "ClassDef", "type": {"nodeId": "140126039833088"}}, "Manager": {"kind": "ClassDef", "type": {"nodeId": "140126039833424"}}, "Logger": {"kind": "ClassDef", "type": {"nodeId": "140126039833760"}}, "Handler": {"kind": "ClassDef", "type": {"nodeId": "140126039834096"}}, "Formatter": {"kind": "ClassDef", "type": {"nodeId": "140126023532608"}}, "BufferingFormatter": {"kind": "ClassDef", "type": {"nodeId": "140126023532944"}}, "Filter": {"kind": "ClassDef", "type": {"nodeId": "140126023533280"}}, "LogRecord": {"kind": "ClassDef", "type": {"nodeId": "140126023533616"}}, "LoggerAdapter": {"kind": "ClassDef", "type": {"nodeId": "140126023536640"}}, "StreamHandler": {"kind": "ClassDef", "type": {"nodeId": "140126023533952"}}, "FileHandler": {"kind": "ClassDef", "type": {"nodeId": "140126023534288"}}, "NullHandler": {"kind": "ClassDef", "type": {"nodeId": "140126023534624"}}, "PlaceHolder": {"kind": "ClassDef", "type": {"nodeId": "140126023534960"}}, "RootLogger": {"kind": "ClassDef", "type": {"nodeId": "140126023535296"}}, "PercentStyle": {"kind": "ClassDef", "type": {"nodeId": "140126023535632"}}, "StrFormatStyle": {"kind": "ClassDef", "type": {"nodeId": "140126023535968"}}, "StringTemplateStyle": {"kind": "ClassDef", "type": {"nodeId": "140126023536304"}}}, "json.decoder": {"JSONDecodeError": {"kind": "ClassDef", "type": {"nodeId": "140126111607024"}}, "JSONDecoder": {"kind": "ClassDef", "type": {"nodeId": "140126111607360"}}}, "json.encoder": {"JSONEncoder": {"kind": "ClassDef", "type": {"nodeId": "140126111606688"}}}, "email": {"Message": {"kind": "ClassDef", "type": {"nodeId": "140126115694288"}}, "Policy": {"kind": "ClassDef", "type": {"nodeId": "140126115693280"}}}, "email.charset": {"Charset": {"kind": "ClassDef", "type": {"nodeId": "140126115704704"}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "type": {"nodeId": "140126115704368"}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "type": {"nodeId": "140126115695632"}}, "MessageParseError": {"kind": "ClassDef", "type": {"nodeId": "140126115695968"}}, "HeaderParseError": {"kind": "ClassDef", "type": {"nodeId": "140126115696304"}}, "BoundaryError": {"kind": "ClassDef", "type": {"nodeId": "140126115696640"}}, "MultipartConversionError": {"kind": "ClassDef", "type": {"nodeId": "140126115696976"}}, "CharsetError": {"kind": "ClassDef", "type": {"nodeId": "140126115697312"}}, "MessageDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115697648"}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115697984"}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115698320"}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115698656"}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115698992"}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115699328"}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115699664"}}, "UndecodableBytesDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115700000"}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115700336"}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115700672"}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115701008"}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115701344"}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115701680"}}, "HeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115702016"}}, "InvalidHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115702352"}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "type": {"nodeId": "140126115702688"}}, "NonPrintableDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115703024"}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115703360"}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115703696"}}, "InvalidDateDefect": {"kind": "ClassDef", "type": {"nodeId": "140126115704032"}}}, "email.policy": {"Policy": {"kind": "ClassDef", "type": {"nodeId": "140126115693280"}}, "Compat32": {"kind": "ClassDef", "type": {"nodeId": "140126115693616"}}, "EmailPolicy": {"kind": "ClassDef", "type": {"nodeId": "140126115693952"}}}, "numpy.compat.py3k": {"contextlib_nullcontext": {"kind": "ClassDef", "type": {"nodeId": "140126111606352"}}}, "textwrap": {"TextWrapper": {"kind": "ClassDef", "type": {"nodeId": "140126111606016"}}}, "string": {"Template": {"kind": "ClassDef", "type": {"nodeId": "140126111605344"}}, "Formatter": {"kind": "ClassDef", "type": {"nodeId": "140126111605680"}}}, "email.header": {"Header": {"kind": "ClassDef", "type": {"nodeId": "140126115695296"}}}}, "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": "ImportedType", "fullname": "typing.ByteString"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "Self", "kind": "Other"}, {"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": "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"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": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "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": "__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": "_V_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T_contra", "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": "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": "LocalType"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "get_args", "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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "overload", "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": "_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": "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": "ImportedType", "fullname": "typing.ByteString"}, {"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": "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": "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": "array", "kind": "Module", "fullname": "array"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "pickle", "kind": "Module", "fullname": "pickle"}, {"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": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"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": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"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": "_BufferWithLen", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "Other"}, {"name": "IndexableBuffer", "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"}], "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": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"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": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "Any", "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": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Text", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"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": "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": "override", "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": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_V_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": "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": "Self", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"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": "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": "Self", "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": "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": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Self", "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_UnionT", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "_CT", "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": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "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": "get_errno", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "POINTER", "kind": "Other"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"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": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}, {"name": "Array", "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": "Self", "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": "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": "Self", "kind": "Other"}, {"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": "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"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": "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": "auto", "kind": "LocalType"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "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": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "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": "Self", "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": "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": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "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": "Self", "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": "__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": "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": "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"}], "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": "Union", "kind": "Other"}, {"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"}], "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": "Self", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "_BufferWithLen", "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": "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": "_PathOpenProtocol", "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": "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": "Self", "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": "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": "_CArgObject", "kind": "ImportedType", "fullname": "ctypes._CArgObject"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "ctypes._PointerLike"}, {"name": "TypeAlias", "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"}], "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": "Self", "kind": "Other"}, {"name": "Any", "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": "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": "Self", "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": "__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": "Self", "kind": "Other"}, {"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": "__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": "Self", "kind": "Other"}, {"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": "TypeAlias", "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": "_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": "_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": "Self", "kind": "Other"}, {"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": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"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": "_IsInstanceClassInfo", "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": "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": "Self", "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": "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": "Self", "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": "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": "Self", "kind": "Other"}, {"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": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "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": "Union", "kind": "Other"}, {"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": "__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"}]}} \ No newline at end of file +{"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 diff --git a/utbot-python/samples/run_tests_all.sh b/utbot-python/samples/run_tests_all.sh index c6a75a02d4..a22828dd4f 100755 --- a/utbot-python/samples/run_tests_all.sh +++ b/utbot-python/samples/run_tests_all.sh @@ -2,7 +2,7 @@ python_path=$1 rm -r utbot_coverage utbot_tests RUN_RESULT COVERAGE_RESULT mkdir utbot_coverage -$python_path run_tests.py generate java ../../utbot-cli-python/build/libs/utbot-cli-python*.jar . -c test_configuration.json -p $python_path -o utbot_tests -i utbot_coverage +$python_path run_tests.py generate java ../../utbot-cli-python/build/libs/utbot-cli-python*.jar `pwd` -c test_configuration.json -p $python_path -o utbot_tests -i utbot_coverage $python_path run_tests.py run -p $python_path -c test_configuration.json -t utbot_tests > RUN_RESULT 2> RUN_RESULT 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 bd571370a3..1500a6b801 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -23,7 +23,6 @@ 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.mypy.MypyAnnotations import org.utbot.python.newtyping.utils.isRequired import org.utbot.python.utils.ExecutionWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager @@ -48,7 +47,7 @@ class PythonTestCaseGenerator( private val mypyReportLine: List ) { - private val storageForMypyMessages: MutableList = mutableListOf() + private val storageForMypyMessages: MutableList = mutableListOf() private fun constructCollectors( mypyStorage: MypyInfoBuild, @@ -56,7 +55,12 @@ class PythonTestCaseGenerator( method: PythonMethod ): Pair { - val mypyExpressionTypes = mypyStorage.types[curModule]?.let { moduleTypes -> + // 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 } @@ -320,7 +324,8 @@ class PythonTestCaseGenerator( ), mypyStorage.buildRoot.configFile, additionalVars, - randomTypeFrequency = RANDOM_TYPE_FREQUENCY + randomTypeFrequency = RANDOM_TYPE_FREQUENCY, + dMypyTimeout = timeoutForRun ) runBlocking breaking@{ 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 a0b12bae9b..59821778f5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -2,6 +2,7 @@ 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 import org.utbot.framework.codegen.domain.models.CgMethodTestSet @@ -37,6 +38,8 @@ import java.nio.file.Path import kotlin.io.path.Path import kotlin.io.path.pathString +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 @@ -68,16 +71,21 @@ abstract class PythonTestGenerationProcessor { ) val until = startTime + configuration.timeout - val tests = configuration.testedMethods.mapIndexed { index, methodHeader -> + val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> val methodsLeft = configuration.testedMethods.size - index val localUntil = (until - System.currentTimeMillis()) / methodsLeft + System.currentTimeMillis() - val method = findMethodByHeader( - mypyStorage, - methodHeader, - configuration.testFileInformation.moduleName, - configuration.testFileInformation.testedFileContent - ) - testCaseGenerator.generate(method, localUntil) + try { + val method = findMethodByHeader( + mypyStorage, + methodHeader, + configuration.testFileInformation.moduleName, + configuration.testFileInformation.testedFileContent + ) + testCaseGenerator.generate(method, localUntil) + } catch (e: SelectedMethodIsNotAFunctionDefinition) { + logger.warn { "Skipping method ${e.methodName}: did not find its function definition" } + null + } } val (notEmptyTests, emptyTestSets) = tests.partition { it.executions.isNotEmpty() } @@ -221,7 +229,7 @@ abstract class PythonTestGenerationProcessor { mypyStorage.definitions[curModule]!![containingClassName]!!.type.asUtBotType.getPythonAttributes().first { it.meta.name == method.name } - } as? PythonFunctionDefinition ?: error("Selected method is not a function definition") + } as? PythonFunctionDefinition ?: throw SelectedMethodIsNotAFunctionDefinition(method.name) val parsedFile = PythonParser(sourceFileContent).Module() val funcDef = PythonCode.findFunctionDefinition(parsedFile, method) @@ -297,4 +305,6 @@ abstract class PythonTestGenerationProcessor { ) } -} \ No newline at end of file +} + +data class SelectedMethodIsNotAFunctionDefinition(val methodName: String): Exception() \ No newline at end of file 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 e2a7e10037..4b02bfa386 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -8,7 +8,7 @@ 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.MypyAnnotations +import org.utbot.python.newtyping.mypy.MypyReportLine import org.utbot.python.newtyping.utils.isNamed data class PythonArgument( @@ -69,7 +69,7 @@ data class PythonTestSet( val method: PythonMethod, val executions: List, val errors: List, - val mypyReport: List, + val mypyReport: List, val classId: PythonClassId? = null, ) 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 28fcc55725..5b7289f6c9 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 @@ -20,7 +20,7 @@ class SubtypeValueProvider( ((type.meta as? PythonConcreteCompositeTypeDescription)?.isAbstract == true) } - private val concreteTypes = typeStorage.allTypes.filter { + private val concreteTypes = typeStorage.simpleTypes.filter { isConcreteType(it) && it.pythonDescription().name.name.first() != '_' // Don't substitute private classes }.map { DefaultSubstitutionProvider.substituteAll(it, it.parameters.map { pythonAnyType }) 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 4c66d182e1..0947489929 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 @@ -79,7 +79,7 @@ class TypeInferenceProcessor( val pythonMethod = (pythonMethodOpt as Success).value - val mypyExpressionTypes = mypyBuild.types[moduleOfSourceFile]!!.associate { + val mypyExpressionTypes = mypyBuild.exprTypes[moduleOfSourceFile]!!.associate { Pair(it.startOffset.toInt(), it.endOffset.toInt() + 1) to it.type.asUtBotType } val namesStorage = GlobalNamesStorage(mypyBuild) @@ -102,7 +102,8 @@ class TypeInferenceProcessor( getOffsetLine(sourceFileContent, pythonMethod.ast.endOffset) ), mypyBuild.buildRoot.configFile, - "" + "", + dMypyTimeout = null ) startingTypeInferenceAction() 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 c825aac552..278c1f0af8 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 @@ -33,7 +33,8 @@ class BaselineAlgorithm( private val initialErrorNumber: Int, private val configFile: File, private val additionalVars: String, - private val randomTypeFrequency: Int = 0 + private val randomTypeFrequency: Int = 0, + private val dMypyTimeout: Long? ) : TypeInferenceAlgorithm() { private val random = Random(0) @@ -109,7 +110,8 @@ class BaselineAlgorithm( pythonPath, configFile, initialErrorNumber, - additionalVars + additionalVars, + timeout = dMypyTimeout ) } 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 67a17af5e7..882df30812 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 @@ -9,7 +9,7 @@ import java.io.File private val logger = KotlinLogging.logger {} -fun checkWithDMypy(pythonPath: String, fileWithCodePath: String, configFile: File): String { +fun checkWithDMypy(pythonPath: String, fileWithCodePath: String, configFile: File, timeout: Long? = null): String? { val result = runCommand( listOf( pythonPath, @@ -20,8 +20,11 @@ fun checkWithDMypy(pythonPath: String, fileWithCodePath: String, configFile: Fil fileWithCodePath, "--config-file", configFile.path - ) + ), + timeout = timeout ) + if (result.terminatedByTimeout) + return null return result.stdout } @@ -34,7 +37,8 @@ fun checkSuggestedSignatureWithDMypy( pythonPath: String, configFile: File, initialErrorNumber: Int, - additionalVars: String + additionalVars: String, + timeout: Long? = null ): Boolean { val annotationMap = (method.definition.meta.args.map { it.name } zip method.definition.type.arguments).associate { @@ -43,7 +47,8 @@ fun checkSuggestedSignatureWithDMypy( val mypyCode = generateMypyCheckCode(method, annotationMap, directoriesForSysPath, moduleToImport, namesInModule, additionalVars) // logger.debug(mypyCode) TemporaryFileManager.writeToAssignedFile(fileForMypyCode, mypyCode) - val mypyOutput = checkWithDMypy(pythonPath, fileForMypyCode.canonicalPath, configFile) + val mypyOutput = checkWithDMypy(pythonPath, fileForMypyCode.canonicalPath, configFile, timeout = timeout) + ?: return true val report = getErrorsAndNotes(mypyOutput) val errorNumber = getErrorNumber(report, fileForMypyCode.canonicalPath, 0, mypyCode.length) if (errorNumber > initialErrorNumber)